/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
| Type | Searches |
|---|---|
judgment | Past evaluations |
pattern | Detected patterns |
decision | Decision records |
all | Everything (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