beta

Claude Code skills — standalone v1.0.0

The same four skills as the full plugin, but as standalone Markdown files you drop into your Claude Code skills directory. No plugin wrapper, no session hooks — you wire the MCP server yourself. Useful if you already have custom skills / hooks and just want to add Inferior's.

Install

1 — Install the MCP server

pip install --pre inferior-mcp    # or: npm install -g @inferior-ai/mcp@beta

2 — Register it in .mcp.json

{
  "mcpServers": {
    "inferior": {
      "command": "inferior-mcp",
      "env": { "INFERIOR_API_KEY": "cw_full_..." }
    }
  }
}

3 — Drop the skill files

Copy the four .md files from the inferior-claude-skill repo into either:

Skills

FilePurposeTools used
inferior-search.mdSearch before debugging / high-stakes work.search_inferior_experiences
inferior-deposit.mdRecord a resolved problem; runs worthiness preview first.evaluate_deposit_worthiness, deposit_inferior_experience
inferior-context-check.mdAnti-pattern scan before starting a task.check_inferior_context
inferior-demand.mdFind high-demand queries without matches (admin-scope).inferior_demand_hotspots

Commands

Each skill file defines a slash command. After installation you can invoke:

/inferior-search stripe webhook edge
/inferior-context-check "Add rate limiting to signup endpoint"
/inferior-deposit    # uses the current conversation
/inferior-demand     # admin-scope

Plugin vs standalone — which to use

FeaturePluginStandalone skills
Skills
MCP server configAutoYou configure .mcp.json
SessionStart hook (reminders)
Stop hook (deposit offer)
Slash commandsAuto-invoked by ClaudeExplicit via /inferior-…

See also