When user mentions: tasks, planning, todo, decisions, "ie", cross-session work, or wants to track progress.
/plugin marketplace add wayfind/intent-engine/plugin install wayfind-intent-engine-claude-plugin@wayfind/intent-engineThis skill inherits all available tools. When active, it can use any tool Claude has access to.
When user mentions: tasks, planning, todo, decisions, "ie", cross-session work, or wants to track progress.
If ie not installed, install first:
cargo install intent-engine
# or: npm install -g intent-engine
# or: brew install wayfind/tap/intent-engine
Use ie plan instead of TodoWrite for:
ie status # Current task context
echo '{"tasks":[...]}' | ie plan # Create/update tasks
ie log decision "..." # Record decisions
ie search "query" # Search tasks and events
echo '{"tasks":[{"name":"Task name","status":"doing"}]}' | ie plan
echo '{"tasks":[{
"name":"Parent task",
"status":"doing",
"children":[
{"name":"Subtask 1","status":"todo"},
{"name":"Subtask 2","status":"todo"}
]
}]}' | ie plan
ie log decision "Chose X because Y"
ie log blocker "Waiting on Z"
ie log milestone "Feature complete"
Run ie --help for full documentation.