diff --git a/cli/agentsfleet.mdx b/cli/agentsfleet.mdx index f7e6c18..443622e 100644 --- a/cli/agentsfleet.mdx +++ b/cli/agentsfleet.mdx @@ -9,11 +9,14 @@ 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` | | 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. @@ -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` |