UNPKG

@pimzino/claude-code-spec-workflow

Version:

Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent orchestration, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have

88 lines (87 loc) 2.64 kB
{ "name": "@pimzino/claude-code-spec-workflow", "version": "1.5.4", "description": "Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent orchestration, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have a bonus and option real time dashboard to monitor your specs and tasks.", "main": "dist/index.js", "bin": { "claude-code-spec-workflow": "dist/cli.js", "claude-spec-setup": "dist/cli.js", "claude-spec-dashboard": "dist/dashboard/cli.js" }, "scripts": { "clean": "rimraf dist", "build": "npm run clean && tsc && npm run copy-static", "copy-static": "node scripts/copy-static.js", "prepare": "npm run build", "dev": "ts-node src/cli.ts", "dev:dashboard": "ts-node src/dashboard/cli.ts", "test": "jest", "test:patterns": "jest tests/pattern-consistency.test.ts", "lint": "eslint src --ext .ts", "format": "prettier --write src" }, "keywords": [ "claude-code", "spec-workflow", "bug-fix-workflow", "orchestration", "requirements", "design", "tasks", "implementation", "ai-development", "automation", "development-workflow", "bug-tracking", "issue-resolution" ], "author": "Pimzino", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/pimzino/claude-code-spec-workflow.git" }, "bugs": { "url": "https://github.com/pimzino/claude-code-spec-workflow/issues" }, "homepage": "https://github.com/pimzino/claude-code-spec-workflow#readme", "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=16.0.0" }, "dependencies": { "@fastify/static": "^7.0.4", "@fastify/websocket": "^8.2.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "commander": "^12.1.0", "fastify": "^4.24.3", "inquirer": "^8.2.6", "open": "^8.4.2", "ora": "^5.4.1", "simple-git": "^3.28.0" }, "devDependencies": { "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.14", "@types/node": "^22.10.1", "@types/ws": "^8.5.13", "@typescript-eslint/eslint-plugin": "^8.18.0", "@typescript-eslint/parser": "^8.18.0", "eslint": "^9.17.0", "jest": "^29.7.0", "prettier": "^3.4.2", "rimraf": "^6.0.1", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "publishConfig": { "access": "public" } }