From 8dc9c966065d32af37990080f18318706e16c69c Mon Sep 17 00:00:00 2001 From: chahinebrini Date: Wed, 24 Jun 2026 23:47:56 +0200 Subject: [PATCH] docs(readme): add readme and publish config --- README.md | 28 ++++++++++++++++++++++++++++ package.json | 3 +++ 2 files changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..316a3a1 --- /dev/null +++ b/README.md @@ -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 diff --git a/package.json b/package.json index f68337f..87fa84c 100644 --- a/package.json +++ b/package.json @@ -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" },