hanoman 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -0
- package/dist/build-info.json +3 -3
- package/dist/cli.js +22220 -324
- package/dist/server.js +4253 -1778
- package/package.json +1 -1
- package/prisma/migrations/20260801190000_lead_choice/migration.sql +13 -0
- package/prisma/migrations/20260801220000_webhook/migration.sql +48 -0
- package/prisma/schema.prisma +61 -0
- package/web/assets/{index-D8IVSqJP.js → index-W4J6iiyI.js} +1614 -1553
- package/web/index.html +1 -1
package/README.md
CHANGED
|
@@ -32,9 +32,36 @@ hanoman [start] jalankan (migrasi + server + dashboard)
|
|
|
32
32
|
hanoman doctor periksa prasyarat
|
|
33
33
|
hanoman update [--check] pasang versi terbaru dari npm
|
|
34
34
|
hanoman migrate-from-postgres --from <url> [--to <file>] [--dry-run] [--force]
|
|
35
|
+
hanoman mcp [--read-only] MCP server stdio untuk klien AI
|
|
36
|
+
[--host <url>] [--max-bytes <n>]
|
|
35
37
|
hanoman docs scan | index | link operasi index Source of Truth
|
|
36
38
|
```
|
|
37
39
|
|
|
40
|
+
## Dipakai agen AI (MCP)
|
|
41
|
+
|
|
42
|
+
Agen AI mana pun yang berbicara MCP — Claude Code, Claude Desktop, Codex, Cursor, Copilot — bisa
|
|
43
|
+
membaca dan menulis backlog hanoman lewat `hanoman mcp`, tanpa kode pembungkus khusus. Buat agent
|
|
44
|
+
token di **Settings → Akses AI Agent**, lalu:
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"mcpServers": {
|
|
49
|
+
"hanoman": {
|
|
50
|
+
"command": "hanoman",
|
|
51
|
+
"args": ["mcp"],
|
|
52
|
+
"env": {
|
|
53
|
+
"HANOMAN_HOST": "http://localhost:8787",
|
|
54
|
+
"HANOMAN_AGENT_TOKEN": "hnm_agt_…"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Panduan siap salin per klien ada di halaman Settings itu sendiri. Tambahkan `--read-only` untuk
|
|
62
|
+
menyembunyikan seluruh tool yang menulis. Membuat sesi terminal dan perintah VPS **tidak tersedia**
|
|
63
|
+
lewat MCP.
|
|
64
|
+
|
|
38
65
|
## Update
|
|
39
66
|
|
|
40
67
|
Dari dashboard: badge **Update** di kanan atas → **Pasang & mulai ulang** → konfirmasi. hanoman
|
package/dist/build-info.json
CHANGED