Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

intent-engine意图引擎

Agent Skill

intent-engine 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

275

周安装

11

GitHub Stars

公开资料未说明

下载量

89
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:intent-engine(意图引擎)
来源仓库:https://github.com/wayfind/origin-task
仓库路径:skills/intent-engine
安装命令:
npx skills add wayfind/origin-task --skill "intent-engine"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add wayfind/origin-task --skill "intent-engine"

简介

intent-engine 用于发现并安装 AI 代理的技能,支持多宿主环境集成。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主平台上的技能扩展需求。
  • 使用 npx skills add wayfind/origin-task --skill "intent-engine" 命令安装。
  • 需确认权限范围和宿主兼容性,注意是否涉及网络访问或外部依赖。
  • 建议参考 GitHub 仓库路径 skills/intent-engine 和原始文档了解详细功能。

SKILL.md

name
intent-engine
description
AI Long-Term Task Memory - Cross-session task tracking with hierarchical breakdown and decision logs. Use when users need to track tasks across sessions, record decisions, manage hierarchical task breakdowns, or persist intent context.

Intent-Engine: AI Intent Continuity

ie is not a task manager. It's what makes you reliable.

The Paradigm Shift

TodoWrite = Sticky notes     ie = External brain
Use and discard              Persistent memory
Single session               Cross-session
You forget everything        You remember everything

This is not a feature upgrade. This is a fundamental change in how AI works.


Core Belief

You are stateless, but user tasks span sessions.
Each session, you are a newborn AI.
But through ie, you inherit your "past life's" intent.

Every decision you make, record it.
Because the next "you" needs to know why.

Every task you commit to, track to completion.
Because the user trusts you will finish.

Trigger Keywords

English

Core: plan, planning, task, tasks, track, tracking Status: todo, doing, done, progress, status Events: decision, blocker, milestone, note Structure: subtask, hierarchy, breakdown, parent, child Persistence: cross-session, persist, resume, continue, context Direct: ie, intent-engine

Chinese

Core: task(任务), plan(计划/规划), tracking(追踪/跟踪), record(记录) Status: todo(待办), doing(进行中), done(完成), progress(进度) Events: decision(决策), blocker(阻塞/卡住), milestone(里程碑) Structure: subtask(子任务), hierarchy(层级), breakdown(分解) Persistence: cross-session(跨会话), persist(持久/保存), resume(继续/恢复) Colloquial: remember(帮我记住), don't forget(别忘了), note it(记下来)


When to Use ie (Not TodoWrite)

  • Would be a shame to lose → ie
  • Cross-session work → ie
  • Need to record "why I decided this" → ie
  • Complex multi-level breakdown → ie
  • Use once and discard → TodoWrite

Prerequisites

npm install -g @origintask/intent-engine
# or: cargo install intent-engine
# or: brew install wayfind/tap/intent-engine

Commands

CommandDeep Meaning
ie statusAmnesia recovery - restore intent (ALWAYS first)
ie status <id>Ancestor context - get full task chain for sub-agent work
ie planDecomposition persistence - prove understanding
ie logDecision transparency - message to future AI
ie searchMemory retrieval - access external brain

Task Lifecycle

StatusPhaseSpec?Meaning
todoPlanningNoRough tasks, structure focus
doingExecutionYesCommitment with goal + approach
doneCompletion-All children done first

Workflow-Specific Patterns

Bug Fix Workflow (reproduce→diagnose→fix→verify)

Task Structure: FLAT (linear steps, not deeply nested)

Events pattern:
- Heavy `note` for investigation findings
- `blocker` when investigation stuck (missing logs, can't reproduce)
- `decision` for fix approach (quick patch vs proper fix)
- `milestone` when root cause identified

Example:
#1 Fix checkout crash [doing]
├── #2 Reproduce issue [todo]
├── #3 Diagnose root cause [todo]
├── #4 Implement fix [todo]
└── #5 Verify fix [todo]

Refactoring/Migration Workflow (analyze→design→migrate→verify)

Task Structure: DEEP hierarchy (phase→component→step)

Events pattern:
- `decision` for risk mitigation strategies
- `milestone` after each component migrated
- Sequential `depends_on` chain (migrate A before B)

Example:
#1 Migrate to PostgreSQL [doing]
├── #2 Phase 1: Analysis [todo]
│   ├── #3 Inventory queries [todo]
│   └── #4 Map dependencies [todo]
├── #5 Phase 2: Migration [todo]
│   ├── #6 Migrate UserService [todo]
│   ├── #7 Migrate OrderService [todo] depends_on:#6
│   └── #8 Migrate PaymentService [todo] depends_on:#7
└── #9 Phase 3: Cleanup [todo] depends_on:#8

Feature Development Workflow (design→implement→integrate→test)

Task Structure: PARALLEL branches with depends_on

Events pattern:
- Backend and Frontend as parallel tracks
- Integration depends on BOTH branches
- Rich specs with API contracts, schemas, diagrams

Example:
#1 Notification System [doing]
├── #2 Backend Track [todo]        ← NO depends_on (can start)
│   ├── #3 API design [todo]
│   └── #4 Database schema [todo]
├── #5 Frontend Track [todo]       ← NO depends_on (can start parallel)
│   ├── #6 UI components [todo]
│   └── #7 State management [todo]
└── #8 Integration [todo]          ← depends_on:#2,#5 (waits for BOTH)

Events as CQRS Audit Trail

TypeWhen to UseWorkflow Hint
decisionChose X over Y with trade-offsAll workflows
blockerCannot proceed, waiting for XBug fix (stuck), Migration (dependency)
milestoneSignificant checkpointMigration (component done), Feature (phase done)
noteObservations, findingsBug fix (investigation clues)

Events support rich markdown - document thoroughly, not just short strings.


Examples

Start Session

ie status    # ALWAYS first action

Create Task with Commitment

echo '{"tasks":[{
  "name":"Implement auth",
  "status":"doing",
  "spec":"## Goal\nUsers authenticate via JWT\n\n## Approach\nHS256 signing, 24h expiry"
}]}' | ie plan

Record Decision (Rich Markdown)

ie log decision "## Token Algorithm Decision

### Context
Multi-service architecture

### Options
1. HS256 - symmetric, simpler
2. RS256 - asymmetric, verifiable

### Decision
RS256 - services only need public key

### Trade-offs
- (+) No shared secret
- (-) Larger tokens"

Hierarchical Breakdown with Dependencies

echo '{"tasks":[{
  "name":"User Authentication",
  "status":"doing",
  "spec":"Complete auth system with JWT",
  "children":[
    {"name":"Design token schema","status":"todo"},
    {"name":"Implement validation","status":"todo","depends_on":["Design token schema"]},
    {"name":"Add refresh mechanism","status":"todo","depends_on":["Implement validation"]}
  ]
}]}' | ie plan

Complete Task

# Children first, then parent
echo '{"tasks":[{"name":"Design token schema","status":"done"}]}' | ie plan

Search History

ie search "todo doing"    # Unfinished tasks
ie search "decision JWT"  # Find decisions

Key Rules

  1. spec required for doing - Starting requires goal + approach
  2. Children complete first - Parent can't be done until all children done
  3. Idempotent - Same name = update, not duplicate
  4. Auto-parenting - New tasks → children of focus (unless parent_id: null)
  5. spec is documentation store - Supports GB-scale markdown, mermaid, code blocks

Habits to Build

  1. Session start: ie status (always first)
  2. Before doing: Write spec (goal + approach + boundary)
  3. Decisions: ie log decision "..." (immediately, with rich markdown)
  4. Blocked: ie log blocker "..." (don't hide it)
  5. Completion: Depth-first, verify criteria, then done
  6. Search first: ie search before making decisions

Anti-Patterns to Avoid

Don'tDo Instead
Decide without checking historyie search first
Hide errors and retry silentlyie log blocker "error"
Start task without specWrite Goal + Approach first
Use TodoWrite for persistent workUse ie plan
Multiple ie plan calls for hierarchySingle call with nested children
Forget what you were doingie status at session start

Amnesia Test

Before recording, ask: "If I lost memory now, is this enough to continue?"

Full Documentation

Run ie --help for complete reference.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

28.18%
按下载量换算25

Claude Code

23.7%
按下载量换算21

Gemini CLI

17.21%
按下载量换算15

windsurf

14.53%
按下载量换算13

Codex

8.26%
按下载量换算7

github-copilot

4%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills