Skip to main content
The installed binary describes itself. An agent should learn the surface from repost rather than from a possibly-stale copy of these docs — the manifest and schemas always match the version in front of it.

Read the command manifest

capabilities is the first machine-readable inventory to fetch for a binary. It always emits JSON.
The manifest lists command paths, usage, descriptions, command kind, group IDs, output mode, agent contract status, output schema names, and flags.
Cache the manifest by version. Refresh it after repost update, after installing a different binary, or when a workflow needs a command that is not present.

Read one command’s schema

Use docs schema when generated code needs field-level expectations for a single command.
The response gives the command path, output schema, output mode, runtime envelope shape, and a documented data shape when one exists.
The envelope describes the runtime contract exactly. Most commands succeed with {schema, data} and fail with {error}; exception modes such as top_level_json, single_json_object, jsonl, and markdown are declared by output_mode. Use data_shape when present, and fall back to output_schema plus the Output & errors contract for commands without a field-level shape.

Look up search syntax

docs search prints a compact query cheatsheet:
The full grammar — searchable fields, boolean operators and wildcards, the live-filter subset for expect/tail, and cursor pagination — is in Search & filters.

Install a repo primer

Commit a compact operating manual so every agent run in a repository starts informed.
--install writes .repost/AGENTS.md (mode 0600). Reference it from your existing agent instructions with @include .repost/AGENTS.md. The runbooks topic ships three ready-made procedures the agent can follow directly.
Every page in these docs also exposes assistant entry points (top-right Copy / Open in): copy as Markdown, open in ChatGPT, Claude, Perplexity, Cursor, or VS Code, or use the MCP endpoint. Append .md to any page URL for its canonical machine-readable form.

Continue

Search & filters

The query grammar, the live-filter subset, and cursor pagination.

Output & errors

What the schemas in the manifest resolve to at runtime.

Diagnose a webhook

Put the search and inspect commands to work.