~/agent-config
Browse
KitClaude Code · 5 steps · 5 resources

Claude Code Power User

A power setup for Claude Code — design-first brainstorming and planning, a persistent memory graph, structured sequential reasoning, and clean conventional commits for a tidy history.

  1. Skill

    Install the brainstorming skill

    Align on intent before building

    npx skills add https://github.com/obra/superpowers --skill brainstorming
  2. Skill

    Install the writing-plans skill

    npx skills add https://github.com/obra/superpowers --skill writing-plans
  3. MCP

    Configure the Memory MCP

    Persistent context across sessions

    {
      "mcpServers": {
        "memory": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-memory"]
        }
      }
    }
    
  4. MCP

    Configure the Sequential Thinking MCP

    {
      "mcpServers": {
        "sequential-thinking": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
        }
      }
    }
    
  5. Skill

    Add the conventional commits skill

    npx skills add https://github.com/obra/superpowers --skill commit-messages