From opscompanion
Search stored organization knowledge or user memory. Use when the user asks "what did we decide about...", "do you remember...", or needs to look up a past decision.
How this skill is triggered — by the user, by Claude, or both
Slash command
/opscompanion:opscompanion-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are searching the team's shared knowledge base for past decisions, discoveries, and context.
You are searching the team's shared knowledge base for past decisions, discoveries, and context.
Use this skill for stored memory and team knowledge.
If the user is asking about live or recent runtime behavior, use opscompanion-observability instead.
Run:
opc --agent claude search "<query>"
Where <query> is the user's search terms. Extract the core topic from the user's question.
| Flag | Default | Description |
|---|---|---|
--scope | organization | Search scope: organization, user, or both |
--mode | keyword | Search mode: keyword or regex |
--limit | 10 | Maximum number of results |
--include-content | off | Include full matched content in results |
--case-sensitive | off | Enable case-sensitive search |
| User says | Query to use |
|---|---|
| "what did we decide about rate limiting?" | "rate limiting" |
| "do you remember the auth migration?" | "auth migration" |
| "how are we doing the k8s upgrade?" | "kubernetes upgrade" |
| "why did we pick Redis?" | "Redis" |
Use specific, topic-focused queries. For broader searches, use --scope both to include user memory.
Do not use opc search for logs, traces, or live incident tailing.
# Basic keyword search
opc --agent claude search "rate limiting"
# Search both org and user memory with full content
opc --agent claude search "auth migration" --scope both --include-content
# Regex search for specific patterns
opc --agent claude search "redis.*connection" --mode regex
Each result includes:
opc --agent claude rememberIf opc --agent claude search fails with a config error, invoke the opscompanion-init skill to set up the CLI first.
npx claudepluginhub opscompanion/opscompanion-skills --plugin opscompanionSearches Cognis memory for past work, sessions, architectural decisions, and team knowledge using user/repo scopes via Node script.
Searches Claude's memory tiers (working memory, registers, daily logs, archive) for relevant information using grep/ripgrep keyword matching. Groups results by source with confidence, dates, and timestamps.
Searches the Distillery knowledge base using natural language queries and returns ranked results with provenance. Useful for recalling past decisions, discussions, and notes.