From tac
Lists Claude Code tools as TypeScript signatures with parameters, capabilities, permissions, restrictions, and MCP servers. Use to check availability before tasks.
npx claudepluginhub melodic-software/claude-code-plugins --plugin tacThis skill is limited to using the following tools:
List all available tools showing their parameters, capabilities, and typical use cases.
Handles file reads, writes, edits, directory listings, searches, trees via Claude Code's Read, Write, Edit, Glob, Grep, Bash tools. Replaces Filesystem MCP server; triggers on 'read file', 'list directory'.
Lists Claude Code default tools by category and agent tool access configurations including whitelists, blacklists, MCP customs, patterns, and token warnings.
Configures tool permissions for Claude Code agents via --allowedTools flags, path patterns for file access, and Bash command prefixes. Reference for secure launches.
Share bugs, ideas, or general feedback.
List all available tools showing their parameters, capabilities, and typical use cases.
Format the output as TypeScript function signatures for clarity:
// Core File Operations
Read(file_path: string, offset?: number, limit?: number): string
Write(file_path: string, content: string): void
Edit(file_path: string, old_string: string, new_string: string): void
// Search Operations
Glob(pattern: string, path?: string): string[]
Grep(pattern: string, path?: string, options?: GrepOptions): string[]
// Execution
Bash(command: string, timeout?: number): { stdout: string, stderr: string }
// Web Operations
WebFetch(url: string, prompt: string): string
WebSearch(query: string): SearchResult[]
// Agent Operations
Task(prompt: string, subagent_type: string): string
// MCP Tools (if configured)
// List any available MCP server tools
After listing tools, note:
This helps understand current capabilities before starting a task.