Skill v1.0.2
currentLLM-judged scan95/100~1 modified
version: "1.0.2" name: context-anchoring description: "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'."
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:
- Look
.lattice/config.yamlin repo root - If found, check
paths.context_basefor custom dir path - If custom path exist, use that dir for context docs
- 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.
The requirement doc may live in this repo, or in whatever system the team already tracks requirements in (Jira, Linear, a wiki) -- this atom never writes to it regardless of where it lives.
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:
- Identify feature name. Derive kebab-case filename from feature name (e.g., "User Authentication" →
user-authentication.md). Confirm name with user. - Ask about requirement doc. If user has a requirement document, capture it for the
requirement_docfrontmatter field -- a local file path, or an external reference (URL, ticket ID, or other identifier resolvable via a connected MCP tool). If neither, leavenull. - Create dir if
<context_base>/not already exist. - Generate from template. Read
./assets/feature-doc-template.mdand fill in:
- Frontmatter:
feature,requirement_doc,created(today date),status: draft - H1 heading: feature name
- Summary: one-line description (ask user or derive from context)
- If template file not found, generate doc using this minimal structure:
```
feature: <feature-name> requirement_doc: <local path, external reference, 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 ```
- Confirm creation. Show user proposed path and content summary.
Load Behavior
Always confirm before loading.
Steps:
- Read context doc. Parse frontmatter and all sections.
- Resolve linked requirement doc if
requirement_docnot null. Local path → read directly. External reference (URL, ticket ID, or other identifier) and a connected MCP tool can resolve it → attempt fetch. Neither applies → ask the user to paste the current requirement constraints directly -- expected, not an error. Use whatever is resolved to understand feature goals and scope, but not modify. - Present structured acknowledgment (see Output Formats below):
- Feature name and summary
- Status (from frontmatter
statusfield — surface explicitly) - Requirement doc status (linked or not linked)
- Decision count and latest decision
- Open questions (if any)
- Constraints (if any)
- 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.
- Respect constraints as non-negotiable. Constraints harder than decisions -- represent boundaries that cannot be crossed without deliberate, documented override.
- 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:
- Append-only. New entries go bottom of Decisions Log table. Never modify or remove existing entries.
- Chronological order. Entries reflect order decisions made, not grouped by topic.
- Concise but complete. Each entry understandable on own without re-reading full conversation.
- Feature-bound only. Only capture decisions relevant to this specific feature. Cross-cutting concerns, project-wide conventions, general preferences belong elsewhere.
- Resolve open questions explicitly. When open question answered, add answer as decision in log and remove question from Open Questions list.
- Constraints non-negotiable. Once constraint recorded, it binding. Changing constraint require new decision entry explaining why constraint being revised.
- 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. - Key Files dedup. When adding to the Key Files table, check if the path already exists in the table. If it does — skip.
- 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:
- Scan context base dir for
.mdfiles. - Match by frontmatter
featurefield or by filename. - If multiple docs exist, present numbered list with feature name, creation date, decision count. Let user choose.
- If only one doc exist, suggest loading it. Confirm before proceeding.
- If no docs exist, inform user and suggest creating one.
- Fuzzy match: If user term partially match multiple docs (e.g., "auth" matching
user-authentication.mdandoauth-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.