a day 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"
]
}
}
}