Process files, folders, or information into the Centauro context system
Integrates existing files, folders, or information into the Centauro context system through classification and delegation.
/plugin marketplace add eLafo/centauro/plugin install centauro@hermes<file-path-or-description>Process files, folders, or information and include them in the Centauro Context Engineering system by classifying content and delegating to context-manager agents for proper integration.
The user can provide:
User Input: $ARGUMENTS
Analyze what the user provided:
Use Read/Glob tools to gather content as needed.
For files:
For folders:
For text descriptions:
Classify content into Context Engineering components:
Classification Decision Tree:
Is it prescriptive (HOW to do something)?
→ c₁ Instructions
Is it descriptive knowledge (WHAT something is)?
→ c₂ Knowledge
Does it document available capabilities (WHAT can be used)?
→ c₃ Tools
Is it a decision or lesson learned (WHY/historical)?
→ c₄ Memory
Is it current project state (WHERE we are now)?
→ c₅ State
Multiple components: Some content may map to multiple components. Create separate contexts for each classification.
Invoke the context-manager agent via Task tool to handle context file creation, metadata, and integration.
Prompt structure for context-manager:
Process the following content and create appropriate context file(s) in the Centauro system:
**Source:** [file path, folder path, or "user-provided description"]
**Content to process:**
[Include extracted or analyzed content]
**Classification guidance:**
- Primary component: [c₁/c₂/c₃/c₄/c₅]
- Secondary components (if applicable): [list]
- Rationale: [why this classification]
**Context requirements:**
- Apply appropriate metadata standards
- Use semantic versioning (start at v0.1.0 for new contexts)
- Validate quality using 4-dimensional framework (target B+ or higher)
- Create file(s) in `.centauro/contexts/[component]/`
- Ensure specificity and actionability
- Include concrete examples where applicable
**Filename suggestion:** [suggest based on content and classification]
Create the context file(s) following Centauro standards.
Agent delegation pattern:
Output to user:
✅ **Processing Complete**
**Source:** [original input]
**Contexts created:**
1. `[filename]` - [component] - [brief description]
- Location: `.centauro/contexts/[component]/[filename]`
- Quality: [grade from 4-dimensional framework]
- Version: v0.1.0
**Component classifications:**
- [c₁/c₂/c₃/c₄/c₅]: [rationale]
**Next steps:**
- Review the generated context file(s)
- Consider related contexts that might enhance this information
- Use `/centauro:build` if you need additional contexts for a specific task
/centauro:process docs/api-design-methodology.md
Expected flow:
docs/api-design-methodology.md.centauro/contexts/c1-instructions/api_design_methodology.md/centauro:process src/utils/
Expected flow:
src/utils/.centauro/contexts/c3-tools/project_utilities.md/centauro:process "We decided to use PostgreSQL over MongoDB because we need strong ACID guarantees and complex relational queries. MongoDB's flexibility wasn't worth the tradeoff for our use case."
Expected flow:
.centauro/contexts/c4-memory/database_selection_decision.md/centauro:process config/app-settings.json
Expected flow:
config/app-settings.json.centauro/contexts/c5-state/application_configuration.md/centauro:process docs/methodology.pdf src/api/ config/database.yml
Expected flow:
docs/methodology.pdf → c₁ or c₂ contextsrc/api/ → c₃ context (API capabilities)config/database.yml → c₅ context (database state)/centauro:process research/graphql-vs-rest-comparison.md
Expected flow:
.centauro/contexts/c2-knowledge/api_architecture_comparison.mdUse /centauro:process when you have:
This command bridges external content with the Centauro system by handling classification, extraction, and proper integration through the context-manager agent.
This command complements other Centauro commands:
/centauro:detect - Analyzes tasks to identify needed contexts (planning)/centauro:build - Creates contexts from scratch via guided interview (generation)/centauro:process - Integrates existing content into the system (integration)/centauro:reflect - Extracts learnings from sessions (retrospective)/centauro:setup - Initializes the infrastructure (setup)Use process when you want to bring existing artifacts into Centauro rather than creating new contexts from scratch.