@@ -123,6 +123,35 @@ Manage scheduled / triggered deployments.
123123| ` deployment get <name> ` | Show a deployment's status and resolved bindings. |
124124| ` deployment run <name> ` | Trigger a deployment run (native on Qoder/Claude, emulated as a session on Bailian/Volcengine Ark). |
125125
126+ ## ` agents memory-store `
127+
128+ Manage persistent stores directly. Store creation through ` agents apply ` remains
129+ the recommended declarative workflow.
130+
131+ | Command | Description |
132+ | ---------| -------------|
133+ | ` create <name> ` | Create a store (` --description ` ). |
134+ | ` list ` | List stores (` --limit ` , ` --cursor ` , ` --include-archived ` ). |
135+ | ` get <store-id> ` | Retrieve a store. |
136+ | ` update <store-id> ` | Update ` --name ` and/or ` --description ` . |
137+ | ` archive <store-id> ` | Archive a store (Qoder/Claude). |
138+ | ` delete <store-id> ` | Permanently delete a store and its memories. |
139+
140+ ## ` agents memory `
141+
142+ Manage individual text memories. Content can be passed with ` --content ` or
143+ ` --content-file ` . Portable paths are relative; adapters handle wire-format differences.
144+
145+ | Command | Description |
146+ | ---------| -------------|
147+ | ` create <store-id> <path> ` | Create one memory. |
148+ | ` batch-create <store-id> <json-file> ` | Ark batch create; supports ` --on-conflict overwrite\|fail ` . |
149+ | ` list <store-id> ` | List memories; supports pagination, prefix/depth and ` --full ` . |
150+ | ` get <store-id> <memory-id> ` | Retrieve full content. |
151+ | ` update <store-id> <memory-id> ` | Update content/path; ` --expected-sha256 ` enables optimistic concurrency where supported. |
152+ | ` delete <store-id> <memory-id> ` | Delete one memory. |
153+ | `version list| get| redact` | Immutable history operations (Qoder/Claude). |
154+
126155## ` agents models `
127156
128157| Subcommand | Description |
0 commit comments