Add comprehensive development roadmap via GitHub Issues

Created 10 detailed GitHub issues covering:
- Project activation and management UI (#1-2)
- Worker node coordination and visualization (#3-4)
- Automated GitHub repository scanning (#5)
- Intelligent model-to-issue matching (#6)
- Multi-model task execution system (#7)
- N8N workflow integration (#8)
- Hive-Bzzz P2P bridge (#9)
- Peer assistance protocol (#10)

Each issue includes detailed specifications, acceptance criteria,
technical implementation notes, and dependency mapping.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-07-12 19:41:01 +10:00
parent 9a6a06da89
commit e89f2f4b7b
4980 changed files with 1501266 additions and 57 deletions

View File

@@ -17,7 +17,9 @@
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test && npm run test:e2e"
"test:all": "npm run test && npm run test:e2e",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
@@ -45,6 +47,9 @@
},
"devDependencies": {
"@playwright/test": "^1.54.0",
"@storybook/addon-docs": "^9.0.16",
"@storybook/addon-onboarding": "^9.0.16",
"@storybook/react-vite": "^9.0.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
@@ -59,11 +64,13 @@
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^9.0.16",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.4.32",
"storybook": "^9.0.16",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.4.0",
"typescript": "^5.6.3",
@@ -80,5 +87,10 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}