@go-to-k/cdkd 0.205.0 → 0.206.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +41 -7
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -49373,7 +49373,6 @@ async function localInvokeAgentCoreCommand(target, options) {
|
|
|
49373
49373
|
const isA2a = resolved.protocol === AGENTCORE_A2A_PROTOCOL;
|
|
49374
49374
|
if (resolved.protocol === AGENTCORE_AGUI_PROTOCOL) logger.info("AGUI runtime: routing through the HTTP /invocations + /ws path (AG-UI wire is SSE / WebSocket on port 8080).");
|
|
49375
49375
|
if ((isMcp || isA2a) && options.ws) logger.warn(`--ws applies only to the HTTP / AGUI protocols; ignoring it for this ${resolved.protocol} runtime.`);
|
|
49376
|
-
if (options.wsInteractive && !options.ws) logger.warn("--ws-interactive is meaningful only with --ws; ignoring.");
|
|
49377
49376
|
if (options.sigv4 && (isMcp || isA2a || options.ws)) logger.warn("--sigv4 signs the HTTP /invocations request only; ignoring it for the " + (isMcp ? "MCP" : isA2a ? "A2A" : "/ws WebSocket") + " path.");
|
|
49378
49377
|
const sessionId = options.sessionId ?? randomUUID();
|
|
49379
49378
|
const event = await readEvent$1(options);
|
|
@@ -49423,13 +49422,14 @@ async function localInvokeAgentCoreCommand(target, options) {
|
|
|
49423
49422
|
await new Promise((r) => setTimeout(r, 250));
|
|
49424
49423
|
emitA2aResult(a2a);
|
|
49425
49424
|
} else if (options.ws) {
|
|
49425
|
+
const interactive = process.stdin.isTTY === true;
|
|
49426
49426
|
await waitForAgentCorePing(containerHost, hostPort);
|
|
49427
|
-
const frameSource =
|
|
49428
|
-
logger.info(
|
|
49427
|
+
const frameSource = interactive ? readStdinLines() : void 0;
|
|
49428
|
+
logger.info(interactive ? "Opening the agent /ws WebSocket (interactive — stdin lines = follow-up frames; Ctrl-D to end)..." : "Opening the agent /ws WebSocket and streaming frames...");
|
|
49429
49429
|
const wsResult = await invokeAgentCoreWs(containerHost, hostPort, event, {
|
|
49430
49430
|
sessionId,
|
|
49431
49431
|
timeoutMs: options.timeout,
|
|
49432
|
-
onMessage: (text) => process.stdout.write(text),
|
|
49432
|
+
onMessage: wrapWsOnMessage((text) => process.stdout.write(text), interactive),
|
|
49433
49433
|
...authorization && { authorization },
|
|
49434
49434
|
...frameSource && { frameSource }
|
|
49435
49435
|
});
|
|
@@ -50050,11 +50050,45 @@ async function* readStdinLines() {
|
|
|
50050
50050
|
crlfDelay: Infinity
|
|
50051
50051
|
});
|
|
50052
50052
|
try {
|
|
50053
|
-
for await (const line of rl)
|
|
50053
|
+
for await (const line of rl) {
|
|
50054
|
+
if (line.length === 0) continue;
|
|
50055
|
+
yield line;
|
|
50056
|
+
}
|
|
50054
50057
|
} finally {
|
|
50055
50058
|
rl.close();
|
|
50056
50059
|
}
|
|
50057
50060
|
}
|
|
50061
|
+
/**
|
|
50062
|
+
* REPL prompt indicator for the auto-detected TTY mode. Written to stdout (no
|
|
50063
|
+
* trailing newline) after each received agent frame, so the user has a clear
|
|
50064
|
+
* visual signal that the REPL is waiting for input.
|
|
50065
|
+
*
|
|
50066
|
+
* Exported so a unit test can assert the prompt shape.
|
|
50067
|
+
*/
|
|
50068
|
+
const WS_REPL_PROMPT = "> ";
|
|
50069
|
+
/**
|
|
50070
|
+
* Wrap `onMessage` so each agent WS text frame lands on its own line when the
|
|
50071
|
+
* auto-REPL is active AND a `> ` prompt indicator follows. WS frames carry no
|
|
50072
|
+
* trailing `\n` by protocol (each frame is a discrete message); the cloud
|
|
50073
|
+
* `/ws` endpoint behaves the same. That's correct on the wire but visually
|
|
50074
|
+
* run-on in an interactive terminal — the user's next keystroke concatenates
|
|
50075
|
+
* onto the last frame's tail char and they have no signal that the REPL is
|
|
50076
|
+
* waiting for input. In interactive mode we append `\n` (unless already
|
|
50077
|
+
* present) and then write a `> ` prompt, so each agent message is presented as
|
|
50078
|
+
* its own line and the next input prompt is visible.
|
|
50079
|
+
*
|
|
50080
|
+
* Non-interactive (piped / CI) is unchanged — the raw stdout shape is what
|
|
50081
|
+
* scripts rely on, and the WS-protocol-faithful pass-through stays.
|
|
50082
|
+
*
|
|
50083
|
+
* Exported so a unit test can drive the wrapping without the full WS pipeline.
|
|
50084
|
+
*/
|
|
50085
|
+
function wrapWsOnMessage(sink, interactive) {
|
|
50086
|
+
if (!interactive) return sink;
|
|
50087
|
+
return (text) => {
|
|
50088
|
+
sink(text.endsWith("\n") ? text : `${text}\n`);
|
|
50089
|
+
sink("> ");
|
|
50090
|
+
};
|
|
50091
|
+
}
|
|
50058
50092
|
function readEnvOverridesFile$1(filePath) {
|
|
50059
50093
|
if (!filePath) return void 0;
|
|
50060
50094
|
let raw;
|
|
@@ -50073,7 +50107,7 @@ function readEnvOverridesFile$1(filePath) {
|
|
|
50073
50107
|
return parsed;
|
|
50074
50108
|
}
|
|
50075
50109
|
function createLocalInvokeAgentCoreCommand() {
|
|
50076
|
-
const cmd = new Command("invoke-agentcore").description("Run a Bedrock AgentCore Runtime container locally and invoke it once over its protocol contract: HTTP (POST /invocations + GET /ping on 8080) or MCP (POST /mcp Streamable HTTP on 8000). Resolves the AWS::BedrockAgentCore::Runtime, pulls/builds its container, injects env vars + AWS credentials, and prints the response. For an MCP runtime, runs the session handshake then sends one JSON-RPC request (tools/list by default, or the method/params from --event). Target accepts a CDK display path (MyStack/MyAgent) or stack-qualified logical ID (MyStack:MyAgentRuntime1234). Single-stack apps may omit the stack prefix. Omit <target> in an interactive terminal to pick from a list. Supports the container artifact and the CodeConfiguration managed-runtime artifact (fromCodeAsset, built from source) on the HTTP + MCP protocols; the agent calls real AWS for managed services.").argument("[target]", "CDK display path or stack-qualified logical ID of the AgentCore Runtime to invoke (omit to pick interactively in a TTY)").addOption(new Option("-e, --event <file>", "JSON event payload file (default: {})")).addOption(new Option("--event-stdin", "Read event JSON from stdin").default(false)).addOption(new Option("--env-vars <file>", "JSON env-var overrides (SAM-compatible: {\"LogicalId\":{\"KEY\":\"VALUE\"}})")).addOption(new Option("--session-id <id>", "AgentCore runtime session id header value (default: a random UUID)")).addOption(new Option("--ws", "Stream over the HTTP-protocol agent's bidirectional /ws WebSocket endpoint (on 8080) instead of POST /invocations: send --event as the first frame and print every received frame to stdout until the agent closes.
|
|
50110
|
+
const cmd = new Command("invoke-agentcore").description("Run a Bedrock AgentCore Runtime container locally and invoke it once over its protocol contract: HTTP (POST /invocations + GET /ping on 8080) or MCP (POST /mcp Streamable HTTP on 8000). Resolves the AWS::BedrockAgentCore::Runtime, pulls/builds its container, injects env vars + AWS credentials, and prints the response. For an MCP runtime, runs the session handshake then sends one JSON-RPC request (tools/list by default, or the method/params from --event). Target accepts a CDK display path (MyStack/MyAgent) or stack-qualified logical ID (MyStack:MyAgentRuntime1234). Single-stack apps may omit the stack prefix. Omit <target> in an interactive terminal to pick from a list. Supports the container artifact and the CodeConfiguration managed-runtime artifact (fromCodeAsset, built from source) on the HTTP + MCP protocols; the agent calls real AWS for managed services.").argument("[target]", "CDK display path or stack-qualified logical ID of the AgentCore Runtime to invoke (omit to pick interactively in a TTY)").addOption(new Option("-e, --event <file>", "JSON event payload file (default: {})")).addOption(new Option("--event-stdin", "Read event JSON from stdin").default(false)).addOption(new Option("--env-vars <file>", "JSON env-var overrides (SAM-compatible: {\"LogicalId\":{\"KEY\":\"VALUE\"}})")).addOption(new Option("--session-id <id>", "AgentCore runtime session id header value (default: a random UUID)")).addOption(new Option("--ws", "Stream over the HTTP-protocol agent's bidirectional /ws WebSocket endpoint (on 8080) instead of POST /invocations: send --event as the first frame and print every received frame to stdout until the agent closes. When stdin is a TTY, auto-enters a REPL — each typed line is sent as a follow-up text frame until Ctrl-D / agent close; pipe from /dev/null to force one-shot in a TTY. Ignored for an MCP runtime.").default(false)).addOption(new Option("--bearer-token <jwt>", "Bearer JWT to present when the runtime declares a customJwtAuthorizer. Verified against the runtime OIDC discovery URL (signature / issuer / expiry / audience) before the container starts, then forwarded to /invocations as Authorization: Bearer <jwt>.")).addOption(new Option("--no-verify-auth", "Skip inbound JWT verification even when the runtime declares a customJwtAuthorizer (local-dev escape hatch). A --bearer-token, if given, is still forwarded.")).addOption(new Option("--sigv4", "Sign the /invocations POST with AWS SigV4 (service bedrock-agentcore) using the resolved credentials, matching the cloud default when the runtime declares no customJwtAuthorizer. Opt-in: default unsigned. Mutually exclusive with --bearer-token; ignored on a JWT-protected runtime.").default(false)).addOption(new Option("--platform <platform>", "docker --platform for the agent container (linux/amd64 or linux/arm64)").choices(["linux/amd64", "linux/arm64"]).default("linux/arm64")).addOption(new Option("--no-pull", "Skip docker pull (use cached image) — no-op for the local-build path")).addOption(new Option("--no-build", "Skip docker build on the local-asset path (use the previously-built tag). No-op for the ECR / registry pull paths.")).addOption(new Option("--container-host <host>", "Host to bind the agent port to").default("127.0.0.1")).addOption(new Option("--timeout <ms>", "Per-request timeout in milliseconds. Applied to POST /invocations, POST /mcp, and the /ws open-to-close window. Raise this for long-running agent calls that exceed the default.").default(12e4).argParser(parseTimeoutMs)).addOption(new Option("--assume-role [arn]", "Assume the runtime's execution role and forward STS-issued temp credentials to the container so the agent runs with the deployed role. Three forms: (1) `--assume-role <arn>` assumes the explicit ARN; (2) `--assume-role` (bare) uses the runtime's RoleArn when it is a literal ARN; (3) `--no-assume-role` opts out. Off by default — the developer's shell credentials are forwarded unchanged.")).addOption(new Option("--ecr-role-arn <arn>", "Role ARN to assume before authenticating against ECR for cross-account / centralized registries. Same-account / same-region pulls do not need this flag.")).addOption(new Option("--from-state", "Load cdkd's S3 state for the target stack and substitute Ref / Fn::GetAtt / Fn::Sub / Fn::ImportValue in env vars with the deployed physical IDs / cross-stack exports. Mutually exclusive with --from-cfn-stack.").default(false)).addOption(new Option("--from-cfn-stack [cfn-stack-name]", "Read a deployed CloudFormation stack via DescribeStackResources and substitute Ref / Fn::ImportValue in env vars with the deployed physical IDs / exports. For CDK apps deployed via the upstream CDK CLI. Bare form uses the resolved stack name; pass an explicit value when the CFn stack name differs. Mutually exclusive with --from-state.")).addOption(new Option("--stack-region <region>", "Region of the state record to read. Used with --from-cfn-stack as the CFn client region.")).action(withErrorHandling(async (target, options) => {
|
|
50077
50111
|
await localInvokeAgentCoreCommand(target, options);
|
|
50078
50112
|
}));
|
|
50079
50113
|
[
|
|
@@ -52019,7 +52053,7 @@ function reorderArgs(argv) {
|
|
|
52019
52053
|
*/
|
|
52020
52054
|
async function main() {
|
|
52021
52055
|
const program = new Command();
|
|
52022
|
-
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.
|
|
52056
|
+
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.206.0");
|
|
52023
52057
|
program.addCommand(createBootstrapCommand());
|
|
52024
52058
|
program.addCommand(createSynthCommand());
|
|
52025
52059
|
program.addCommand(createListCommand());
|