Skip to content

Commit b508340

Browse files
committed
Delegate activation evaluation from bootstrap CLI to Python package CLI
1 parent 604bbad commit b508340

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

bin/agent-machine

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Usage:
5858
agent-machine render receipt <agentpod.json> [--pretty] [--artifact-path <path>]
5959
agent-machine render quadlet <agentpod.json> [--compare <file>]
6060
agent-machine render k8s <agentpod.json> [--compare <file>]
61+
agent-machine activate evaluate <agentpod.json> <policy.json> <grant.json> --deployment-receipt-id <id> [--storage-receipt-dir <dir>] [--storage-receipt-file <file>] [--pretty]
6162
6263
This is the bootstrap CLI. It is intentionally conservative: it discovers host/runtime hints and never emits secrets, raw prompts, raw KV-cache contents, or credentials.
6364
EOF
@@ -274,6 +275,10 @@ case "$COMMAND" in
274275
shift || true
275276
delegate_python_cli render "$@"
276277
;;
278+
activate)
279+
shift || true
280+
delegate_python_cli activate "$@"
281+
;;
277282
*)
278283
print_help
279284
exit 2

0 commit comments

Comments
 (0)