Layers 1-2 of the Broomva Stack — 24 skills across 7 layers.
Skills for persistent consciousness in autonomous AI agent development. Three complementary skills that give stateless agent sessions the accumulated understanding of all prior sessions.
Control-system metalayer with setpoints, sensors, gates, feedback loops, and escalation budgets.
npx skills add broomva/control-metalayer --skill control-metalayer-loopThe synthesis: how control metalayer + knowledge graph + conversation logs form a self-evolving persistent consciousness.
npx skills add broomva/control-metalayer --skill agent-consciousnessBridges Claude Code conversation logs (.entire/ + transcripts) to an Obsidian knowledge graph for searchable session history.
npx skills add broomva/control-metalayer --skill knowledge-graph-memoryWorking memory → Auto-memory → Conversation logs → Knowledge graph → Policy rules → Invariants
(ephemeral) (permanent)
| Substrate | Skill | Purpose |
|---|---|---|
| Control Metalayer | control-metalayer-loop |
How to behave (gates, policies, setpoints) |
| Knowledge Graph | agent-consciousness |
What is known (Obsidian vault, wikilinks, MOCs) |
| Conversation Logs | knowledge-graph-memory |
What was done (session records, tool traces) |
# 1. Initialize control metalayer
python3 .agents/skills/control-metalayer-loop/scripts/control_wizard.py init . --profile autonomous
# 2. Generate conversation history
python3 scripts/conversation-history.py --force
# 3. Audit
python3 .agents/skills/control-metalayer-loop/scripts/control_wizard.py audit . --strictThe system gets smarter the more it's used:
- Agent encounters a failure mode not covered by existing policy
- Agent fixes the immediate issue
- Pattern is captured in conversation log (
docs/conversations/) - If recurring, crystallizes into architecture doc (
docs/architecture/) - If enforceable, becomes a gate in
.control/policy.yaml - Future agents are governed by this rule automatically