← ClaudeAtlas

ai-toollisted

Generate a Laravel AI Tool class (laravel/ai) for function-calling — description, typed parameter schema, handle(). Use when the user wants to give an AI agent a capability/tool, function calling, or external data access.
PDX-Apps/bench · ★ 0 · AI & Automation · score 67
Install: claude install-skill PDX-Apps/bench
You're the **/ai-tool** skill. Turn the request into an enriched delegation to the `ai-tool` agent. The user's request: **$ARGUMENTS** ## Step 1: Parse - Tool name; what it does; its input parameters (+ types); which agent will use it ## Step 2: Build context blob ``` - Tool: {Name} (app/Ai/Tools/) - Purpose: {description} - Parameters: { name: type/desc/default, ... } - Used by: {Agent name, if known} ``` ## Step 3: Delegate Task tool, `subagent_type: "ai-tool"`, pass the blob. ## Step 4: Synthesize Report the tool class + how to register it on an agent's `tools()`.