@medicine-wheel/gap-analysis 0.6.1 → 0.6.3
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/ALPHA.md +13 -10
- package/README.md +2 -2
- package/package.json +2 -2
package/ALPHA.md
CHANGED
|
@@ -3,25 +3,28 @@
|
|
|
3
3
|
**Read this before depending on anything here.**
|
|
4
4
|
|
|
5
5
|
The Medicine Wheel Developer Suite is under active development and is published
|
|
6
|
-
in the open so the work can be examined, discussed, and improved. It
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
in the open so the work can be examined, discussed, and improved. It now
|
|
7
|
+
includes a usable app, CLI, MCP server, and a growing set of composable
|
|
8
|
+
libraries, but its public contracts are not yet stable. Publishing early is
|
|
9
|
+
deliberate — and so is telling you what you are installing.
|
|
9
10
|
|
|
10
11
|
## What that means concretely
|
|
11
12
|
|
|
12
|
-
- **APIs change between patch versions.**
|
|
13
|
-
|
|
14
|
-
what you depend on. Pin exact
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
- **APIs can change between patch versions.** Most packages move together while
|
|
14
|
+
the MCP package keeps its own major version, so a bump you would normally read
|
|
15
|
+
as "nothing changed for me" may still change what you depend on. Pin exact
|
|
16
|
+
versions.
|
|
17
|
+
- **Packages appear, and their boundaries move.** The suite has grown beyond
|
|
18
|
+
its first library packages, and where a responsibility lives is still being
|
|
19
|
+
refined.
|
|
17
20
|
- **Some packages are intentionally small first cuts.** They express an
|
|
18
21
|
intention with a working minimum rather than a finished surface. Their
|
|
19
22
|
READMEs say so where it applies.
|
|
20
23
|
- **Storage shapes are still settling.** Records written by one version may
|
|
21
24
|
need repair by a later one. Do not treat any store here as an archive of
|
|
22
25
|
record yet.
|
|
23
|
-
- **
|
|
24
|
-
floor, not a claim of completeness.
|
|
26
|
+
- **Automated tests and release checks are in place, but coverage is uneven.**
|
|
27
|
+
Passing checks are a floor, not a claim of completeness.
|
|
25
28
|
|
|
26
29
|
## What it does *not* mean
|
|
27
30
|
|
package/README.md
CHANGED
|
@@ -52,8 +52,8 @@ import { openGapAnalysis, addStep, doorAdvice } from '@medicine-wheel/gap-analys
|
|
|
52
52
|
|
|
53
53
|
let analysis = openGapAnalysis(
|
|
54
54
|
{ description: 'the published image matched the published packages',
|
|
55
|
-
evidence: 'true
|
|
56
|
-
{ description: 'newest
|
|
55
|
+
evidence: 'true in the previously tagged release, verified from registry and image metadata' },
|
|
56
|
+
{ description: 'the newest image tag trails npm; an intermediate release has no image',
|
|
57
57
|
source: 'Docker Hub tags API, read 2026-07-25' },
|
|
58
58
|
'the image no longer tracks npm because building it depends on a human remembering a flag',
|
|
59
59
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medicine-wheel/gap-analysis",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Problem-solving built properly for when something worked and stopped: evidenced baseline, observation, difference, verifiable elimination steps. Root cause, incidents, regressions, troubleshooting. The baseline requirement is what separates a fire from a creating act.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"directory": "src/gap-analysis"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@medicine-wheel/creative-orientation": "^0.6.
|
|
48
|
+
"@medicine-wheel/creative-orientation": "^0.6.3"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"typescript": "^5.7.0"
|