docs(cli): sync command reference + env vars with the CLI#104
Merged
Conversation
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)
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sync the CLI reference docs with the shipped command surface (companion to agentsfleet#436, which removes the in-CLI "Commands by task" guide). No product behavior change — docs only.
What changed
cli/agentsfleet.mdx— documented the commands that existed in the CLI but not the docs:agent update --from,memory list,memory search. Added a## Memorysection and anagent updatesection (each with a flag table), and surfacedtenant provider …in the overview table.cli/configuration.mdx— added theAGENTSFLEET_DASHBOARD_URLrow (login verification page; defaulthttps://app.agentsfleet.net). It was the only env var the CLI reads (cli/src/services/config.ts) that the configuration page was missing; the other nine were already documented.Session notes
cli/src/program/cli-tree*.ts: before this PR,agent update,memory list,memory searchwere undocumented andtenant providerwas absent from the overview table. After, every top-level command/group in the reference matches the code.cli-tree-agent.ts(agent update) andcli-tree-memory.ts(memory list/search).origin/mainper repo hygiene (the local docs checkout was on an unrelated branch).🤖 Generated with Claude Code
Greptile Summary
This is a docs-only sync that brings the CLI command reference up to date with the shipped CLI surface — no product behavior changes.
cli/agentsfleet.mdx— documents three previously-undocumented commands (agent update --from,memory list,memory search) with flag tables and examples, adds a new## Memorysection, and adds thetenant providerrow to the overview table. Table order now correctly mirrors the document body's section order.cli/configuration.mdx— adds the one env var (AGENTSFLEET_DASHBOARD_URL) that the CLI reads but the configuration page was missing, completing the ten-variable table.Confidence Score: 5/5
Pure documentation additions with no logic or behavior changes — safe to merge.
Every change is additive prose and tables that match what the PR author verified against CLI source files. The overview table order, section placement, and flag defaults are internally consistent with the rest of the reference page.
No files require special attention.
Important Files Changed
agent update --from,memory list,memory searchsections with flag tables, plus surfacedtenant providerin the overview table. Doc structure and section ordering matches the document body.AGENTSFLEET_DASHBOARD_URLenv-var row; placement and default value are consistent with the existing table.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[agentsfleet CLI] --> B[agent update --from] A --> C[memory list] A --> D[memory search] A --> E[tenant provider show/add/delete] B --> B1["PATCH existing agent\n(re-parses SKILL.md + TRIGGER.md)"] C --> C1["Read-only view of\nagent durable memory"] D --> D1["Substring-search keys\nand content"] E --> E1["Show / switch / remove\nself-managed provider"]%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% flowchart TD A[agentsfleet CLI] --> B[agent update --from] A --> C[memory list] A --> D[memory search] A --> E[tenant provider show/add/delete] B --> B1["PATCH existing agent\n(re-parses SKILL.md + TRIGGER.md)"] C --> C1["Read-only view of\nagent durable memory"] D --> D1["Substring-search keys\nand content"] E --> E1["Show / switch / remove\nself-managed provider"]Reviews (2): Last reviewed commit: "docs(cli): order overview table to match..." | Re-trigger Greptile