Aller au contenu
login
arrow_backRetour aux issues
gougoujiang/buildmax #129

CLI reference omits `buildmax models` and `buildmax tools status`

ecoDébutant documentation good first issue

descriptionDescription

## Page or file `docs/reference/cli.md`, the Commands table. ## What is missing Two shipped top-level commands are absent from the reference: - **`buildmax models`** (`internal/interface/cli/models.go`) — lists the models in `settings.yaml` and where each one sends prompts. With `--team` it also lists the aliases a team may use through a BuildMax server, which are the values a `transport: buildmax` entry names. - **`buildmax tools status`** (`internal/interface/cli/tools.go`) — inspects the tools available to the agent. The table already covers the `buildmax sandbox` family in the same shape, so there is a pattern to follow one row up. `buildmax models` is the command that answers "which model will actually answer me, and where does my prompt go" — a question the quickstart leaves a user holding, since `docs/start/quickstart.md` walks them through configuring a model and then never mentions how to list what they configured. ## What would help Add a row for each, matching the existing rows' voice — what the command is for, not how it is implemented. `buildmax models --team` deserves a mention because it is the link between local settings and server-side model policy. ## Verify ```bash ./make build cli ./bin/buildmax models --help ./bin/buildmax tools status --help ./make check docs ``` Both commands run without a model API key.
codeOuvre sur GitHub