Pathmode
@pathmodeio
16 days ago
Build structured intent specs through Socratic AI conversation (zero-config), or connect to your Pathmode workspace for strategic context, dependency graphs, and team governance. v1.5.0 ships with a Claude Code skill pack โ 7 auto-triggering skills (compile-intent, grill-intent, verify-intent, review-against-intent, split-intent-to-issues, handoff-intent, setup-pathmode-workflow) installable via `npx @pathmode/mcp-server install-skills`. Makes agents build the right thing, not just any thing.
Overview
What it does
Pathmode turns Claude Code into a Socratic product thinking partner. Describe a problem and Claude challenges vague language, asks pointed questions, and builds a structured intent spec โ objective, outcomes, edge cases, constraints โ that downstream agents can actually implement.
Two modes
- Local (no API key) โ Build specs as
intent.mdfiles in your project root. Free, offline, no signup. - Team (
PATHMODE_API_KEYset) โ Sync specs to a Pathmode workspace. Adds evidence anchoring, dependency graphs, constitution rules, cross-agent context.
The skill pack (new in v1.5.0)
7 Claude Code skills that auto-trigger on natural-language requests โ no slash commands needed:
setup-pathmode-workflowโ capture test commands, issue tracker, status conventionscompile-intentโ build a structured spec for what to shipverify-intentโ design the executable feedback loopgrill-intentโ stress-test an existing spec for weaknessessplit-intent-to-issuesโ break a spec into Linear / Jira / GitHub Issues ticketsreview-against-intentโ check code changes against intenthandoff-intentโ capture decisions at end of session
Install: npx @pathmode/mcp-server install-skills
Quick start
{
"mcpServers": {
"pathmode": {
"command": "npx",
"args": ["@pathmode/mcp-server"]
}
}
}
Then in Claude Code:
Help me write an intent spec for [your problem]
Links
GitHub ยท Skill pack repo ยท pathmode.io
That's everything. Submit it.
Server Config
{
"mcpServers": {
"pathmode": {
"command": "npx",
"args": [
"@pathmode/mcp-server"
]
}
}
}