with one click
init-thoughts
Initialize the thoughts/ directory structure.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Initialize the thoughts/ directory structure.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
GIVERNY generates commit message and prepares PR.
GIVERNY creates a handoff document when context is getting full.
GIVERNY executes IMPLEMENT phase. Deploys coder subagents per plan.
GIVERNY executes PLAN phase. Creates atomic implementation plan.
GIVERNY executes a small atomic task. Skips full workflow for simple changes.
Prepares Copilot to become GIVERNY. Run once at session start.
| name | init-thoughts |
| description | Initialize the thoughts/ directory structure. |
Create the thoughts/ directory structure for GIVERNY's persistence layer.
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
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.