mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
- Introduced `ccw-mcp` command for running CCW tools as an MCP server. - Updated `package.json` to include new MCP dependencies and scripts. - Enhanced CLI with new options for `codex_lens` tool. - Implemented MCP server logic to expose CCW tools via Model Context Protocol. - Added new tools and updated existing ones for better functionality and documentation. - Created quick start and full documentation for MCP server usage. - Added tests for MCP server functionality to ensure reliability.
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "ccw",
|
|
"version": "6.1.4",
|
|
"description": "Claude Code Workflow CLI - Dashboard viewer for workflow sessions and reviews",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"ccw": "./bin/ccw.js",
|
|
"ccw-mcp": "./bin/ccw-mcp.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test tests/*.test.js",
|
|
"test:codexlens": "node --test tests/codex-lens*.test.js",
|
|
"test:mcp": "node --test tests/mcp-server.test.js",
|
|
"lint": "eslint src/"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"workflow",
|
|
"cli",
|
|
"dashboard",
|
|
"code-review"
|
|
],
|
|
"author": "Claude Code Workflow",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"boxen": "^7.1.0",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^11.0.0",
|
|
"figlet": "^1.7.0",
|
|
"glob": "^10.3.0",
|
|
"gradient-string": "^2.0.2",
|
|
"inquirer": "^9.2.0",
|
|
"open": "^9.1.0",
|
|
"ora": "^7.0.0"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"src/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/claude-code-workflow/ccw"
|
|
}
|
|
}
|