‹ 首页

context-anchoring

@techygarg · 收录于 1 周前

Manage per-feature living documents that capture decisions, constraints, and reasoning across AI sessions during active development. Scoped to feature-level work — design, implementation, bugfix, refactor — not for codebase-wide assessments or product-wide specifications (those define their own document lifecycles). Handles creating new context documents, loading existing ones, and enriching them with new decisions. Use when starting a new feature, resuming work, making technical decisions, resolving questions, or when context needs to persist across sessions. Use this skill whenever the user mentions 'load context', 'update context', 'context doc', 'decisions', 'continue where we left off', 'what did we decide', or 'capture this decision'.

适合你,如果在多轮AI对话中需要持久化记录功能设计决策和约束。

/ 下载安装
context-anchoring.skill双击,或拖进 Claude 桌面版 / Cowork,即完成安装↓ .skill↓ .zip
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code~/.claude/skills/(项目级 .claude/skills/)
Codex CLI~/.codex/skills/
Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add techygarg/lattice/context-anchoring
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- techygarg/lattice/context-anchoring
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify techygarg/lattice/context-anchoring
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
159GitHub stars
待重算上下文体积
镜像托管

怎么用

技能原文 SKILL.md作者撰写 · MIT · e5a5a73

Context Anchoring

Scope
Feature-level only — anchors decisions as a feature flows from design → implementation → bugfix → refactor.
Config Resolution

Skill manage dir of per-feature context docs. Resolution order:

  1. Look .lattice/config.yaml in repo root
  2. If found, check paths.context_base for custom dir path
  3. If custom path exist, use that dir for context docs
  4. If no config/path/path not found, use default .lattice/context/

Each feature get one doc at <context_base>/<feature-name>.md. No default principles, no overlay modes, no override files -- just thin template and per-feature docs that grow through enrichment.

Problem

AI no persistent memory. Context decay real: by message 30+, early decisions contradicted, naming inconsistent, "why" evaporate. Damage compound -- forgotten decision become potential contradiction, lost constraint become violation, unresolved question become silent assumption.

Context anchor docs solve:

  • Feature-bound -- one doc per feature, scoped decisions only
  • Decision-focused -- capture what, why, what-else-considered for every choice
  • Append-only -- decisions never removed/rewritten, only added chronologically
  • Session-spanning -- doc outlive conversation, carry context forward
  • Git-native -- live in repo, versioned alongside code

Two docs per feature: requirement doc (static, written upfront, not managed by this skill) and context anchor doc (living, evolving, managed by this skill). Requirement doc define what build. Context anchor doc capture how and why -- decisions, constraints, reasoning that emerge during development.

Document Lifecycle

Three behaviors govern context anchor doc lifecycle. Each triggered reactively (user ask) or proactively (AI suggest). Both cases, AI always confirm before acting -- propose, user dispose.

| Behavior | Purpose | Reactive Trigger | Proactive Trigger | |----------|---------|-----------------|-------------------| | Create | Start new context doc | User ask create one | AI detect feature work beginning without doc | | Load | Restore context from existing doc | User ask load/resume | AI detect existing docs and suggest loading | | Enrich | Add new decision, constraint, resolution | User ask capture something | AI detect decision made in conversation |

Status Lifecycle

Every context doc carries a status frontmatter field. Never infer status from body prose.

| Value | Set by | |---|---| | draft | context-anchoring Create — design not yet complete | | approved | design-blueprint Step 3 — L1–L4 complete, design reviewed | | complete | code-forge Step 5 — implementation done |

STOP: Check this field before acting on a context doc. draft ≠ approved. approved ≠ complete. Deviation from approved design: update doc and re-approve — no new status values.

Create Behavior

Always confirm before creating.

Steps:

  1. Identify feature name. Derive kebab-case filename from feature name (e.g., "User Authentication" → user-authentication.md). Confirm name with user.
  2. Ask about requirement doc. If user have requirement document, capture path for requirement_doc frontmatter field. If not, leave null.
  3. Create dir if <context_base>/ not already exist.
  4. Generate from template. Read ./assets/feature-doc-template.md and fill in:
  5. Frontmatter: feature, requirement_doc, created (today date), status: draft
  6. H1 heading: feature name
  7. Summary: one-line description (ask user or derive from context)
  8. If template file not found, generate doc using this minimal structure: ``` --- feature: <feature-name> requirement_doc: <path or null> created: <today's date> status: draft --- # <Feature Name> <one-line summary> ## Decisions Log | Date | Decision | Reasoning | Alternatives Considered | |------|----------|-----------|------------------------| ## Open Questions None. ## Constraints None. ## Key Files ```
  9. Confirm creation. Show user proposed path and content summary.
Load Behavior

Always confirm before loading.

Steps:

  1. Read context doc. Parse frontmatter and all sections.
  2. Read linked requirement doc if requirement_doc not null. Use to understand feature goals and scope, but not modify.
  3. Present structured acknowledgment (see Output Formats below):
  4. Feature name and summary
  5. Status (from frontmatter status field — surface explicitly)
  6. Requirement doc status (linked or not linked)
  7. Decision count and latest decision
  8. Open questions (if any)
  9. Constraints (if any)
  10. Honor all logged decisions. Every decision in log treated as active commitment. Never contradict logged decision without explicit discussion and new decision entry explaining change.
  11. Respect constraints as non-negotiable. Constraints harder than decisions -- represent boundaries that cannot be crossed without deliberate, documented override.
  12. Flag open questions when work touch them. If current task involve area with unresolved question, surface immediately. Not silently assume answer.
Enrich Behavior

Always confirm before writing.

What capture in Decisions Log:

  • Date -- when decision made
  • Decision -- what decided, stated clearly and concisely
  • Reasoning -- why this choice made, key factors
  • Alternatives Considered -- what else evaluated and why rejected

Rules:

  1. Append-only. New entries go bottom of Decisions Log table. Never modify or remove existing entries.
  2. Chronological order. Entries reflect order decisions made, not grouped by topic.
  3. Concise but complete. Each entry understandable on own without re-reading full conversation.
  4. Feature-bound only. Only capture decisions relevant to this specific feature. Cross-cutting concerns, project-wide conventions, general preferences belong elsewhere.
  5. Resolve open questions explicitly. When open question answered, add answer as decision in log and remove question from Open Questions list.
  6. Constraints non-negotiable. Once constraint recorded, it binding. Changing constraint require new decision entry explaining why constraint being revised.
  7. Constraint Override Protocol. If user explicitly say override constraint (e.g., "forget that constraint, we've changed direction"), not silently delete. Instead: (a) ask user confirm override explicitly, (b) strike through constraint in Constraints section (prefix with ~~), and (c) add decision entry in Decisions Log recording override and reasoning. Constraint history preserved; binding status revoked.
  8. Key Files dedup. When adding to the Key Files table, check if the path already exists in the table. If it does — skip.
  9. Cross-cutting check. After enriching, apply the learning-harvest cross-cutting test: (1) does it name a pattern or approach, not a feature-specific fact? (2) could a developer on a different feature apply it without knowing this feature's context? If both pass — silently add to the learning-harvest queue. Do not prompt the user here.
Document Discovery

When user ask load or resume but not specify which feature:

  1. Scan context base dir for .md files.
  2. Match by frontmatter feature field or by filename.
  3. If multiple docs exist, present numbered list with feature name, creation date, decision count. Let user choose.
  4. If only one doc exist, suggest loading it. Confirm before proceeding.
  5. If no docs exist, inform user and suggest creating one.
  6. Fuzzy match: If user term partially match multiple docs (e.g., "auth" matching user-authentication.md and oauth-authentication.md), show all partial matches with full filenames and let user choose. Never guess.

When user mention feature name in conversation, check if matching context doc exist. If it do and not been loaded in this session, suggest loading it.

Output Formats

Load: Show feature name, status (from frontmatter), requirement doc status, decision count, open questions, constraints, latest decision. Close with: "All logged decisions are active. Constraints are non-negotiable. I will flag open questions when work touches them."

Enrich: Show exactly what will be added (decision, reasoning, alternatives considered). Wait confirmation before writing.

Create: Show proposed path, feature name, requirement doc link. Wait confirmation before creating.

Integration with Other Skills

This atom composed by molecules that orchestrate feature workflows:

  • design-blueprint -- invoke Create or Load in Step 1 (Establish Context), then invoke Enrich at each design level checkpoint to capture decisions as they emerge
  • code-forge -- invoke Load in Step 1 (Establish Implementation Context) to load blueprint, then invoke Enrich throughout Steps 3-5 to capture implementation decisions, key files, resolved questions

When context doc active (loaded in current session), Enrich run continuously -- AI monitor conversation for decisions worth capturing and suggest enrichment as they arise. Not limited to molecule that loaded doc; any skill producing decisions can trigger enrichment suggestion.

按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。