Files
extension/packages/dev/package.json
T
Hanzo Dev a12d455b02 feat: Add Dev CLI with multi-agent orchestration and comprehensive testing
- Implement multi-agent orchestration system for parallel AI tasks
- Add role-based AI assignment (coder, reviewer, critic, architect, etc)
- Create predefined workflows (code-review, implement-feature, optimize, debug)
- Add local LLM support with auto-detection (Ollama, LocalAI, etc)
- Implement async job management with idle timeout
- Add authentication system with OAuth2 PKCE flow
- Create comprehensive test suite with integration tests
- Add headless Chrome testing for auth flows
- Create mock AI server for testing all endpoints
- Add visual test runners and demo scripts
- Update CI/CD pipeline for all services
- Rename CLI from 'hanzo-dev' to 'dev' for simplicity
- Update repository references to github.com/hanzoai/dev

Key features:
- Parallel execution of multiple AI agents
- Git worktree support for isolated development
- Universal context sync across tools
- Secure API key management
- Comprehensive workflow system
2025-07-08 18:33:08 -04:00

59 lines
1.2 KiB
JSON

{
"name": "@hanzo/dev",
"version": "1.0.0",
"description": "Hanzo Dev - Meta AI development CLI that manages and runs all LLMs and CLI tools",
"main": "dist/index.js",
"bin": {
"dev": "./dist/cli/dev.js",
"hanzo-dev": "./dist/cli/dev.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"llm",
"cli",
"claude",
"openai",
"gemini",
"aider",
"openhands",
"development",
"tools"
],
"author": "Hanzo AI",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/node": "^20.19.5",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hanzoai/dev.git",
"directory": "packages/dev"
},
"homepage": "https://hanzo.ai",
"bugs": {
"url": "https://github.com/hanzoai/dev/issues"
}
}