Install
$ agentstack add skill-waitdeadai-minmaxing-codesearch ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
/codesearch
Code search and pattern understanding across the codebase.
MAXPARALLELAGENTS — ceiling for search lanes. Split search only across independent directories or patterns that meaningfully reduce search time.
Use when: User says "find code", "search code", "where is this implemented", "grep this", "swarm codesearch", or needs to find patterns across the codebase.
Swarm: "swarm codesearch" → /codesearch with an efficacy-first search wave up to MAX_PARALLEL_AGENTS.
Purpose
Find code patterns efficiently and store successful search patterns for future recall.
Execution Protocol
Step 1: Memory Recall (Before Search)
Recall similar past searches to leverage known patterns:
# Recall similar code patterns
bash scripts/memory.sh recall "[search topic]" --depth simple 2>/dev/null || echo "Memory recall: skipped"
# Search for procedural patterns
bash scripts/memory.sh search "[code pattern or function name]" 2>/dev/null || true
Step 2: Execute Code Search
# Use fast local search tools
rg -n "[pattern]" .
# For complex searches, spawn parallel agents
claude -p "Search for [pattern] in codebase. Report file paths and line numbers." > codesearch-results.out 2>&1 &
Step 3: Store Found Patterns
After successful pattern discovery, store for future recall:
# Store successful pattern as procedural memory
bash scripts/memory.sh add procedural "[file]: [found pattern description]" --tags "code-pattern,[language]"
Step 4: Final Output
## Codesearch Results: [Search Pattern]
### Files Found
- [file:line] — [brief description]
- [file:line] — [brief description]
### Stored to Memory
- [pattern description] → procedural tier
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: waitdeadai
- Source: waitdeadai/minmaxing
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.