Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ npx i-am-bee/agentstack-a2a-proxy start http://localhost:8080 --auto-register fa
npx i-am-bee/agentstack-a2a-proxyy start http://localhost:8080 --custom-data ./my-agent-details.json
```


### All Options

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


## Limitations

Expand Down
2 changes: 2 additions & 0 deletions dist/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cli.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/core/intercept-agent-card.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
* SPDX-License-Identifier: Apache-2.0
*/
import { CustomAgentDetail } from "../validations/custom-agent-detail-schema";
export declare const interceptAgentCard: (originalData: any, port: number, customData?: CustomAgentDetail) => any;
export declare const interceptAgentCard: (originalData: any, port: number, selfRegistrationId: string, customData?: CustomAgentDetail) => any;
//# sourceMappingURL=intercept-agent-card.d.ts.map
2 changes: 1 addition & 1 deletion dist/core/intercept-agent-card.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion dist/core/intercept-agent-card.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/core/intercept-agent-card.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 14 additions & 3 deletions dist/core/register-to-platform.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/core/register-to-platform.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/server.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { CliInput } from "./validations/cli-config";
export declare function startProxy(input: Pick<CliInput, "autoRegister" | "port"> & {
platformUrl: string;
targetUrl: string;
selfRegistrationId: string;
} & Partial<{
customData: CustomAgentDetail;
}>): Promise<void>;
Expand Down
2 changes: 1 addition & 1 deletion dist/server.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/server.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/server.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/validations/cli-config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import z from "zod";
export declare const cliInputSchema: z.ZodObject<{
platformUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
selfRegistrationId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
autoRegister: z.ZodDefault<z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<boolean, string>>>>;
port: z.ZodDefault<z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>>>;
customData: z.ZodOptional<z.ZodString>;
Expand Down
Loading