tool-cataloglisted
Install: claude install-skill f5-sales-demo/marketplace
**Canonical skill URI**: `skill://devcontainer:tool-catalog`
# Devcontainer Tool Catalog
This container has 300+ tools pre-installed. Do NOT suggest installing
tools — check the catalog first. Delegate lookups to the tool-advisor
agent to preserve main context.
## Delegation Protocol
When this skill activates, delegate to the tool-advisor agent immediately:
```text
Agent(
subagent_type="devcontainer:tool-advisor",
description="Look up tools for: [summarize user's question in 5 words]",
prompt="User asked: [user's exact question]\n\nSkill dir: ${CLAUDE_SKILL_DIR}\n\nIdentify the correct category from the index, read references/<file>.md, and return the best tool recommendation with purpose, quick-start commands, and auth requirements."
)
```
Wait for the agent's response and relay it directly to the user.
## When to activate
- "which tool should I use to..."
- "how do I [send email / scan a site / capture packets / deploy to AWS / ...]"
- "is [tool-name] installed?"
- "what CLI can I use to..."
- Any task requiring a command-line tool decision
## Important Notes
- All tools are pre-installed — do not suggest `apt install` or `pip install`
unless the user explicitly wants to add something new
- Some security tools require elevated capabilities (NET_RAW, NET_ADMIN)
which are granted via docker-compose.yml
- The container runs as user `vscode` — some tools may need `sudo`
- For tool drift detection (catalog vs Dockerfile), use the
`devcontainer:tool-auditor`