unitares-governance
Compatibility umbrella skill for the UNITARES governance framework. Use this as the entrypoint when you need the overall model and route into the split governance skills.
UNITARES Governance
This umbrella skill exists for backward compatibility and as a stable top-level entrypoint into the UNITARES framework.
Core Model
UNITARES evaluates agent state with the EISV model:
E: effective energy / execution driveI: integrity / coherence of alignmentS: entropy / disorder / instabilityV: valence (signed E-I imbalance)
Agents typically start with onboard() and continue with
process_agent_update() as their main check-in loop.
Session Continuity
Use onboard() to register or reconnect identity. The returned
client_session_id should be echoed back on later calls when continuity tokens
are not available. This prevents attribution fragmentation across sessions.
Use process_agent_update() after meaningful work to record progress,
complexity, and confidence, then read the returned governance verdict.
Knowledge Layer
The governance system is coupled to the knowledge graph. Agents should search existing knowledge before duplicating work, and contribute discoveries, questions, and answers as they learn.
Split Skills
The old monolithic skill was split into focused skills:
skills/governance-lifecycle/SKILL.mdfor onboarding, check-ins, and recoveryskills/governance-fundamentals/SKILL.mdfor EISV, basins, coherence, and verdictsskills/knowledge-graph/SKILL.mdfor knowledge graph search and contributionskills/dialectic-reasoning/SKILL.mdfor thesis/antithesis/synthesis workflowsskills/discord-bridge/SKILL.mdfor the Discord governance bridge
If you need the full mental model, start here. If you know the task shape, prefer the focused skill directly.