clustr-ai 0.1.24 → 0.1.26

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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +8 -1
package/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # Clustr
2
2
 
3
- Local multi-agent workspace for AI coding.
3
+ Run multiple AI coding helpers from one local dashboard.
4
4
 
5
- Clustr lets you run Claude Code and Codex agents side by side, monitor them from a live dashboard, and give them MCP tools to collaborate across your codebase. Agents can message each other, share context, spawn teammates, track file changes, and coordinate work across frontend, backend, tests, docs, and services.
5
+ Clustr helps you split work across several AI agents, watch what each one is doing, and let them coordinate with each other. You can keep one agent on the frontend, another on the backend, another on tests or docs, and follow everything from one place.
6
+
7
+ You can also open your own command terminal for any agent's project folder. That means you can run things like `git status`, `npm test`, or `git pull` yourself without sending those commands to the AI.
6
8
 
7
9
  Website: [hiclustrmvp.vercel.app](https://hiclustrmvp.vercel.app/)
8
10
 
@@ -37,7 +39,8 @@ Clustr gives each agent a focused workspace and a shared coordination layer:
37
39
  - **Multi-agent orchestration** — spawn multiple coding agents and watch them work in parallel
38
40
  - **Inter-agent messaging** — agents can ask each other questions and hand off findings
39
41
  - **Shared context** — one agent can write discoveries that every other agent can read
40
- - **Live terminal dashboard** — inspect PTYs, logs, messages, file changes, and agent status
42
+ - **Live work dashboard** — see agents, conversations, file changes, and progress in one place
43
+ - **Your own command terminal** — run your own commands in the same project folder without the AI seeing them
41
44
  - **Claude + Codex support** — run different agent providers side by side
42
45
  - **Git checkpoints** — checkpoint before agent work and roll back if needed
43
46
  - **Mobile access** — pair a phone with a QR code and monitor your swarm away from your desk
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clustr-ai",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
4
4
  "description": "Local multi-agent workspace for Claude Code and Codex agents that collaborate across your codebase",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Clustr",
@@ -14,6 +14,13 @@
14
14
  "orchestration"
15
15
  ],
16
16
  "homepage": "https://hiclustrmvp.vercel.app/",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/dash2199/clustr.git"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/dash2199/clustr/issues"
23
+ },
17
24
  "engines": {
18
25
  "node": ">=18.0.0"
19
26
  },