Back to skills
Skill

gad:auto-conventions

gad-auto-conventions

Auto-scaffold CONVENTIONS.md from codebase patterns after first implementation phase

Analyze the codebase after the first implementation phase and generate a CONVENTIONS.md capturing the patterns established — file structure, naming, import/export patterns, store patterns, component patterns, and type conventions.
  1. Check if CONVENTIONS.md already exists:

    test -f .planning/CONVENTIONS.md && echo "EXISTS" || echo "MISSING"
    

    If EXISTS, update it with new patterns. If MISSING, create it.

  2. Scan the codebase for established patterns:

    • File naming (kebab-case, PascalCase, etc.)
    • Directory structure
    • Import/export patterns
    • State management patterns (zustand, redux, etc.)
    • Component patterns (functional, class, etc.)
    • Type conventions (interfaces vs types, naming)
    • Test patterns
  3. Write .planning/CONVENTIONS.md with the discovered patterns.

  4. Commit:

    git add .planning/CONVENTIONS.md
    git commit -m "docs: auto-scaffold CONVENTIONS.md from codebase patterns"
    
Read and follow the companion `auto-conventions` skill if it is installed.
Source on GitHub

vendor/get-anything-done/sdk/skills/gad-auto-conventions/SKILL.md

Client debug · NEXT_PUBLIC_CLIENT_DEBUG=1
0 lines

No events yet. Window errors, unhandled rejections, and React render errors appear here. Set NEXT_PUBLIC_CLIENT_DEBUG_CONSOLE=1 to mirror console.error / console.warn.