Skip to content

Commit 365b2fd

Browse files
authored
Merge pull request #5 from i-am-bee/chore/updates-for-agentstack
feat: adding updates for agentstack
2 parents a27ed8d + 56c6440 commit 365b2fd

24 files changed

+88
-32
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ npx i-am-bee/agentstack-a2a-proxy start http://localhost:8080 --auto-register fa
5252
npx i-am-bee/agentstack-a2a-proxyy start http://localhost:8080 --custom-data ./my-agent-details.json
5353
```
5454

55+
5556
### All Options
5657

5758
| Option | Alias | Description | Default |
@@ -60,6 +61,8 @@ npx i-am-bee/agentstack-a2a-proxyy start http://localhost:8080 --custom-data ./m
6061
| `--auto-register` | `-a` | Auto-register with Agent Stack | `true` |
6162
| `--platform-url` | `-P` | Agent Stack URL | `http://127.0.0.1:8333` |
6263
| `--custom-data` | `-c` | Custom AgentDetail JSON file | (uses defaults) |
64+
| `--self-registration-id` | `-s` | Self registration ID to use for registration | `a2a-proxy-agent` |
65+
6366

6467
## Limitations
6568

dist/cli.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cli.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/intercept-agent-card.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55
import { CustomAgentDetail } from "../validations/custom-agent-detail-schema";
6-
export declare const interceptAgentCard: (originalData: any, port: number, customData?: CustomAgentDetail) => any;
6+
export declare const interceptAgentCard: (originalData: any, port: number, selfRegistrationId: string, customData?: CustomAgentDetail) => any;
77
//# sourceMappingURL=intercept-agent-card.d.ts.map

dist/core/intercept-agent-card.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/intercept-agent-card.js

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/intercept-agent-card.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/register-to-platform.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
* Copyright 2025 © BeeAI a Series of LF Projects, LLC
33
* SPDX-License-Identifier: Apache-2.0
44
*/
5-
export declare function registerToPlatform(platformUrl: string, targetUrl: string): Promise<void>;
5+
export declare function registerToPlatform(platformUrl: string, targetUrl: string, selfRegistrationId: string): Promise<void>;
66
//# sourceMappingURL=register-to-platform.d.ts.map

dist/core/register-to-platform.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/register-to-platform.js

Lines changed: 14 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)