advanced-tool-use
Context-efficient tool management via search, deferred loading, and programmatic calling
npx skills add majiayu000/claude-skill-registry --skill advanced-tool-use-skill --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Advanced Tool Use System Context-efficient tool management via search, deferred loading, and programmatic calling. ## Features | Feature | Benefit | API Type | |---------|---------|----------| | Tool Search | 85% context reduction | `tool_search_tool_regex_20251119` | | Programmatic Calling | 37% token reduction | `allowed_callers: ["code_execution_20250825"]` | | Tool Examples | 72%→90% accuracy | Examples in tool definition | | Deferred Loading | On-demand only | `defer_loading: true` | ## Tool Categories | Category | Loading | Examples | |----------|---------|----------| | CORE | Always | health_check, get_task_status | | VERIFICATION | Deferred | verify_task, collect_evidence | | DATABASE | Deferred | query, insert | | FILE_SYSTEM | Deferred | read, write, list | | AUSTRALIAN_CONTEXT | Always | format_date_au, format_currency_aud, validate_abn | ## Configuration ```python @dataclass class ToolConfig: defer_loading: bool = False # Load on-demand via search allowed_callers: list[str] = [] # ["code_execution_20250825"] parallel_safe: bool = True cache_results: bool = False australian_context: bool = False # Load with Australian locale ``` ## Usage ```python from src.tools import
- Features
- Tool Categories
- Configuration
- Usage
- Context Savings
- Australian Context Integration
- Parallel Tool Execution
- Rules
- Integration with Agents
What does the advanced-tool-use skill do?
Context-efficient tool management via search, deferred loading, and programmatic calling
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill advanced-tool-use-skill --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
