Initialize the Context Engineering infrastructure for the current project
Sets up the Centauro context engineering directory structure and configuration files.
/plugin marketplace add eLafo/centauro/plugin install centauro@hermesYou are being asked to initialize the Context Engineering infrastructure for this project using the Centauro framework.
This command will:
.centauro/ directory structureCreate the following directory structure in the current project:
.centauro/
├── contexts/
│ ├── c1-instructions/
│ ├── c2-knowledge/
│ ├── c3-tools/
│ ├── c4-memory/
│ ├── c5-state/
│ └── .gitignore
├── templates/
└── README.md
Instructions:
.centauro/ already exists. If it does, ask the user if they want to reinitialize or skip.mkdir -p to create nested directories relative to the current working directory.centauro/contexts/:
c1-instructions/ - For HOW to do things (methodologies, workflows, processes)c2-knowledge/ - For WHAT things are (domain knowledge, frameworks, reference materials)c3-tools/ - For technical capabilities (APIs, functions, integrations)c4-memory/ - For past experiences (decisions, learnings, historical context)c5-state/ - For current situation (active resources, present configuration)Create .centauro/contexts/.gitignore:
# Ignore sensitive or temporary context files
**/secrets.md
**/temp-*.md
**/.DS_Store
Create .centauro/README.md explaining:
templates/ folder (for user's custom context templates)After successful initialization, show the user:
✅ Context Engineering infrastructure initialized successfully!
Directory structure created:
.centauro/
├── contexts/
│ ├── c1-instructions/
│ ├── c2-knowledge/
│ ├── c3-tools/
│ ├── c4-memory/
│ ├── c5-state/
│ └── .gitignore
├── templates/
└── README.md
Next steps:
1. Read .centauro/README.md for detailed framework information
2. Use /centauro:process to import content from existing files or documentation
3. Start using: For any non-trivial task, Claude will load relevant contexts via the centauro:context-engineering skill
4. Use /centauro:reflect after completing significant tasks to capture learnings
The .centauro/contexts/ directory is ready to store your project-specific contexts organized by the six-component framework.
/centauro:process command to import and classify content from existing documentation or files