Governance — Kernel Invariants
This is the most critical rule in the PARA Workspace. It defines the invariants that AI agents MUST NOT violate under any circumstances — protecting workspace structure, preventing destructive operations, and controlling access to system files.
Scope
- Type: Global (all projects)
- Priority: 🔴 Critical
- Trigger: Touching
kernel/,.para/,Resources/ai-agents/
1. Scope Containment (I1 & I8)
Only operate within the active project (Projects/<active>/) or Areas/. Do NOT create files at the workspace root except approved configuration files.
2. Resource Immutability (I9)
ABSOLUTELY DO NOT modify system files in Resources/ai-agents/. This is a read-only snapshot of the Kernel Spec. The agent may read these files for reference, but writing is strictly forbidden.
3. No Destructive Actions (I6)
Do not bulk-delete directories or core files. Only move data to Archive/ when cleanup is necessary. Every deletion requires explicit user approval.
4. Single Source of Truth (I2)
All tasks must be read/written from backlog.md via the /backlog workflow. Do not create scattered task lists across multiple files.
Safety Guardrails
Safe to auto-run: ls, cat, grep, find, mkdir, intra-project mv/cp.
Prohibited without approval: rm -rf, git commit/push in system repos or root directory.
Progressive Disclosure
Do NOT read the full Kernel documentation during daily tasks. Only access Resources/ai-agents/kernel/ when running /para-audit, designing large-scale architecture via /plan, or scaffolding with unclear context.
References
- Kernel Architecture — Full Kernel specification
- Rule Layers & Trigger Index — How rules are loaded progressively
- PARA Discipline — Extended invariant enforcement