@getmonoceros/workbench 1.15.0 → 1.16.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 CHANGED
@@ -1,18 +1,18 @@
1
1
  # `@getmonoceros/workbench`
2
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).
3
+ CLI for [Monoceros](https://github.com/getmonoceros/workbench) —
4
+ a workbench for local, reproducible dev containers with
5
+ AI coding tooling as first-class citizens (Claude Code, Atlassian
6
+ CLIs, GitHub CLI; more to come).
7
7
 
8
- ## Voraussetzungen
8
+ ## Requirements
9
9
 
10
- - **Docker** — erreichbar als Daemon, nicht nur installiert
11
- - **Node ≥ 20** (mit `npm`)
10
+ - **Docker** — reachable as a daemon, not just installed
11
+ - **Node ≥ 20** (with `npm`)
12
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.
13
+ If you don't have one of these, you can't install Monoceros. The
14
+ install scripts (`install.sh`, `install.ps1`) in the repo root check
15
+ this up front and print platform-specific guidance.
16
16
 
17
17
  ## Installation
18
18
 
@@ -26,29 +26,28 @@ curl -fsSL https://raw.githubusercontent.com/getmonoceros/workbench/main/install
26
26
  iwr -useb https://raw.githubusercontent.com/getmonoceros/workbench/main/install.ps1 | iex
27
27
  ```
28
28
 
29
- Das Skript prüft Docker + Node, installiert das Paket global via
30
- `npm install -g`, und richtet die Shell-Completion für deine Shell
31
- ein.
29
+ The script checks Docker + Node, installs the package globally via
30
+ `npm install -g`, and sets up shell completion for your shell.
32
31
 
33
- ## Erste Schritte
32
+ ## Getting started
34
33
 
35
34
  ```sh
36
- monoceros init hello --with=node,claude
37
- # Tokens / Defaults in ~/.monoceros/monoceros-config.yml eintragen
35
+ monoceros init hello --with-languages=node --with-features=claude
36
+ # Add tokens / defaults to ~/.monoceros/monoceros-config.yml
38
37
  monoceros apply hello
39
38
  monoceros shell hello
40
39
  ```
41
40
 
42
- Tab-Completion einmalig einrichten:
41
+ Set up tab completion once:
43
42
 
44
43
  ```sh
45
44
  monoceros completion zsh > ~/.oh-my-zsh/completions/_monoceros # zsh
46
45
  monoceros completion bash > ~/.bash_completion.d/monoceros # bash
47
46
  ```
48
47
 
49
- Volle Befehlsreferenz unter
48
+ Full command reference at
50
49
  [docs/commands/](https://github.com/getmonoceros/workbench/tree/main/docs/commands).
51
50
 
52
- ## Lizenz
51
+ ## License
53
52
 
54
- MIT — siehe `LICENSE` im Repository-Root.
53
+ MIT — see `LICENSE` in the repository root.