mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
- Convert 40 JS files to TypeScript (CLI, tools, core, MCP server) - Add Zod for runtime parameter validation - Add type definitions in src/types/ - Keep src/templates/ as JavaScript (dashboard frontend) - Update bin entries to use dist/ - Add tsconfig.json with strict mode - Add backward-compatible exports for tests - All 39 tests passing Breaking changes: None (backward compatible) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* CCW CLI - Claude Code Workflow Dashboard
|
|
* Entry point for global CLI installation
|
|
*/
|
|
|
|
import { run } from '../dist/cli.js';
|
|
|
|
run(process.argv);
|