parley orchestrates Parley Deck workflows from the terminal. Commands operate
on the current directory by default; pass --dir DIR to target another
workspace root.
parley init --dir .
parley agents list --dir .
parley agents verify --dir . --agent claude
parley run --dir . --participants claude,gemini --yes "Plan the next CLI slice"
parley status --dir .
parley resume --dir . <run-id-or-idea>Create the repository-local parley-deck/ workspace with protocol, ideas,
inbox, metadata, and run directories.
--dir DIR: workspace root. Defaults to..
Print the effective runtime matrix for configured agents. The output includes installed state, version probe, launch mode, sandbox and approval policy, model/profile, timeout, isolated-home use, backend type, and config sources.
--dir DIR: workspace root. Defaults to..
Verify configured agent CLIs.
--dir DIR: workspace root. Defaults to..--agent ID: verify only one stable agent ID.--full: run behavioral headless probes, not just version probes.--yes: confirm probes that may call hosted backends.
Examples:
parley agents verify --dir . --agent codex
parley agents verify --dir . --full --agent hermes --yesCreate a new idea from TASK and launch round-01 with selected participants.
--dir DIR: workspace root. Defaults to..--no-tui: run headlessly and print results instead of opening the TUI.--auto: enable automatic low-risk HITL handling during the run.--participants IDS: comma-separated agent IDs, for exampleclaude,gemini.--yes: confirm selected hosted/non-local backend launches.TASK: free-form work request.
Example:
parley run --dir . --no-tui --participants claude,gemini --yes "Review the repo-map MVP"Resume a previous run by run ID or idea slug. This also validates pending manual or interactive consensus signoff handoffs when possible.
--dir DIR: workspace root. Defaults to..--no-tui: print run detail instead of opening the TUI.RUN_OR_IDEA: run ID underparley-deck/runs/or idea slug.
Show workspace, idea, consensus, run, and HITL question state.
--dir DIR: workspace root. Defaults to..--run RUN_ID: inspect one run.--idea SLUG: inspect one idea or its latest run.--json: print machine-readable JSON.
Answer a pending human-in-the-loop question for a run.
--dir DIR: workspace root. Defaults to..RUN_ID: run directory ID.QUESTION_ID: question file ID.ANSWER...: answer text.
Example:
parley answer --dir . 20260517T120000.000000000Z q1 "Use the conservative default"Emit a deterministic map of the local repository. Markdown output is useful in prompts; JSON output is useful for tools.
--dir DIR: repository root to map. Defaults to..--format markdown|json: output format. Defaults tomarkdown.--max-files N: maximum number of files to include. Defaults to1000.
Examples:
parley context repo-map --dir . --format markdown --max-files 50
parley context repo-map --dir . --format json --max-files 10Inspect consensus state for an idea.
--dir DIR: workspace root. Defaults to..--review: inspectreview/consensus.mdinstead ofconsensus.md.--json: print machine-readable JSON.IDEA: idea slug underparley-deck/ideas/.
Draft a consensus file from submitted round or review files.
--dir DIR: workspace root. Defaults to..--review: draft review consensus.--round N: source round number.--by AGENT: drafter agent ID recorded in frontmatter.IDEA: idea slug.
parley consensus signoff [--dir DIR] [--review] --agent ID --status STATUS [--notes TEXT] [--counter TEXT] IDEA
Append one signoff block to the target consensus file.
--dir DIR: workspace root. Defaults to..--review: sign review consensus.--agent ID: signing participant ID.--status STATUS:accept,reserve,reservations, orblock.--notes TEXT: signoff notes.--counter TEXT: counter-proposal forblocksignoffs.IDEA: idea slug.
parley consensus request-signoffs [--dir DIR] [--review] [--participants IDS] [--yes] [--dry-run] IDEA
Ask missing participants to append their own signoff blocks.
--dir DIR: workspace root. Defaults to..--review: request review consensus signoffs.--participants IDS: comma-separated participant IDs to request.--yes: confirm hosted/non-local backend launches.--dry-run: print the planned requests without invoking agents.IDEA: idea slug.
Create or update FINAL.md from accepted consensus.
--dir DIR: workspace root. Defaults to..--by AGENT: final plan author.IDEA: idea slug.
Reopen a consensus file and preserve the previous blocked draft.
--dir DIR: workspace root. Defaults to..--review: reopen review consensus.--reason TEXT: reason recorded in the reopened file.IDEA: idea slug.
Open the project TUI.
--dir DIR: workspace root. Defaults to..
Print the CLI version.
--all: includeparley-deck-skillinstaller, runtime skill, and project metadata status when available.--json: print machine-readable JSON.
0: success.1: runtime failure, failed probe, malformed workspace, or agent failure.2: usage error or missing required argument.3: pending manual/interactive handoff forconsensus request-signoffs.