@getmonoceros/workbench 1.0.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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Thorsten Kamann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # `@getmonoceros/workbench`
2
+
3
+ CLI für [Monoceros](https://github.com/getmonoceros/workbench) —
4
+ eine Werkbank für lokale, reproduzierbare Dev-Container mit
5
+ AI-Coding-Tooling als erstklassige Bürger (Claude Code, Atlassian
6
+ CLIs, GitHub CLI; weitere folgen).
7
+
8
+ ## Voraussetzungen
9
+
10
+ - **Docker** — erreichbar als Daemon, nicht nur installiert
11
+ - **Node ≥ 20** (mit `npm`)
12
+
13
+ Wer eines davon nicht hat, kann Monoceros nicht installieren. Die
14
+ Install-Skripte (`install.sh`, `install.ps1`) im Repo-Root prüfen
15
+ das vorab und geben plattform-spezifische Anleitung aus.
16
+
17
+ ## Installation
18
+
19
+ ```sh
20
+ npm install -g @getmonoceros/workbench
21
+ ```
22
+
23
+ Oder über das Install-Skript:
24
+
25
+ ```sh
26
+ curl -fsSL https://raw.githubusercontent.com/getmonoceros/workbench/main/install.sh | sh
27
+ ```
28
+
29
+ Windows: das passende `install.ps1` über PowerShell.
30
+
31
+ ## Erste Schritte
32
+
33
+ ```sh
34
+ monoceros init hello --with=node,claude
35
+ # Tokens / Defaults in ~/.monoceros/monoceros-config.yml eintragen
36
+ monoceros apply hello
37
+ monoceros shell hello
38
+ ```
39
+
40
+ Volle Befehlsreferenz unter
41
+ [docs/commands/](https://github.com/getmonoceros/workbench/tree/main/docs/commands).
42
+
43
+ ## Lizenz
44
+
45
+ MIT — siehe `LICENSE` im Repository-Root.