@getmonoceros/workbench 1.5.1 → 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/dist/bin.js +6 -1
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
- package/templates/monoceros-config.sample.yml +39 -39
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
# Monoceros — global defaults for `monoceros apply`.
|
|
2
2
|
#
|
|
3
|
-
# This file is optional.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
7
|
-
# override per-container.
|
|
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.
|
|
8
7
|
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
11
|
-
#
|
|
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.
|
|
12
11
|
#
|
|
13
12
|
# To verify what the resolved config looks like after edits:
|
|
14
13
|
# monoceros init --dry-run <name>
|
|
15
14
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
#
|
|
28
|
-
|
|
29
|
-
#
|
|
30
|
-
#
|
|
31
|
-
#
|
|
32
|
-
#
|
|
33
|
-
#
|
|
34
|
-
#
|
|
35
|
-
#
|
|
36
|
-
#
|
|
37
|
-
#
|
|
38
|
-
#
|
|
39
|
-
#
|
|
40
|
-
#
|
|
41
|
-
#
|
|
42
|
-
#
|
|
43
|
-
#
|
|
44
|
-
#
|
|
45
|
-
#
|
|
46
|
-
#
|
|
15
|
+
schemaVersion: 1
|
|
16
|
+
|
|
17
|
+
defaults:
|
|
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
|
|
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
|