UNPKG

cctoolstats

Version:

Claude Codeのツール呼び出し/サブエージェント実行履歴の統計を分かりやすく表示するCLIツール

21 lines 555 B
#!/usr/bin/env node /** * cctoolstats CLI - Commander.js version * Command-line interface for analyzing Claude Code tool usage */ export declare function run(argv: string[]): Promise<void>; export interface CliArgs { paths: string[]; format: string; output?: string; verbose: boolean; help: boolean; version: boolean; color?: boolean; thousandSeparator: boolean; current: boolean; all: boolean; project?: string; } export declare function parseArgs(args: string[]): CliArgs; //# sourceMappingURL=cli.d.ts.map