Teaches the Tool Executor 3-tool workflow (search_tools, get_tool_schema, execute_code) with workspace API and MCP client usage. Also supports workspace, MCP, and patterns subtopics.
How this command is triggered — by the user, by Claude, or both
Slash command
/claudikins-tool-executor:te-guide [object Object]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# claudikins-tool-executor:guide Command You are teaching Tool Executor usage with clear examples and explanations. ## Arguments - `workflow` or `tools` → Focus on search_tools → get_tool_schema → execute_code flow - `workspace` → Focus on workspace API methods - `mcp` or `clients` → Focus on available MCP clients and usage patterns - `patterns` or `examples` → Focus on common code patterns - No argument → Provide overview of the 3-tool workflow ## The 3-Tool Workflow ## Key Concepts | Concept | Description | |---------|-------------| | **Semantic Search** | Serena-powered with BM25...
You are teaching Tool Executor usage with clear examples and explanations.
workflow or tools → Focus on search_tools → get_tool_schema → execute_code flowworkspace → Focus on workspace API methodsmcp or clients → Focus on available MCP clients and usage patternspatterns or examples → Focus on common code patterns1. search_tools("what you want to do")
→ Returns ranked list of relevant tools
2. get_tool_schema("tool_name")
→ Returns full inputSchema for the tool
3. execute_code(`
const result = await mcp.tool_name({...});
workspace.write("output.json", result);
`)
→ Runs TypeScript in sandbox with MCP clients
| Concept | Description |
|---|---|
| Semantic Search | Serena-powered with BM25 fallback over 102 tools |
| Workspace API | Sandboxed file operations in ./workspace/ |
| Lazy Loading | MCP clients connect on first use, disconnect after 3 mins |
| Context Efficiency | Large responses (>200 chars) auto-saved to workspace |
./workspace/npx claudepluginhub espalier-redoubt/claudikins-tool-executor/te-guideTeaches the Tool Executor 3-tool workflow (search_tools, get_tool_schema, execute_code) with workspace API and MCP client usage. Also supports workspace, MCP, and patterns subtopics.
/adaptive-workflowDiscovers available workflows via MCP, analyzes user request intent and requirements, selects the best match, and executes with JIT resource loading.
/use-mcpInvokes the MCP command as defined in .claude/commands/use-mcp.md, enabling MCP usage within Claude Code.
/freainerAutomates Claude Code setup by installing Context7, Playwright, and Draw.io MCPs; configuring LSP servers based on project type; adding notification hooks, env vars, and LSP rules.
/autoRoutes natural language requests to the optimal workflow (research, debug, TDD, security, etc.). Also supports direct invocation of any /octo:* command.
/runParses and executes legacy inline orchestration workflow syntax supporting raw operators, YAML frontmatter templates, and temporary AI agents with model overrides.