Agent skill
token-efficient
Use when processing 50+ items, analyzing CSV/log files, executing code in sandbox, or searching for tools. Load for data processing tasks. Achieves 98%+ token savings via in-sandbox execution, progressive disclosure, and pagination. Supports heredocs for multi-line bash.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/token-efficient
SKILL.md
Token-Efficient MCP
Process data in sandbox, return only results. 98%+ token savings.
Instructions
- Search for tool:
search_tools("csv")(95% savings vs loading all) - Process data in sandbox (never load raw to context)
- Use pagination for large files:
offset,limit - Return summaries, not raw data
Quick Commands
# Process CSV with filter
scripts/process-csv.sh data.csv "price > 100"
# Search logs for errors
scripts/search-logs.sh app.log "ERROR|WARN"
# Execute code in sandbox
scripts/run-sandbox.sh script.py
Token Savings
| Tool | Savings | Example |
|---|---|---|
execute_code |
98%+ | Run Python without loading |
process_csv |
99% | 10K rows → 100 results |
process_logs |
95% | 100K lines → 500 matches |
search_tools |
95% | Find tools on-demand |
MCP Tools
| Tool | Purpose |
|---|---|
execute_code |
Python/Bash/Node in sandbox |
process_csv |
Filter, aggregate CSV |
process_logs |
Pattern match logs |
search_tools |
Find tools by keyword |
batch_process_csv |
Multiple CSVs at once |
References
| File | Load When |
|---|---|
| references/patterns.md | Choosing which tool |
| references/examples.md | Need code examples |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?