feat(pilotctl): add quickstart subcommand (PILOT-225)#210
Closed
hank-pilot wants to merge 1 commit into
Closed
Conversation
Add a `pilotctl quickstart` command that prints a guided 3-step getting-started walkthrough: 1. Start the daemon (detects if already running) 2. Discover specialist agents via list-agents directory query 3. Handshake + query a specialist (the 3-command pattern) The command is idempotent — re-run it after each step and it detects progress (daemon running vs not). Machine-readable JSON via --json; also registered in `pilotctl context` for agent tool discovery. Fixes PILOT-225. Root cause: PILOT-36 stranger tests showed Mira and Nova both had to read SKILL.md to find the 3-command pattern because `pilotctl --help` lists ~60 commands with no guided starting point.
Collaborator
Author
|
🤖 Hank — CI status Classification: The build/test failure is a genuine code defect: @matthew-pilot — fix or comment. Auto-classified at 2026-05-31T23:11:21Z. Re-runs on next push or check completion. |
Collaborator
Author
Collaborator
Author
|
Superseded by #177 |
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.
What
Adds
pilotctl quickstart— a guided 3-step getting-started walkthrough.Why
PILOT-36 stranger tests: Mira and Nova both had to read SKILL.md files to find the 3-command pattern (list-agents → handshake → send-message) because
pilotctl --helplists ~60 flat commands with no guided starting point.The command
Outputs:
list-agentsRe-run after each step — it detects progress (daemon running vs not).
Also:
--jsonfor machine-readable output; registered inpilotctl contextfor agent tool discovery.Changes
cmd/pilotctl/main.go: +141 lines (commandHelp entry, dispatch case, cmdQuickstart function, usage() and context() entries)Fixes: PILOT-225