@getmonoceros/workbench 1.5.0 → 1.5.1

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
@@ -18,7 +18,7 @@ das vorab und geben plattform-spezifische Anleitung aus.
18
18
 
19
19
  ```sh
20
20
  # macOS / Linux
21
- curl -fsSL https://raw.githubusercontent.com/getmonoceros/workbench/main/install.sh | sh
21
+ curl -fsSL https://raw.githubusercontent.com/getmonoceros/workbench/main/install.sh | bash
22
22
  ```
23
23
 
24
24
  ```powershell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmonoceros/workbench",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Monoceros workbench CLI — local, reproducible dev containers with first-class AI coding tooling.",
5
5
  "keywords": [
6
6
  "devcontainer",
@@ -1,43 +1,46 @@
1
- # Monoceros — sample for monoceros-config.yml.
1
+ # Monoceros — global defaults for `monoceros apply`.
2
2
  #
3
- # To activate: copy this file alongside as `monoceros-config.yml` and
4
- # edit the values you actually want. The real file is read by every
5
- # `monoceros apply <name>` and provides defaults that container ymls
6
- # don't override.
3
+ # This file is optional. Without it, every container yml stands on
4
+ # its own and `monoceros apply` falls back to prompts (for git
5
+ # identity) or omits the option (for feature credentials). With it,
6
+ # the values below act as defaults that container ymls can still
7
+ # override per-container.
7
8
  #
8
- # This sample stays as a reference never delete it; we leave it in
9
- # place so you can see the schema at a glance.
10
-
11
- schemaVersion: 1
12
-
13
- defaults:
14
- # Git identity for any container the host hasn't already configured.
15
- # Container yml's `git.user` overrides this; `git config --global`
16
- # on the host overrides both. Removed entirely → `monoceros apply`
17
- # prompts at first run and persists the answer per container.
18
- git:
19
- user:
20
- name: Your Name
21
- email: you@example.com
9
+ # Everything below is commented out so a freshly-installed Monoceros
10
+ # behaves like there's no file. Uncomment the sections you actually
11
+ # want — partial use is fine, you don't need every block.
12
+ #
13
+ # To verify what the resolved config looks like after edits:
14
+ # monoceros init --dry-run <name>
22
15
 
23
- # Default options for Monoceros-curated devcontainer features,
24
- # keyed by the OCI ref. Per-container yml options override these.
25
- # The feature itself decides what to do with the values (typically
26
- # a post-create hook does a non-interactive login).
27
- #
28
- # Uncomment and fill in the parts you actually use.
29
- # features:
30
- # ghcr.io/getmonoceros/monoceros-features/claude-code:1:
31
- # apiKey: sk-ant-… # set → API auth; omit → OAuth/subscription login inside the container
32
- #
33
- # ghcr.io/getmonoceros/monoceros-features/github-cli:1:
34
- # apiToken: ghp_… # PAT with scopes: repo, read:org, gist
35
- #
36
- # ghcr.io/getmonoceros/monoceros-features/atlassian:1:
37
- # # Both CLIs are on by default toggle individually:
38
- # # rovodev: false # `acli rovodev` (Rovo Dev agent)
39
- # # twg: false # `twg` (Teamwork Graph)
40
- # instance: yoursite.atlassian.net # required for twg auto-login
41
- # email: you@example.com
42
- # apiToken: ATATT3xFf…
43
- # # bitbucketToken: ATBB… # optional, only for twg's Bitbucket commands
16
+ # schemaVersion: 1
17
+ #
18
+ # defaults:
19
+ # # Git identity for any container the host hasn't already
20
+ # # configured. Container yml's `git.user` overrides this;
21
+ # # `git config --global` on the host overrides both. Removed →
22
+ # # `monoceros apply` prompts at first run and persists per container.
23
+ # git:
24
+ # user:
25
+ # name: Your Name
26
+ # email: you@example.com
27
+ #
28
+ # # Default options for Monoceros-curated devcontainer features,
29
+ # # keyed by OCI ref. Per-container yml options override these.
30
+ # # The feature itself decides what to do with the values (typically
31
+ # # a post-create hook does a non-interactive login).
32
+ # features:
33
+ # ghcr.io/getmonoceros/monoceros-features/claude-code:1:
34
+ # apiKey: sk-ant-… # set → API auth; omit → OAuth/subscription login inside the container
35
+ #
36
+ # ghcr.io/getmonoceros/monoceros-features/github-cli:1:
37
+ # apiToken: ghp_… # PAT with scopes: repo, read:org, gist
38
+ #
39
+ # ghcr.io/getmonoceros/monoceros-features/atlassian:1:
40
+ # # Both CLIs are on by default — toggle individually:
41
+ # # rovodev: false # `acli rovodev` (Rovo Dev agent)
42
+ # # twg: false # `twg` (Teamwork Graph)
43
+ # instance: yoursite.atlassian.net # required for twg auto-login
44
+ # email: you@example.com
45
+ # apiToken: ATATT3xFf…
46
+ # # bitbucketToken: ATBB… # optional, only for twg's Bitbucket commands