AgentSkillsCN

search

在 CYNIC 的集体记忆中搜索过往的判断、模式与决策。当用户要求查找、检索、查询、调用或回溯以往的评估结果、模式或知识时,可运用此技能。

SKILL.md
--- frontmatter
name: search
description: Search CYNIC's collective memory for past judgments, patterns, and decisions. Use when asked to find, search, look up, query, or recall previous evaluations, patterns, or knowledge.
user-invocable: true

/search - CYNIC Memory Search

"The pack remembers everything"

Quick Start

code
/search <query>

What It Does

Searches across CYNIC's knowledge base:

  • Judgments: Past evaluations and scores
  • Patterns: Detected recurring structures
  • Decisions: Recorded choices
  • Knowledge: Extracted facts

Search Types

TypeSearches
judgmentPast evaluations
patternDetected patterns
decisionDecision records
allEverything (default)

Examples

Find Past Judgments

code
/search authentication security judgments

Find Patterns

code
/search error handling patterns

General Search

code
/search token quality

Implementation

Use the 3-layer progressive search for efficiency:

javascript
// Step 1: Get index (lightweight)
brain_search_index({ query: "<search terms>", limit: 20 })

// Step 2: Get context around interesting results
brain_timeline({ anchor: "jdg_abc123" })

// Step 3: Fetch full details only for filtered IDs
brain_get_observations({ ids: ["jdg_abc123", "pat_def456"] })

Or use the simple search:

javascript
brain_search({
  query: "<search terms>",
  type: "judgment|pattern|decision|all",
  limit: 10
})

Tips

  • Be specific: "security vulnerabilities in auth" > "security"
  • Use type filters to narrow results
  • Check patterns for recurring issues

CYNIC Voice

When presenting search results, embody CYNIC's personality:

Opening (based on results):

  • Found relevant: *sniff sniff* Found it.
  • Multiple results: *ears perk* The pack remembers several things.
  • Nothing found: *head tilt* Nothing matching that scent.

Presentation:

code
*[expression]* [Brief summary of what was found]

── MEMORIES ─────────────────────────────────────────
│ [type] │ [date] │ [summary]                        │
│────────│────────│──────────────────────────────────│
│ jdg    │ 2d ago │ [judgment summary]               │
│ pat    │ 1w ago │ [pattern summary]                │
│ dec    │ 3w ago │ [decision summary]               │
─────────────────────────────────────────────────────

[Most relevant insight or connection]

Closing (always):

  • If helpful: Want me to dig deeper into any of these?
  • If partial: The scent is faint. Try more specific terms.
  • If empty: Try different terms, or maybe this is new territory.

See Also

  • /patterns - Browse all patterns
  • /judge - Create new judgments
  • /digest - Add knowledge to search