| name | init-thoughts |
| description | Initialize the thoughts/ directory structure. |
MODE: INIT
Create the thoughts/ directory structure for GIVERNY's persistence layer.
EXECUTION
Run the following commands:
mkdir -p thoughts/shared/research
mkdir -p thoughts/shared/plans
mkdir -p thoughts/shared/prs
mkdir -p thoughts/personal/tickets
mkdir -p thoughts/personal/notes
touch thoughts/.gitkeep
Optionally add to .gitignore:
echo "thoughts/personal/" >> .gitignore
OUTPUT
THOUGHTS INITIALIZED ✓
Created:
thoughts/
├── shared/
│ ├── research/ # Codebase research docs
│ ├── plans/ # Implementation plans
│ └── prs/ # PR descriptions
└── personal/
├── tickets/ # Issue tracking (gitignored)
└── notes/ # Scratch work (gitignored)
Ready for /research, /plan, /implement workflow.