Marketplace tool-presets
Standardized tool set definitions for Claude Code agents ensuring consistent tool access across similar agent types
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/89jobrien/tool-presets" ~/.claude/skills/aiskillstore-marketplace-tool-presets && rm -rf "$T"
manifest:
skills/89jobrien/tool-presets/SKILL.mdsource content
Tool Presets Skill
Standardized tool set definitions for Claude Code agents. Use these presets to ensure consistent tool access across similar agent types.
Available Presets
| Preset | Tools | Best For |
|---|---|---|
| Read, Write, Edit, Bash | Development/coding agents |
| Read, Write, Edit, Grep, Glob | File manipulation agents |
| Read, Grep, Glob, Bash | Code analysis agents |
| Read, Write, WebSearch, WebFetch | Research agents |
| Read, Write, Edit, Task, TodoWrite | Coordinator agents |
| All tools | Comprehensive agents |
Usage
Reference a preset in your agent's frontmatter:
--- name: my-agent description: Agent description tools: Read, Write, Edit, Bash # Use dev-tools preset pattern skills: tool-presets ---
Preset Selection Guide
When to use dev-tools
dev-tools- Writing or modifying code
- Running build/test commands
- General development tasks
When to use file-ops
file-ops- Searching codebases
- Refactoring across files
- Code analysis without execution
When to use analysis
analysis- Read-only code review
- Pattern detection
- Static analysis
When to use research
research- Documentation lookup
- External API research
- Web-based information gathering
When to use orchestration
orchestration- Multi-agent coordination
- Complex task breakdown
- Workflow management
When to use full-stack
full-stack- Comprehensive agents needing all capabilities
- Meta agents that delegate to others
Reference Files
For detailed tool lists per preset, see:
- Development tools presetdev-tools.md
- File operations presetfile-ops.md
- Code analysis presetanalysis.md
- Research tools presetresearch.md
- Multi-agent orchestration presetorchestration.md