@getmonoceros/workbench 1.4.0 → 1.5.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/dist/bin.js +71 -25
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
- package/templates/monoceros-config.sample.yml +43 -0
package/package.json
CHANGED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Monoceros — sample for monoceros-config.yml.
|
|
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.
|
|
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.
|
|
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
|
|
22
|
+
|
|
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
|