Files
Claude-Code-Workflow/package.json
catlog22 8203d690cb fix: CodexLens model detection, hybrid search stability, and JSON logging
- Fix model installation detection using fastembed ONNX cache names
- Add embeddings_config table for model metadata tracking
- Fix hybrid search segfault by using single-threaded GPU mode
- Suppress INFO logs in JSON mode to prevent error display
- Add model dropdown filtering to show only installed models

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-22 21:49:10 +08:00

74 lines
1.7 KiB
JSON

{
"name": "claude-code-workflow",
"version": "6.2.7",
"description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
"type": "module",
"main": "ccw/src/index.js",
"bin": {
"ccw": "./ccw/bin/ccw.js"
},
"scripts": {
"start": "node ccw/bin/ccw.js",
"test": "node --test",
"prepublishOnly": "echo 'Ready to publish @dyw/claude-code-workflow'"
},
"keywords": [
"claude",
"workflow",
"ai",
"cli",
"dashboard",
"code-review",
"automation",
"development"
],
"author": "dyw",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"better-sqlite3": "^11.7.0",
"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",
"zod": "^4.1.13"
},
"files": [
"ccw/bin/",
"ccw/dist/",
"ccw/src/",
"ccw/package.json",
".claude/agents/",
".claude/commands/",
".claude/output-styles/",
".claude/workflows/",
".claude/scripts/",
".claude/prompt-templates/",
".claude/python_script/",
".claude/skills/",
".codex/",
".gemini/",
".qwen/",
"codex-lens/src/codexlens/",
"codex-lens/pyproject.toml",
"CLAUDE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/catlog22/Claude-Code-Workflow.git"
},
"bugs": {
"url": "https://github.com/catlog22/Claude-Code-Workflow/issues"
},
"homepage": "https://github.com/catlog22/Claude-Code-Workflow#readme"
}