doc(AGENTS): activate integral fragment

This commit is contained in:
Timothy DeHerrera
2026-01-31 16:52:30 -07:00
parent 26e3b1c2ba
commit 99987bd057

View File

@@ -11,9 +11,12 @@ The agent MUST read and adhere to the global engineering ruleset and any active
``` ```
.agent/ .agent/
├── predicates/ ├── predicates/
│ ├── global.md # Base engineering ruleset (required) │ ├── engineering.md # Base engineering ruleset (always active)
│ └── fragments/ # Active extensions │ └── fragments/ # Context-specific extensions (opt-in)
── rust.md # Rust conventions ── rust.md # Rust idioms
│ ├── depmap.md # DepMap MCP tools
│ ├── integral.md # Holistic problem-solving
│ └── personalization.md # User preferences
└── workflows/ └── workflows/
└── ... # Task-specific workflows └── ... # Task-specific workflows
``` ```
@@ -22,6 +25,8 @@ The agent MUST read and adhere to the global engineering ruleset and any active
- Rust idioms (`.agent/predicates/fragments/rust.md`) - Rust idioms (`.agent/predicates/fragments/rust.md`)
- DepMap MCP tools (`.agent/predicates/fragments/depmap.md`) - DepMap MCP tools (`.agent/predicates/fragments/depmap.md`)
- Integral problem-solving (`.agent/predicates/fragments/integral.md`)
- Personalization (`.agent/predicates/fragments/personalization.md`)
**Available Workflows:** **Available Workflows:**