From project-docs
Create a structured investigation document from a rough idea, voice note, or freeform thoughts. Use when the user has an unstructured question or concern they want to explore — transforms conversational input into a formal investigation in docs/investigations/. Triggers when user says "investigate this", "I've been thinking about", "should we look into", "start an investigation", or provides rough voice-to-text or bullet-point input that needs structuring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/project-docs:create-investigationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a structured investigation document from a rough, conversational idea or
Create a structured investigation document from a rough, conversational idea or question.
Raw input to process: The user's freeform thoughts following this command
Your workflow:
Parse and understand the raw input
Identify the investigation scope
Search for relevant context
Structure the investigation
Create the investigation document
YYYY-MM-DD-topic-investigation.mddocs/investigations/[filename].mdTransform the input thoughtfully
Important guidelines:
Handling different input styles:
Voice-to-text input:
"Um, so I've been thinking, you know, like maybe we should look at refactoring
the AI composables because they're getting kind of messy and there's a lot of
duplication, like every time we add a new workflow it's basically copy-paste,
and I'm not sure if that's, like, a real problem or just me being picky..."
Transform to:
## Question / Motivation
Should we refactor the AI composables? There appears to be significant code
duplication across workflows, with each new workflow requiring substantial
copy-paste. Need to determine if this is a genuine maintainability concern or
acceptable given current system complexity.
Rough notes input:
- ai composables getting complex
- lots of duplication?
- every new workflow = 200+ lines boilerplate
- maybe factor pattern?
- not sure if worth it
Transform to:
## Question / Motivation
Should we refactor AI composables to reduce duplication? Initial observation
suggests each new workflow requires ~200+ lines of boilerplate code.
Investigating whether a factory pattern or similar abstraction would provide
value vs. current implementation.
## Open Questions
- How much actual duplication exists across composables?
- What patterns could reduce boilerplate?
- What's the maintenance cost of current approach vs. refactored approach?
Output:
Create an investigation document in docs/investigations/ with:
Inform the user of:
npx claudepluginhub ichabodcole/project-docs-scaffold-template --plugin project-docsConducts deep-dive investigations on topics by exploring codebase and docs, then outputs structured documentation into session files.
Autonomously researches feature requests or architecture documents, explores codebase patterns, identifies ambiguities and gaps, produces feature-context.md for orchestrator without making technical decisions.
Guides Socratic conversations to explore ideas, approaches, and decisions, routing insights to project artifacts like todos or requirements.