Synopsis
Shell
$ phrony agents <subcommand> [args] [flags]Description
Agent lifecycle commands: validate and publish manifests locally or to the runtime, inspect versions, deploy activations, and manage registry state. All subcommands except validate and diff require a running runtime.
| Subcommand | Page | Summary |
|---|---|---|
agents ls | — | List agents in the runtime |
agents archive | — | Archive an agent (deprecate all versions) |
agents validate | Validate an agent manifest locally | |
agents diff | Diff local manifest against a published version | |
agents publish | Publish an immutable agent version | |
agents versions | List published versions | |
agents inspect | Metadata for a published version | |
agents deprecate | Mark a version as not runnable | |
agents retire | Retire a published version | |
agents deploy | Activate a published version for sessions | |
agents active | Show the active deployed version | |
agents history | Deployment activation history |
rollback stays at the top level for quick access.
agents ls
List agents.
Shell
$ phrony agents ls [flags]Flags
| Flag | Short | Description |
|---|---|---|
--namespace | -n | Filter by namespace |
Example
Shell
$ phrony agents ls
$ phrony agents ls -n demoOutput
Table columns: ID, NAMESPACE, NAME, OWNER, STATUS (active or archived).
agents archive
Archive an agent and deprecate all of its versions.
Shell
$ phrony agents archive AGENTAGENT is namespace/name.
Example
Shell
$ phrony agents archive demo/echo-agentOutput
Text
archived agent demo/echo-agent (all versions deprecated)Archived agents cannot be deployed or run.
Up next