wicked-studio 0.1.0 → 0.2.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 +19 -0
- package/dist/assets/index-CCwXa1cn.js +428 -0
- package/dist/assets/index-HWxo0h41.css +32 -0
- package/dist/index.html +2 -2
- package/package.json +3 -3
- package/dist/assets/index-BTAaMKh2.js +0 -423
- package/dist/assets/index-DaaUU8Ep.css +0 -32
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# wicked-studio
|
|
2
2
|
|
|
3
|
+
> **v0.1.0** · [](https://github.com/mikeparcewski/wicked-studio/actions/workflows/ci.yml) · [](./LICENSE)
|
|
4
|
+
|
|
3
5
|
**The coder-facing skin of the wicked experience plane.** A React SPA that is a *pure HTTP/WS
|
|
4
6
|
client* of the [wicked-crew](https://github.com/mikeparcewski/wicked-crew) daemon: launch and
|
|
5
7
|
steer governed agent runs, answer human gates, watch live CoreEvent streams, browse projects,
|
|
@@ -83,6 +85,23 @@ the code as-is and preserved the package's full in-monorepo history via `git sub
|
|
|
83
85
|
(92 commits). An earlier, pre-consolidation incarnation of this product is archived read-only at
|
|
84
86
|
[wicked-studio-archived](https://github.com/mikeparcewski/wicked-studio-archived).
|
|
85
87
|
|
|
88
|
+
## Requirements
|
|
89
|
+
|
|
90
|
+
- Node.js ≥ 22.0.0
|
|
91
|
+
- npm ≥ 10 (for workspaces and `prepare` hooks)
|
|
92
|
+
- A running [wicked-crew](https://github.com/mikeparcewski/wicked-crew) daemon (v0.4.0+) for the SPA to connect to
|
|
93
|
+
- A modern browser (Chrome, Edge, Firefox, Safari)
|
|
94
|
+
- macOS, Linux, or Windows
|
|
95
|
+
|
|
96
|
+
## Contributing
|
|
97
|
+
|
|
98
|
+
1. Fork the repo and create a feature branch.
|
|
99
|
+
2. `npm install && npm run dev` — SPA on `:4200`, daemon on `:7701`.
|
|
100
|
+
3. `npm test && npm run typecheck && npm run lint` before committing.
|
|
101
|
+
4. Open a PR; CI runs all four gates on ubuntu / macos / windows.
|
|
102
|
+
|
|
103
|
+
The only external coupling is the wire contract (`wicked-crew-api-types`). Studio imports **zero** crew source — all crew interaction goes through `/api/v1` and `/ws`. Keep it that way.
|
|
104
|
+
|
|
86
105
|
## License
|
|
87
106
|
|
|
88
107
|
MIT
|