@medicine-wheel/prompt-decomposition 0.5.2 → 0.5.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/README.md +6 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Ontology-enriched prompt decomposition engine for the Medicine Wheel Developer Suite.
|
|
4
4
|
|
|
5
|
+
> [!WARNING]
|
|
6
|
+
> **Experimental alpha.** Part of the Medicine Wheel Developer Suite, which is
|
|
7
|
+
> under active development. APIs change between patch versions and all packages
|
|
8
|
+
> move in lockstep — pin exact versions. See
|
|
9
|
+
> [ALPHA.md](https://github.com/jgwill/medicine-wheel/blob/main/ALPHA.md).
|
|
10
|
+
|
|
5
11
|
## Overview
|
|
6
12
|
|
|
7
13
|
Extracts structured intents from natural language prompts and classifies them across the Four Directions (East/vision, South/analysis, West/validation, North/action). Detects implicit intents from hedging language, maps dependencies between tasks, and generates ceremony guidance when directional balance is poor.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medicine-wheel/prompt-decomposition",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Prompt Decomposition Engine for the Medicine Wheel Developer Suite — ontology-enriched intent extraction, relational dependency mapping, and ceremony-aware action stacking",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -50,8 +50,13 @@
|
|
|
50
50
|
],
|
|
51
51
|
"author": "IAIP Collaborative - Shawinigan, QC",
|
|
52
52
|
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/jgwill/medicine-wheel.git",
|
|
56
|
+
"directory": "src/prompt-decomposition"
|
|
57
|
+
},
|
|
53
58
|
"dependencies": {
|
|
54
|
-
"@medicine-wheel/ontology-core": "^0.5.
|
|
59
|
+
"@medicine-wheel/ontology-core": "^0.5.3"
|
|
55
60
|
},
|
|
56
61
|
"devDependencies": {
|
|
57
62
|
"@types/node": "^20.10.0",
|