一键导入
gaia-discover
Manage the Discovery Board -- capture, research, evaluate, prioritize, graduate, park, and review pre-backlog ideas with a frictionless gesture set.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage the Discovery Board -- capture, research, evaluate, prioritize, graduate, park, and review pre-backlog ideas with a frictionless gesture set.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | gaia-discover |
| description | Manage the Discovery Board -- capture, research, evaluate, prioritize, graduate, park, and review pre-backlog ideas with a frictionless gesture set. |
| argument-hint | <gesture> [args] |
| allowed-tools | ["Bash","Read"] |
| orchestration_class | light-procedural |
| version | 1.0.0 |
/gaia-discover is the user-facing gesture layer for the Discovery Board. Every
mutating gesture routes through discovery-board.sh -- the skill never writes
discovery-board.yaml directly.
| Gesture | Maps to | Mutates? |
|---|---|---|
capture | discovery-board.sh capture --title <t> --source <s> | yes |
board | discovery-board.sh board [--horizon <h>] [--priority <p>] | no |
research | discovery-board.sh transition --id <id> --to Researching | yes |
advance | alias for research | yes |
evaluate | discovery-board.sh transition --id <id> --to Evaluated | yes |
graduate | discovery-board.sh transition --id <id> --to Graduated | yes |
park | discovery-board.sh transition --id <id> --to Parked | yes |
revive | discovery-board.sh transition --id <id> --to <parked_from> | yes |
prioritize | discovery-board.sh prioritize --id <id> --priority <p> --horizon <h> | yes |
Provide a low-friction pipeline for pre-backlog ideas. Capture is instant (no Val gate, no subagent), board is read-only, and every write goes through the single sanctioned writer.
discovery-board.sh. The skill
never writes discovery-board.yaml directly -- all state mutations use the
script's subcommands.capture is deterministic. No Val gate, no subagent dispatch. It takes
one sentence and a source tag, mints the id, and writes a Captured item.
Priority and horizon are optional at capture time.board is read-only. It renders the board to stdout with optional
--horizon and --priority filters. Idle advisories at 30/60/90 days are
computed at display time from now - last_activity and never mutate state.park/revive are explicit manual transitions. Nothing auto-parks. The
idle advisory on board is presentation-only -- it never triggers a state
change.prioritize sets priority and horizon together. Both fields are required.
Horizon changes only via an explicit gesture (prioritize), never implicitly.graduate routes to transition --to Graduated. When --from-discovery
is set on /gaia-add-feature, the bridge populates the intake from the
graduated item's synthesis. Graduate is the only downstream edge from
Discovery into the formal backlog.Discovery is a pre-backlog lifecycle stage that sits strictly upstream of
/gaia-add-feature. Ideas flow through the Discovery Board pipeline
(Captured -> Researching -> Evaluated -> Graduated) before entering the formal
GAIA lifecycle. The only downstream edge is graduate, which bridges a
validated idea into /gaia-add-feature --from-discovery.
Discovery does not replace Phase 1 (Analysis). It is an informal staging area where ideas are captured, researched, and evaluated before they become formal change requests. Ideas that do not graduate are parked or remain on the board indefinitely.
capture gesture writes its input
directly to discovery-board.yaml. API keys, credentials, tokens, and any
other sensitive material must never be used as the title or source tag.
Sanitize inputs before capture.discovery-board.sh subcommand per the
table above.bash "${CLAUDE_PLUGIN_ROOT}/scripts/discovery-board.sh" <subcommand> [flags]
For research/advance, evaluate, graduate, park, and revive: these
are ergonomic names that map to transition --to <state>. The skill translates
the gesture name to the target state before invoking the script.
For revive: read the item's parked_from field via get --id <id> first,
then invoke transition --id <id> --to <parked_from>.
Capture a new idea:
/gaia-discover capture "Add dark mode support" --source "user-feedback"
View the board filtered by horizon:
/gaia-discover board --horizon Now
Prioritize an item (use the id shown in board output):
/gaia-discover prioritize --id <item-id> --priority High --horizon Now
Park an item for later:
/gaia-discover park --id <item-id>
Facilitate a post-sprint retrospective capturing went-well, didn't-go-well, and action-items sections. Writes a retro artifact to .gaia/artifacts/implementation-artifacts/. GAIA-native replacement for the legacy retrospective XML engine workflow.
Edit the tools section of project-config.yaml — section-scoped editor that preserves YAML comments and formatting. Use when "edit tools config" or /gaia-config-tool.
Perform an OWASP-focused security review on provided code or document — OWASP Top 10 scan, hardcoded secrets / API keys / credentials detection, authentication and authorization pattern review. Produces a markdown findings report with severity levels and remediation recommendations. Use when "review security" or /gaia-review-security.
Run an end-of-sprint review — two parallel tracks (Val text-validation + per-stack execution review), composite verdict, route the sprint to /gaia-sprint-close (PASSED), /gaia-correct-course (FAILED), or UNVERIFIED-bypass.
Agent-driven manual verification — exercises a target as a real user would and produces a run record with observed-vs-expected evidence. Disambiguated from /gaia-test-run (automated machine suite).
Triage and route a fix, enhancement, or feature through only the affected artifacts. Classifies as patch/enhancement/feature and cascades accordingly -- updating PRD, architecture, epics, test plan, threat model, and traceability as needed. Surfaces Val verdicts (PASS/WARNING/CRITICAL) and emits an assessment-doc audit trail.