@medicine-wheel/brainstorming 0.5.3 → 0.5.5

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 (3) hide show
  1. package/ALPHA.md +59 -0
  2. package/README.md +18 -1
  3. package/package.json +12 -6
package/ALPHA.md ADDED
@@ -0,0 +1,59 @@
1
+ # This suite is experimental alpha
2
+
3
+ **Read this before depending on anything here.**
4
+
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.
9
+
10
+ ## What that means concretely
11
+
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.
17
+ - **Some packages are intentionally small first cuts.** They express an
18
+ intention with a working minimum rather than a finished surface. Their
19
+ READMEs say so where it applies.
20
+ - **Storage shapes are still settling.** Records written by one version may
21
+ need repair by a later one. Do not treat any store here as an archive of
22
+ 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.
25
+
26
+ ## What it does *not* mean
27
+
28
+ It does not mean the work is careless. Defects found are fixed and written
29
+ down, specifications are versioned alongside the code in `rispecs/`, and
30
+ sessions are chronicled. The alpha label is about **stability of contract**,
31
+ not about standard of care.
32
+
33
+ ## Cultural material
34
+
35
+ Parts of this suite encode Indigenous relational research methodology —
36
+ Four Directions structure, ceremony protocol, OCAP® compliance surfaces,
37
+ relational accountability. That material is included because the software is
38
+ *for* that way of working, not as decoration.
39
+
40
+ If you are building on those parts, please read them as an invitation to work
41
+ relationally rather than as a finished implementation of anyone's protocol.
42
+ Where a design question is properly a knowledge holder's decision rather than
43
+ an engineer's, the specs try to say so. Where we have got that wrong, telling
44
+ us is a contribution.
45
+
46
+ ## If you are evaluating this
47
+
48
+ The most useful things to read first:
49
+
50
+ - `rispecs/` — the specifications, versioned with the code
51
+ - `README.md` — what the suite is
52
+ - Open issues — where the known edges are, stated plainly
53
+
54
+ Feedback is genuinely wanted at this stage, including "this boundary is wrong"
55
+ and "this should not be software".
56
+
57
+ ## License
58
+
59
+ MIT — see `LICENSE`.
package/README.md CHANGED
@@ -1,6 +1,23 @@
1
1
  # @medicine-wheel/brainstorming
2
2
 
3
- Idea into committed design, through approval gates a human holds.
3
+ Idea into committed design, through approval gates a human holds. Ideation,
4
+ requirements gathering, design review — the convergent half of creative problem
5
+ solving.
6
+
7
+ Every outcome this package emits passes one question before it is spoken —
8
+ including its own multiple-choice options:
9
+
10
+ > **Is there a prior state you are restoring?**
11
+
12
+ **Yes.** The option is describing a repair, and
13
+ [`@medicine-wheel/gap-analysis`](https://www.npmjs.com/package/@medicine-wheel/gap-analysis)
14
+ is the instrument for it.
15
+
16
+ **No.** Then an option phrased as removing something is aiming at a list of
17
+ known failures rather than at the state you want — and the moment of speaking is
18
+ the only point where that is still catchable, because once a human selects it,
19
+ it stops looking like the agent's proposal and starts looking like the
20
+ requirement.
4
21
 
5
22
  > [!WARNING]
6
23
  > **Experimental alpha.** Part of the Medicine Wheel Developer Suite, which is
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@medicine-wheel/brainstorming",
3
- "version": "0.5.3",
4
- "description": "Idea into committed design through approval gates a human holds, with every emitted outcome statement routed through creative orientationincluding its own questions.",
3
+ "version": "0.5.5",
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",
7
7
  "exports": {
@@ -15,7 +15,8 @@
15
15
  "sideEffects": false,
16
16
  "files": [
17
17
  "dist",
18
- "README.md"
18
+ "README.md",
19
+ "ALPHA.md"
19
20
  ],
20
21
  "scripts": {
21
22
  "build": "tsc",
@@ -23,11 +24,16 @@
23
24
  "prepublishOnly": "npm run clean && npm run build"
24
25
  },
25
26
  "keywords": [
26
- "medicine-wheel",
27
27
  "brainstorming",
28
+ "ideation",
29
+ "creative-problem-solving",
30
+ "requirements",
28
31
  "design",
29
32
  "approval-gates",
30
- "creative-orientation"
33
+ "human-in-the-loop",
34
+ "creative-orientation",
35
+ "spec",
36
+ "medicine-wheel"
31
37
  ],
32
38
  "author": "jgwill",
33
39
  "license": "MIT",
@@ -37,7 +43,7 @@
37
43
  "directory": "src/brainstorming"
38
44
  },
39
45
  "dependencies": {
40
- "@medicine-wheel/creative-orientation": "^0.5.3"
46
+ "@medicine-wheel/creative-orientation": "^0.5.5"
41
47
  },
42
48
  "devDependencies": {
43
49
  "typescript": "^5.7.0"