docs(readme): add readme and publish config

This commit is contained in:
chahinebrini 2026-06-24 23:47:56 +02:00
parent 1197d85fdc
commit 8dc9c96606
2 changed files with 31 additions and 0 deletions

28
README.md Normal file
View File

@ -0,0 +1,28 @@
# AgentHub
Local coordination layer for AI coding agents.
## Install
```bash
npx agenthub init
```
## Quick Start
```bash
agenthub init
agenthub task create --title "Implement DNS cache" --role implementer
agenthub handoff create --fromRole architect --toRole implementer
agenthub status --update
```
## Supported Agents
- Claude Code
- Codex CLI
- Kimi Code CLI
## License
MIT

View File

@ -3,6 +3,9 @@
"version": "0.1.0",
"description": "Local coordination layer for AI coding agents",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "bin"],
"bin": {
"agenthub": "./bin/agenthub.js"
},