Manage Archon inferred user goals — list, inspect evidence, confirm, correct, promote session goals to persistent.
Manage Archon's inferred model of the user's underlying goals and motivations.
Parse the first word after /intent as the operation. Everything after is args.
/intent listShow all active persistent goals with confidence and evidence count.
mcp__memorygraph__search_memories with query "goal_id", memory_type "Intent", limit 50Goal ID | Description | Tier | Evidence | Confidence
---------------------|--------------------------------------|------------|----------|----------
high-test-coverage | Steven wants high test coverage... | persistent | 5 | 0.83
If no active goals: "No active goals found."
/intent show-evidence <goal_id>Show all EVIDENCED_BY and CONTRADICTED_BY edges for a goal.
intent-{goal_id} — if not found, output "Goal not found: {goal_id}"mcp__memorygraph__get_related_memories for intent-{goal_id} with direction "incoming"Goal: {goal_id} — {description}
Evidence (N items):
1. [timestamp] correction-xyz — "User corrected: always write tests first"
2. ...
Contradictions (M items):
1. [timestamp] "User said speed matters more here"
2. ...
/intent confirm <goal_id>Add an explicit confirmation as evidence, boosting confidence.
/intent correct <goal_id> <new_description>Update a goal's description and log the correction.
/intent promote <goal_id>Promote a session-scoped goal to persistent tier.