skills/research-and-plan/SKILL.md
Composite: deep research -> CEO review -> eng review. Use when user says 'research', 'plan', 'design', 'architect', or 'spec out'.
npx skillsauth add ShaheerKhawaja/ProductionOS research-and-planInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Composite skill that chains deep research, CEO-perspective review, and engineering architecture review into a complete planning pipeline. Each step consumes the previous step's artifacts, progressively refining from raw research into an actionable engineering spec.
deep-research -> plan-ceo-review -> plan-eng-review
| | |
v v v
RESEARCH.md CEO-REVIEW.md ENG-REVIEW.md
(raw findings) (vision + scope) (architecture + tasks)
| Parameter | Values | Default | Description |
|-----------|--------|---------|-------------|
| topic | free text | required | What to research and plan |
Invokes: /deep-research
What it does:
~/repos/ for existing implementationsProduces: .productionos/RESEARCH.md
Artifacts passed to Step 2:
Gate to Step 2: Proceeds unconditionally. Even incomplete research is valuable for CEO review.
Invokes: /plan-ceo-review
What it does:
Produces: .productionos/CEO-REVIEW.md
CEO review output structure:
Artifacts passed to Step 3:
Gate to Step 3: Proceeds unconditionally. CEO review is advisory.
Invokes: /plan-eng-review
What it does:
Produces: .productionos/ENG-REVIEW.md
Engineering review output structure:
Final composite report written to .productionos/RESEARCH-AND-PLAN.md:
# Research & Plan: {topic}
## Research Summary (from Step 1)
- **Sources analyzed:** N
- **Key findings:** {top 5}
- **Confidence:** X/10
- **Knowledge gaps:** {list}
## CEO Vision (from Step 2)
- **Vision:** {one sentence}
- **Phase 1 scope:** {MVP definition}
- **Success metric:** {measurable outcome}
- **Scope expansions:** {accepted items}
## Engineering Plan (from Step 3)
- **Architecture:** {summary}
- **Components:** {count}
- **Estimated effort:** {total hours/days}
- **Critical path:** {ordered list}
## Implementation Roadmap
| Phase | Tasks | Effort | Dependencies |
|-------|-------|--------|-------------|
| 1 (MVP) | ... | ... | ... |
| 2 (Growth) | ... | ... | Phase 1 |
| 3 (Scale) | ... | ... | Phase 2 |
## Open Questions
{questions that could not be resolved through research}
Plan completed: {timestamp}
/auto-swarm directly/deep-research standalone/review or /audit-and-fixtools
Implementation planning workflow that turns approved ideas into dependency-aware execution plans.
development
Local RAG and Graph RAG over the SecondBrain wiki vault. Progressive context loading (hot cache -> index -> domain -> entity). Graph traversal via wikilink resolution. Use when agents need cross-project context, when answering questions that span multiple domains, or when building context for planning tasks. Triggers on: "wiki context", "cross-project context", "what do we know about", "check the wiki", "graph context", "/wiki-rag".
devops
UX improvement pipeline — creates user stories from UI guidelines, maps user journeys, identifies friction, dispatches fix agents. The user-experience equivalent of /production-upgrade.
development
Test-driven development workflow that writes failing tests first, implements minimally, and refactors safely.