coxpit 5.10.0 → 5.12.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/LICENSE.md +717 -0
- package/README.md +5 -1
- package/package.json +2 -2
- package/src/cockpit.ts +429 -163
- package/src/db/index.ts +1 -0
- package/src/db/schema.ts +1 -0
- package/src/orchestrator.ts +53 -1
- package/src/server.ts +26 -1
- package/LICENSE +0 -21
package/README.md
CHANGED
|
@@ -145,7 +145,11 @@ issues privately per **[SECURITY.md](SECURITY.md)** (Coxpit exposes shells).
|
|
|
145
145
|
|
|
146
146
|
## License
|
|
147
147
|
|
|
148
|
-
|
|
148
|
+
Coxpit is free and open source under the **AGPLv3 with additional terms** (trademark and
|
|
149
|
+
attribution). Use it, run it, modify it. If you run a modified version as a network service,
|
|
150
|
+
publish your source. Do not ship a fork under the name "Coxpit".
|
|
151
|
+
|
|
152
|
+
Releases before 2026-09-02 were MIT and stay MIT. See [LICENSE.md](LICENSE.md).
|
|
149
153
|
|
|
150
154
|
Icons — [Lucide](https://lucide.dev) (ISC). Paths are inlined as an SVG `<symbol>` sprite (no runtime dependency); the ISC notice is kept in [`licenses/lucide.txt`](licenses/lucide.txt).
|
|
151
155
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coxpit",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.12.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
|
-
"license": "
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/hanmariyang/coxpit-oss.git"
|