agentsclimarketplace

Cds search

Skill Enakoneschniy/claude-dev-stack/skills/cds-search

Search past session observations using the sessions.search MCP tool. Falls back to CLI if the MCP server is not available.From its SKILL.md

Install
npx -y skills add Enakoneschniy/claude-dev-stack --skill cds-search

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 1 command, including `npx claude-dev-stack search "$ARGUMENTS"`.

SKILL.md

1.4 KB, 310 tokens by cl100k_base, as published. Nobody here has run it

/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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.