coxpit 4.5.0 → 4.7.0
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 +9 -1
- package/package.json +1 -1
- package/src/board.ts +944 -61
- package/src/db/index.ts +3 -0
- package/src/db/schema.ts +2 -0
- package/src/orchestrator.ts +453 -7
- package/src/server.ts +251 -8
package/README.md
CHANGED
|
@@ -114,7 +114,15 @@ One daemon, one SQLite file, zero external services. Machines are reached over S
|
|
|
114
114
|
|
|
115
115
|
## Status
|
|
116
116
|
|
|
117
|
-
`v4.
|
|
117
|
+
`v4.5` — **greenfield + remote access**. Point Coxpit at an empty folder and a fleet scaffolds a brand-new project across N agents on an empty initial commit — compare the foundations, keep the best (existing folders are never touched). Remote access detects your Tailscale and puts the board on `https://<machine>.<tailnet>.ts.net` in one click (Funnel for public, behind a warning; copy-paste Cloudflare/Caddy recipes otherwise) — Coxpit drives the tool, never hosts a relay. Builds on v4.3's Active-first board + Archive. All shipped and e2e-tested (45 checks). Roadmap: ROADMAP.md.
|
|
118
|
+
|
|
119
|
+
## Contributing
|
|
120
|
+
|
|
121
|
+
Issues and PRs are welcome. Start with **[CONTRIBUTING.md](CONTRIBUTING.md)** for
|
|
122
|
+
dev setup (`COXPIT_AUTH_DISABLED=1 npm run dev`), the verify gate (`npm run
|
|
123
|
+
typecheck` + `bash test/e2e.sh`), and the house rules. Please read the
|
|
124
|
+
[non-goals](ROADMAP.md#non-goals) before proposing a feature, and report security
|
|
125
|
+
issues privately per **[SECURITY.md](SECURITY.md)** (Coxpit exposes shells).
|
|
118
126
|
|
|
119
127
|
## License
|
|
120
128
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coxpit",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "Self-hosted cockpit for running a fleet of AI coding agents across your own machines — parallel worktree runs, live board, compare & merge, web terminal, design capture.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|