@getmonoceros/workbench 1.5.0 → 1.5.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmonoceros/workbench",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "Monoceros workbench CLI — local, reproducible dev containers with first-class AI coding tooling.",
5
5
  "keywords": [
6
6
  "devcontainer",
@@ -1,31 +1,34 @@
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. The top two keys (schemaVersion, defaults)
4
+ # are uncommented so the file parses as valid YAML out of the box;
5
+ # every actual setting under `defaults` is commented out, so a
6
+ # fresh-installed Monoceros behaves like there's no file at all.
7
7
  #
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.
8
+ # To set a value: uncomment one block (git, features, ...) remove
9
+ # the leading "# " from each line of that block. The keys above
10
+ # (schemaVersion + defaults) stay as-is.
11
+ #
12
+ # To verify what the resolved config looks like after edits:
13
+ # monoceros init --dry-run <name>
10
14
 
11
15
  schemaVersion: 1
12
16
 
13
17
  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
18
+ # Git identity for any container the host hasn't already
19
+ # configured. Container yml's `git.user` overrides this;
20
+ # `git config --global` on the host overrides both. Removed →
21
+ # `monoceros apply` prompts at first run and persists per
22
+ # container.
23
+ # git:
24
+ # user:
25
+ # name: Your Name
26
+ # email: you@example.com
22
27
 
23
28
  # Default options for Monoceros-curated devcontainer features,
24
- # keyed by the OCI ref. Per-container yml options override these.
29
+ # keyed by OCI ref. Per-container yml options override these.
25
30
  # The feature itself decides what to do with the values (typically
26
31
  # a post-create hook does a non-interactive login).
27
- #
28
- # Uncomment and fill in the parts you actually use.
29
32
  # features:
30
33
  # ghcr.io/getmonoceros/monoceros-features/claude-code:1:
31
34
  # apiKey: sk-ant-… # set → API auth; omit → OAuth/subscription login inside the container