Initialize Harness
Initialize the AI Engineering Harness in this repository.
What This Command Does
- •Creates the
thoughts/directory structure for context engineering. - •Adds a ticket template for consistent ticket creation.
- •Provides guidance on next steps.
Instructions
Follow these steps to initialize the harness:
- •
Check the current state of the repository
- •Verify if thoughts/ directory exists
- •
Create the thoughts/ directory structure:
bashmkdir -p thoughts/shared/{tickets,plans,research} mkdir -p thoughts/global - •
Add the ticket template to
thoughts/shared/tickets/ticket-template.md - •
Optionally create a personal thoughts directory:
- •Check if personal directory exists
- •Check if all directories within personal exist (tickets, plans, research)
bashmkdir -p thoughts/$(whoami)/{tickets,plans,research} - •
Present next steps to the user
Quick Reference
After running this command, the repository will have:
code
thoughts/ ├── shared/ │ ├── tickets/ # Feature requests, bugs, tasks │ │ └── ticket-template.md # Template for new tickets │ ├── plans/ # Implementation plans │ └── research/ # Research documents └── global/ # Cross-repository concerns
Workflow After Initialization
code
Ticket → /create_plan → /implement_plan → /validate_plan → /commit