From 7eedb42b18731a94979d60983a8d071b4db6e6de Mon Sep 17 00:00:00 2001 From: Kishore Kumar Date: Fri, 19 Jun 2026 18:04:31 +0530 Subject: [PATCH 1/2] docs(cli): sync command reference + env vars with the CLI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bring the CLI reference back in line with the shipped command surface: - Document the missing commands: `agent update --from`, `memory list`, `memory search`, and surface `tenant provider` in the overview table. - Add a `## Memory` section and an `agent update` section with flag tables. - Document the `AGENTSFLEET_DASHBOARD_URL` env var (login verification page; default https://app.agentsfleet.net) — the only env var the CLI reads that the configuration page was missing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- cli/agentsfleet.mdx | 50 +++++++++++++++++++++++++++++++++++++++++++ cli/configuration.mdx | 1 + 2 files changed, 51 insertions(+) diff --git a/cli/agentsfleet.mdx b/cli/agentsfleet.mdx index f7e6c18..a31bb1f 100644 --- a/cli/agentsfleet.mdx +++ b/cli/agentsfleet.mdx @@ -9,10 +9,13 @@ description: "Complete agentsfleet command reference." |-------|----------| | Authentication | `login`, `logout`, `auth status` | | Agents (top-level) | `install --from`, `list`, `status`, `stop`, `resume`, `kill`, `delete`, `logs`, `events`, `steer` | +| Agents (in-place update) | `agent update --from` | | Credentials | `credential add`, `credential show`, `credential list`, `credential delete` | | Workspaces | `workspace add`, `workspace list`, `workspace use`, `workspace show`, `workspace credentials`, `workspace delete` | +| Memory | `memory list`, `memory search` | | External agents | `agent-key add`, `agent-key list`, `agent-key delete` | | Integration grants | `grant list`, `grant delete` | +| Tenant provider | `tenant provider show`, `tenant provider add`, `tenant provider delete` | | Billing | `billing show` | | Diagnostics | `doctor` | @@ -96,6 +99,18 @@ agentsfleet install --from ~/.config/agentsfleet/samples/platform-ops The `samples/` directory ships with `agentsfleet` and contains the flagship `platform-ops` sample. The host-agent install skill (`/agentsfleet-install-platform-ops`) drives this command under the hood. See [Quickstart](/quickstart) and [Templates](/agents/templates). +### `agentsfleet agent update --from ` + +Re-parse `SKILL.md` and `TRIGGER.md` from a local bundle and `PATCH` them onto an existing agent — the in-place counterpart to `install`. Use it to roll a configuration change onto an already-registered agent without re-creating it. + +```bash +agentsfleet agent update 01900000-0000-7000-8000-000000000001 --from ~/.config/agentsfleet/samples/platform-ops +``` + +| Flag | Default | Purpose | +|------|---------|---------| +| `--from ` | *(required)* | Local bundle whose `SKILL.md` + `TRIGGER.md` are re-parsed and patched onto the agent. | + ### `agentsfleet list` List agents in the active workspace. Keyset-paginated over `(created_at, id)` — the dashboard `/agents` page uses the same contract. @@ -290,6 +305,41 @@ agentsfleet workspace delete 0198a7b0-3c2d-7f14-9a08-1b6e4d2f8c50 --- +## Memory + +A read-only window into an agent's durable memory. There is no write verb — the tenant memory plane is read-only by architecture; agents write their own memory during runs. + +### `agentsfleet memory list` + +List memory entries newest-first. + +```bash +agentsfleet memory list --agent 01900000-0000-7000-8000-000000000001 +``` + +| Flag | Default | Purpose | +|------|---------|---------| +| `--agent ` | *(active)* | Agent whose memory to read. | +| `--category ` | *(all)* | Filter to a single memory category. | +| `--limit ` | server default | Max entries to return (clamped to the server cap). | +| `--workspace ` | *(active)* | Override the active workspace for this call. | + +### `agentsfleet memory search ` + +Substring-search keys and content across an agent's memory. + +```bash +agentsfleet memory search "deploy" --agent 01900000-0000-7000-8000-000000000001 +``` + +| Flag | Default | Purpose | +|------|---------|---------| +| `--agent ` | *(active)* | Agent whose memory to search. | +| `--limit ` | server default | Max entries to return (clamped to the server cap). | +| `--workspace ` | *(active)* | Override the active workspace for this call. | + +--- + ## External agents External agents are API-key–authenticated callers (LangGraph, CrewAI, Composio, your own code) that drive a specific agent programmatically. diff --git a/cli/configuration.mdx b/cli/configuration.mdx index a18638b..698d43e 100644 --- a/cli/configuration.mdx +++ b/cli/configuration.mdx @@ -31,6 +31,7 @@ Every **other command** then resolves its token, and the order is TTY-aware: | Variable | Purpose | Default | |----------|---------|---------| | `AGENTSFLEET_API_URL` | API base URL | `https://api.agentsfleet.net` | +| `AGENTSFLEET_DASHBOARD_URL` | Dashboard base URL — used for the login verification page. | `https://app.agentsfleet.net` | | `AGENTSFLEET_TOKEN` | Auth token (for CI and scripts; user-bound, from `agentsfleet login`) | *(from `agentsfleet login`)* | | `AGENTSFLEET_API_KEY` | Service auth (machine-bound, from `agentsfleet agent-key add`). Use this for service-to-service calls and external agents (LangGraph, CrewAI, Composio, your own code). | — | | `AGENTSFLEET_STATE_DIR` | Directory for local CLI state (credentials, telemetry, session). | `~/.config/agentsfleet` | From 938c60be1d7574d8f4817d25e41cb3bc3c2db5a9 Mon Sep 17 00:00:00 2001 From: Kishore Kumar Date: Fri, 19 Jun 2026 18:29:13 +0530 Subject: [PATCH 2/2] docs(cli): order overview table to match section order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Address greptile review on #104: the overview table listed "Tenant provider" before "Billing", but the document body presents Billing first. Reorder the table rows (Billing, then Tenant provider) so it tracks the body and works as a navigation guide. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- cli/agentsfleet.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/agentsfleet.mdx b/cli/agentsfleet.mdx index a31bb1f..443622e 100644 --- a/cli/agentsfleet.mdx +++ b/cli/agentsfleet.mdx @@ -15,8 +15,8 @@ description: "Complete agentsfleet command reference." | Memory | `memory list`, `memory search` | | External agents | `agent-key add`, `agent-key list`, `agent-key delete` | | Integration grants | `grant list`, `grant delete` | -| Tenant provider | `tenant provider show`, `tenant provider add`, `tenant provider delete` | | Billing | `billing show` | +| Tenant provider | `tenant provider show`, `tenant provider add`, `tenant provider delete` | | Diagnostics | `doctor` | Every command accepts the [global flags](/cli/flags). Every command that returns structured data supports `--json` for machine-readable output.