<< All versions
Skill v1.0.0
Automated scan100/100nguyenthienthanh/aura-frog/response-analyzer
──Details
PublishedApril 28, 2026 at 10:34 PM
Content Hashsha256:307b58b120a8fd44...
Git SHAc93e8f4eeb71
──Files
Files (1 file, 2.0 KB)
SKILL.md2.0 KBactive
SKILL.md · 92 lines · 2.0 KB
version: "1.0.0" name: response-analyzer description: "MCP Response Analyzer pattern - Write large responses to temp files, load summaries into context" autoInvoke: false priority: medium triggers:
- "large response"
- "analyze output"
- "response:save"
allowed-tools: Read, Write, Bash user-invocable: false
MCP Response Analyzer
Reduce context bloat: write large outputs to /tmp/aura-frog/, load only summaries.
Triggers
toon
triggers[5]{scenario,threshold,action}:Command output,>100 lines,Save to temp + summarizeAPI response,>5KB,Save JSON + extract key fieldsFile search results,>50 files,Save list + show top 10Test output,>50 lines,Save full + summarize pass/failBuild output,>100 lines,Save full + show errors only
Directory
/tmp/aura-frog/├── responses/ # cmd-*.txt, api-*.json, search-*.txt├── summaries/ # summary-*.md└── session/ # per-session data
Patterns
Large Command Output
bash
npm test > /tmp/aura-frog/responses/test-$(date +%s).txt 2>&1grep -E "(PASS|FAIL|Tests:|Suites:)" /tmp/aura-frog/responses/test-*.txt | tail -10
API Response
bash
curl url > /tmp/aura-frog/responses/api-$(date +%s).jsonjq '{total: .data | length, first_3: .data[:3] | map(.name)}' /tmp/aura-frog/responses/api-*.json
File Search
bash
find . -name "*.ts" > /tmp/aura-frog/responses/search-$(date +%s).txtecho "Found $(wc -l < file) TypeScript files"; head -10 file
Token Savings
toon
savings[4]{scenario,without,with,saved}:500-line test output,~2000,~100,95%Large JSON response,~5000,~200,96%200 file search,~800,~100,87%Build log,~3000,~150,95%
Integration
toon
workflow_integration[4]{phase,use_case,pattern}:Phase 2 (Test RED),Test output,CommandPhase 4 (Review),Linter output,CommandPhase 4 (Review),Coverage report,CommandAny,Large API responses,API
Cleanup: find /tmp/aura-frog -mtime +1 -delete