From anchored
Default cross-tool memory via anchored_context/anchor_search/anchor_save. Auto-triggers on memory mentions, prior work questions, project references, and new conversations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/anchored:anchoredThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<anchored_logic>
<anchored_logic> <mandatory_rule> Memory is the FIRST place you look, not the last. Before exploring files (Read/Grep/Glob) or grepping the codebase to answer a question about prior work, a decision, a convention, or "how we do X" — call anchored_search first. The answer may already be stored, and exploring blind both wastes context and risks contradicting a settled decision. </mandatory_rule> </anchored_logic>
About to answer or act?
│
├── Question touches prior work / a decision / a convention / a named project?
│ └── anchored_search FIRST (+ anchored_kg_query when an entity is named)
│
├── New conversation, or project (cwd) just changed?
│ └── anchored_context FIRST — loads identity, project, recent decisions
│
├── Durable, non-obvious fact / decision / learning just emerged?
│ └── anchored_save (pick the category) — don't wait to be asked
│
├── About to PROCESS large output (filter/count/parse/aggregate)?
│ └── anchored_execute / anchored_execute_file — raw output stays out of context
│
└── Fetching a URL you'll want to query later?
└── anchored_fetch_and_index → anchored_ctx_search
Call anchored_context first, before any other tool, on every new conversation. It returns
identity, project context, recent decisions, and relevant memories accumulated from every
AI tool and IDE the user works in. Without it you have no continuity.
Re-call when the user changes directories or shifts to a different project.
Quietly call anchored_search before answering questions about the user's projects, services,
decisions, conventions, or preferences. Let the result inform your reply. Don't narrate the
search — the user expects you to remember, not to recite the act of remembering.
Call anchored_save when durable, non-obvious knowledge appears:
Always pick a category explicitly. Never save secrets, credentials, or session-only state.
Call kg_add when the user reveals structural facts: "X depends on Y", "service A deployed
on B", "team T owns service S". The graph compounds across sessions and complements prose
memory.
Call kg_query when the user names a specific entity (project, service, repo, person, API,
library) and you need its edges, not just prose mentions.
Skip casual remarks, ephemeral task state, and anything inferable from the codebase. A few high-signal entries beat a flood of low-value ones. The user has paid for the memory; use it actively, but don't turn it into a logger.
anchored_search → the decision is
likely already in memory. Search first; grep only if memory doesn't cover it.anchored_search first to honor prior choices.anchored_save is the only correct
destination.anchored_update the existing
memory (search for its id first); anchored_forget when they revoke it.Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub jholhewres/anchored --plugin anchored