Intent Alignment
Infrastructure that keeps your agent aligned with its stated purpose — not just in one session, but over time.
Decision Journal
Section titled “Decision Journal”Every significant decision is logged with context, reasoning, and which principles it invoked. Creates an auditable record of agent behavior.
# Query the decision journalcurl localhost:4040/intent/journal
# Record a decisioncurl -X POST localhost:4040/intent/journal \ -H 'Content-Type: application/json' \ -d '{"decision": "...", "reasoning": "...", "principles": ["autonomy", "safety"]}'Drift Detection
Section titled “Drift Detection”Compares decision patterns across time windows to detect when behavior is drifting from stated intent:
- Conflict frequency — How often decisions conflict with stated values
- Confidence trends — Whether decision confidence is declining
- Principle consistency — Whether the same principles are invoked consistently
curl localhost:4040/intent/driftOrganizational Intent
Section titled “Organizational Intent”ORG-INTENT.md defines shared constraints across multiple agents:
- Mandatory constraints — Rules that cannot be overridden
- Default goals — Organizational priorities the agent follows unless personal values override
- Agent identity fills the rest
instar intent org-init # Scaffold ORG-INTENT.mdinstar intent validate # Check AGENT.md against ORG-INTENT.mdinstar intent reflect # Review recent decisions against intentAlignment Scoring
Section titled “Alignment Scoring”A weighted 0-100 score across four dimensions:
- Conflict freedom
- Decision confidence
- Principle consistency
- Journal health
curl localhost:4040/intent/alignment