@medicine-wheel/brainstorming 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.
Files changed (2) hide show
  1. package/ALPHA.md +13 -10
  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 is not
7
- finished software. Publishing early is deliberate but so is telling you what
8
- you are installing.
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.** All packages move in lockstep, so a
13
- bump you would normally read as "nothing changed for me" may still change
14
- what you depend on. Pin exact versions.
15
- - **Packages appear, and their boundaries move.** Three packages were added in
16
- `0.5.3`. Where a responsibility lives is still being decided.
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
- - **Test coverage is real but uneven.** 210 tests pass at `0.5.3`; that is a
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medicine-wheel/brainstorming",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "description": "Idea into committed design through approval gates a human holds. Every outcome it emits — including its own multiple-choice questions — passes the orientation question before it is spoken. Brainstorming, ideation, requirements gathering, design review.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -43,7 +43,7 @@
43
43
  "directory": "src/brainstorming"
44
44
  },
45
45
  "dependencies": {
46
- "@medicine-wheel/creative-orientation": "^0.6.1"
46
+ "@medicine-wheel/creative-orientation": "^0.6.3"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "^5.7.0"