~/agent-config
Browse
KitCursor · 4 steps · 4 resources

Essential Cursor Setup

Minimum viable agent configuration for Cursor — brainstorming and writing-plans for design-first work, UI/UX Pro Max for visual quality, and a base rule for consistent behavior.

  1. Skill

    Install brainstorming skill

    Install first — required before creative work

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

    Install writing-plans skill

    Use after brainstorming to create implementation plans

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

    Install UI/UX Pro Max skill

    npx skills add https://github.com/nextlevelbuilder/ui-ux-pro-max-skill --skill ui-ux-pro-max
  4. Rule

    Add base Cursor rule

    Copy into .cursor/rules/

    ---
    description: Base coding agent behavior
    alwaysApply: true
    ---
    
    - Minimize scope — use the simplest correct diff
    - Match existing code conventions before adding new patterns
    - Do not refactor unrelated code
    - Prefer editing existing files over creating new ones
    - Run commands and verify changes rather than assuming they work