@getmonoceros/workbench 1.14.1 → 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 +19 -20
- package/dist/bin.js +4276 -2748
- package/dist/bin.js.map +1 -1
- package/features/atlassian/devcontainer-feature.json +13 -1
- package/features/claude-code/devcontainer-feature.json +8 -1
- package/features/github-cli/devcontainer-feature.json +8 -1
- package/package.json +1 -1
- package/templates/components/README.md +13 -13
package/README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# `@getmonoceros/workbench`
|
|
2
2
|
|
|
3
|
-
CLI
|
|
4
|
-
|
|
5
|
-
AI
|
|
6
|
-
CLIs, GitHub CLI;
|
|
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
|
-
##
|
|
8
|
+
## Requirements
|
|
9
9
|
|
|
10
|
-
- **Docker** —
|
|
11
|
-
- **Node ≥ 20** (
|
|
10
|
+
- **Docker** — reachable as a daemon, not just installed
|
|
11
|
+
- **Node ≥ 20** (with `npm`)
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
|
|
30
|
-
`npm install -g`,
|
|
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
|
-
##
|
|
32
|
+
## Getting started
|
|
34
33
|
|
|
35
34
|
```sh
|
|
36
|
-
monoceros init hello --with=node
|
|
37
|
-
#
|
|
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
|
-
|
|
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
|
-
|
|
48
|
+
Full command reference at
|
|
50
49
|
[docs/commands/](https://github.com/getmonoceros/workbench/tree/main/docs/commands).
|
|
51
50
|
|
|
52
|
-
##
|
|
51
|
+
## License
|
|
53
52
|
|
|
54
|
-
MIT —
|
|
53
|
+
MIT — see `LICENSE` in the repository root.
|