@lunarmoon26/dal-modes 0.1.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.
Files changed (2) hide show
  1. package/cordis.patch.yml +23 -0
  2. package/package.json +20 -0
@@ -0,0 +1,23 @@
1
+ # DSH Adaptive Loop modes bundle, applied as one insert over the profile's
2
+ # empty root. Later bundle patches and the profile's own cordis.patch.yml
3
+ # address these rows by id, with the last write winning per row.
4
+ #
5
+ # Run mode (evidence recording) is the default posture: enabled here. The
6
+ # improvement-mode workbench tools ship disabled; a workbench profile enables
7
+ # the row in its own layer:
8
+ #
9
+ # - id: dal-improve-tools
10
+ # name: '@lunarmoon26/dal-improve-tools'
11
+ #
12
+ # Mounting this bundle into a profile is an approval-gated
13
+ # install_or_mount_plugin operation.
14
+
15
+ - insert:
16
+ - id: dal-run-record
17
+ name: '@lunarmoon26/dal-run-record'
18
+ config:
19
+ storeRoot: .dal/runs
20
+
21
+ - id: dal-improve-tools
22
+ name: '@lunarmoon26/dal-improve-tools'
23
+ disabled: true
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@lunarmoon26/dal-modes",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "DSH Adaptive Loop plugin-mode bundle: run-mode evidence recording (on by default) and improvement-mode workbench tools (off by default; a workbench profile enables the row in its own cordis.patch.yml).",
6
+ "license": "MIT",
7
+ "files": [
8
+ "cordis.patch.yml"
9
+ ],
10
+ "dsh": {
11
+ "bundle": {
12
+ "patch": "./cordis.patch.yml"
13
+ }
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/lunarmoon26/dsh-adaptive-loop.git",
18
+ "directory": "plugins/dal-modes"
19
+ }
20
+ }