.claude/skills/freesearch/SKILL.md
Zero-token research using Argus search broker. Saves Claude tokens.
npx skillsauth add khamel83/oneshot freesearchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Uses 0 Claude Code tokens. Calls Argus in cheap mode (SearXNG).
/freesearch [topic]
Check global docs-cache FIRST:
cat ~/github/docs-cache/docs/cache/.index.md | grep -i "[KEYWORD]"
If found → Return cached doc path immediately
If NOT in cache → Ask 2-3 clarifying questions (goal, depth, audience)
Search via Argus (cheap mode = SearXNG only):
curl -s -X POST http://localhost:8005/api/search \
-H "Content-Type: application/json" \
-d '{"query": "[TOPIC]", "mode": "cheap"}'
If results include official docs → Add to global cache:
cd ~/github/docs-cache
mkdir -p docs/cache/{category}/{name}
# Write README.md with content
# Update .index.md
git add docs/cache/
git commit -m "Add cache: {name}"
git push
Create docs/research/{date}_{topic}_final.md in current project
[CACHED] Found in docs-cache: ~/github/docs-cache/docs/cache/tools/anthropic/README.md
OR
[Searched Argus: cheap mode] Key findings:
- [finding 1]
- [finding 2]
[Added to cache] ~/github/docs-cache/docs/cache/tools/{name}/README.md
Full research: docs/research/YYYY-MM-DD_{topic}_final.md
If Argus is unreachable:
curl -s http://localhost:8005/api/health >/dev/null 2>&1
...then check config/search.yaml for cheap mode providers and call directly.
~/github/docs-cache/ (global, not per-project)development
Smart visual analysis for websites and images using Playwright screenshots and AI vision.
development
--- name: tdd description: Test-driven development with mandatory RED-GREEN-REFACTOR cycle. Enforces writing failing tests before production code. Use when implementing new features, fixing bugs with test coverage, or when the user wants TDD discipline. Trigger keywords: tdd, test first, test driven, red green refactor, add tests, coverage, write a test, failing test. --- # /tdd — Test-Driven Development RED-GREEN-REFACTOR cycle. No production code without a failing test shown first. ## Usage
tools
Quick iterations on existing projects. Load context, ask what's next, execute in burn-down mode.
tools
Manage encrypted secrets between the master vault and projects using SOPS/Age.