用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nguyenthienthanh/aura-frog --skill response-analyzer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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 |
AI-consumed reference. Optimized for Claude to read during execution. Human-readable explanation: see docs/architecture/HIERARCHICAL_PLANNING.md or docs/getting-started/ depending on topic.
Reduce context bloat: write large outputs to /tmp/aura-frog/, load only summaries.
triggers[5]{scenario,threshold,action}:
Command output,>100 lines,Save to temp + summarize
API response,>5KB,Save JSON + extract key fields
File search results,>50 files,Save list + show top 10
Test output,>50 lines,Save full + summarize pass/fail
Build output,>100 lines,Save full + show errors only
/tmp/aura-frog/
├── responses/ # cmd-*.txt, api-*.json, search-*.txt
├── summaries/ # summary-*.md
└── session/ # per-session data
npm test > /tmp/aura-frog/responses/test-$(date +%s).txt 2>&1
grep -E "(PASS|FAIL|Tests:|Suites:)" /tmp/aura-frog/responses/test-*.txt | tail -10
curl url > /tmp/aura-frog/responses/api-$(date +%s).json
jq '{total: .data | length, first_3: .data[:3] | map(.name)}' /tmp/aura-frog/responses/api-*.json
find . -name "*.ts" > /tmp/aura-frog/responses/search-$(date +%s).txt
echo "Found $(wc -l < file) TypeScript files"; head -10 file
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%
workflow_integration[4]{phase,use_case,pattern}:
Phase 2 (Test RED),Test output,Command
Phase 4 (Review),Linter output,Command
Phase 4 (Review),Coverage report,Command
Any,Large API responses,API
Cleanup: find /tmp/aura-frog -mtime +1 -delete