cds-search

cds-search is a skill for Claude Code from Enakoneschniy/claude-dev-stack. It costs 27 tokens per session (360 once invoked), scanned A, original, MIT.

A search command for finding observations saved from earlier coding-agent sessions, such as decisions, bugs, and recurring patterns.

In plain words
What is it for?
Use it to search the current project's session database through the sessions.search tool or its command-line fallback.
Why use it?
It helps recover past project context instead of repeating investigations or guessing what was decided before.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/enakoneschniy/claude-dev-stack/cds-search
Any agent
npx skills add Enakoneschniy/claude-dev-stack --skill cds-search
Clone the repo
git clone --depth 1 https://github.com/Enakoneschniy/claude-dev-stack

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cds-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/enakoneschniy/claude-dev-stack/cds-search.svg)](https://agentmods.dev/skills/enakoneschniy/claude-dev-stack/cds-search)
Your own site
<a href="https://agentmods.dev/skills/enakoneschniy/claude-dev-stack/cds-search"><img src="https://agentmods.dev/badge/skills/enakoneschniy/claude-dev-stack/cds-search.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 360 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.00360
Opus 5 $0.00014 $0.00180
Sonnet 5 $0.00005 $0.00072
Haiku 4.5 $0.00003 $0.00036

Measured 5d ago against content hash 986043501688, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

cds-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/cds-search/SKILL.md · 49 lines

What it actually says

/cds-search -- Search session memory

Search for past decisions, bugs, patterns, and observations stored in the project's SQLite session database.

How to execute

  1. Extract the search query from $ARGUMENTS (everything after /cds-search).

  2. Primary path (MCP tool): Call mcp__cds__sessions.search with the query:

    mcp__cds__sessions.search({ query: "$ARGUMENTS" })
    

    Format the returned hits as a readable list showing:

    • Observation type (decision, bug, pattern, etc.)
    • Content snippet (first 2-3 lines)
    • Session date
    • Session ID (abbreviated)
  3. Fallback path (CLI): If mcp__cds__sessions.search is not available (MCP server not registered), use Bash:

    Bash("npx claude-dev-stack search \"$ARGUMENTS\"")
    

    Display the CLI output verbatim.

When to use

  • User asks about past decisions ("what did we decide about X")
  • User asks about past bugs ("did we see this bug before")
  • User asks about patterns ("how did we implement X")
  • User explicitly invokes /cds-search

Notes

  • Results are ranked by FTS5 BM25 relevance
  • Only searches the current project's sessions.db
  • For cross-project search, use the CLI directly on each project
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 49 lines · 27 tokens per session scan A 986043501688

Subscribe to this mod's changes

cds-search is a skill published in the GitHub repository Enakoneschniy/claude-dev-stack (5 stars, last pushed yesterday), licensed MIT. It adds 27 tokens to every session and 360 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

knowledge-ops

Use when an Obsidian knowledge system needs classification, deduplication, retrieval, synchronization, debt queues, or governed Agent/Wiki promotion.

Mark393295827/third-brain-v7-skills · 33 tokens

context-manager

Use when a long-running agent task needs context budgeting, checkpointing, compaction, retrieval, or capability-based model routing.

Mark393295827/third-brain-v7-skills · 28 tokens

session-learn

Use when a completed work session should yield durable concepts, corrections, decisions, reusable patterns, and a traceable next action.

Mark393295827/third-brain-v7-skills · 29 tokens

obsidian-untangle-knot

Offload an Obsidian hub note that too many notes link to (an in-degree tangle). The main signal of a tangle is a high in-degree (tens to hundreds of incoming links); out-degree is secondary. The skill creates sub-MOCs under the hub's existing categories and redirects incoming links from resource notes to the specific…

alexeyshishin/as-skill · 226 tokens

memory-bank-defrag

Defragment and re-actualize a project memory bank (the .assistant/ knowledge base + the project's auto-memory). Reads everything that changed in the repo since the last defrag, finds where the memory bank has gone stale or accumulated amendment-on-amendment "patches", folds the patches into clean current-state docs…

alexeyshishin/as-skill · 143 tokens

memory-bank

Maintains a lightweight, always-current "project encyclopedia" in .memory-bank/ — capturing architecture, stack, conventions, key entities, and active tasks. After each meaningful change, the AI suggests concise updates or explicitly confirms no update is needed.

alexeyshishin/as-skill · 53 tokens