@contractspec/example.learning-journey-ui-coaching 2.9.1 → 3.1.1

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.
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
5
  [contractspec-bun-build] transpile target=bun root=src entries=14
6
- Bundled 14 modules in 4ms
6
+ Bundled 14 modules in 5ms
7
7
 
8
8
  ./CoachingMiniApp.js 44.47 KB (entry point)
9
9
  ./index.js 46.25 KB (entry point)
@@ -21,7 +21,7 @@ Bundled 14 modules in 4ms
21
21
  ./example.js 0.93 KB (entry point)
22
22
 
23
23
  [contractspec-bun-build] transpile target=node root=src entries=14
24
- Bundled 14 modules in 4ms
24
+ Bundled 14 modules in 5ms
25
25
 
26
26
  ./CoachingMiniApp.js 44.44 KB (entry point)
27
27
  ./index.js 46.21 KB (entry point)
package/AGENTS.md ADDED
@@ -0,0 +1,34 @@
1
+ # AI Agent Guide -- `@contractspec/example.learning-journey-ui-coaching`
2
+
3
+ Scope: `packages/examples/learning-journey-ui-coaching/*`
4
+
5
+ Demonstrates a contextual coaching UI with tip cards, engagement tracking, and multi-view navigation.
6
+
7
+ ## Quick Context
8
+
9
+ - **Layer**: example
10
+ - **Related Packages**: `module.learning-journey`, `lib.contracts-spec`, `lib.design-system`, `lib.ui-kit-web`, `example.learning-journey-ui-shared`, `example.learning-journey-ambient-coach`, `example.learning-journey-crm-onboarding`
11
+
12
+ ## What This Demonstrates
13
+
14
+ - CoachingMiniApp as a self-contained React application
15
+ - TipCard, TipFeed, and EngagementMeter components
16
+ - Multi-view layout (Overview, Progress, Steps, Timeline)
17
+ - Integration with ambient-coach and crm-onboarding tracks
18
+ - Design system and UI kit usage patterns
19
+
20
+ ## Public Exports
21
+
22
+ - `.` -- root barrel
23
+ - `./CoachingMiniApp` -- main mini-app component
24
+ - `./components` -- TipCard, TipFeed, EngagementMeter
25
+ - `./views` -- Overview, Progress, Steps, Timeline views
26
+ - `./docs` -- DocBlock documentation
27
+ - `./example` -- runnable example entry point
28
+
29
+ ## Local Commands
30
+
31
+ - Build: `bun run build`
32
+ - Dev: `bun run dev`
33
+ - Test: `bun test`
34
+ - Typecheck: `bun run typecheck`
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # @contractspec/example.learning-journey-ui-coaching
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [02c0cc5]
8
+ - @contractspec/lib.contracts-spec@3.1.1
9
+ - @contractspec/lib.design-system@3.1.1
10
+ - @contractspec/example.learning-journey-ambient-coach@3.1.1
11
+ - @contractspec/example.learning-journey-crm-onboarding@3.1.1
12
+ - @contractspec/example.learning-journey-ui-shared@3.1.1
13
+ - @contractspec/module.learning-journey@3.1.1
14
+
15
+ ## 3.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 28987eb: chore: upgrade dependencies
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [f2a4faf]
24
+ - Updated dependencies [28987eb]
25
+ - Updated dependencies [28987eb]
26
+ - @contractspec/lib.contracts-spec@3.1.0
27
+ - @contractspec/example.learning-journey-crm-onboarding@3.1.0
28
+ - @contractspec/example.learning-journey-ambient-coach@3.1.0
29
+ - @contractspec/example.learning-journey-ui-shared@3.1.0
30
+ - @contractspec/module.learning-journey@3.1.0
31
+ - @contractspec/lib.design-system@3.1.0
32
+ - @contractspec/lib.ui-kit-web@3.1.0
33
+
34
+ ## 3.0.0
35
+
36
+ ### Major Changes
37
+
38
+ - b781ce6: feat: improve ai readiness
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies [7cbdb7f]
43
+ - Updated dependencies [c608804]
44
+ - Updated dependencies [e3bc858]
45
+ - Updated dependencies [b19ae0a]
46
+ - Updated dependencies [aa4a9c9]
47
+ - Updated dependencies [b781ce6]
48
+ - @contractspec/lib.contracts-spec@3.0.0
49
+ - @contractspec/example.learning-journey-crm-onboarding@3.0.0
50
+ - @contractspec/example.learning-journey-ambient-coach@3.0.0
51
+ - @contractspec/example.learning-journey-ui-shared@3.0.0
52
+ - @contractspec/module.learning-journey@3.0.0
53
+ - @contractspec/lib.design-system@3.0.0
54
+ - @contractspec/lib.ui-kit-web@3.0.0
55
+
3
56
  ## 2.9.1
4
57
 
5
58
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-ui-coaching",
3
- "version": "2.9.1",
3
+ "version": "3.1.1",
4
4
  "description": "Contextual coaching UI with tip cards and engagement tracking.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -141,20 +141,20 @@
141
141
  "typecheck": "tsc --noEmit"
142
142
  },
143
143
  "dependencies": {
144
- "@contractspec/lib.contracts-spec": "2.10.0",
145
- "@contractspec/example.learning-journey-ui-shared": "2.9.1",
146
- "@contractspec/example.learning-journey-ambient-coach": "2.9.1",
147
- "@contractspec/example.learning-journey-crm-onboarding": "2.9.1",
148
- "@contractspec/module.learning-journey": "2.9.1",
149
- "@contractspec/lib.design-system": "2.9.1",
150
- "@contractspec/lib.ui-kit-web": "2.9.0",
144
+ "@contractspec/lib.contracts-spec": "3.1.1",
145
+ "@contractspec/example.learning-journey-ui-shared": "3.1.1",
146
+ "@contractspec/example.learning-journey-ambient-coach": "3.1.1",
147
+ "@contractspec/example.learning-journey-crm-onboarding": "3.1.1",
148
+ "@contractspec/module.learning-journey": "3.1.1",
149
+ "@contractspec/lib.design-system": "3.1.1",
150
+ "@contractspec/lib.ui-kit-web": "3.1.0",
151
151
  "react": "19.2.4"
152
152
  },
153
153
  "devDependencies": {
154
- "@contractspec/tool.typescript": "2.9.0",
154
+ "@contractspec/tool.typescript": "3.1.0",
155
155
  "@types/react": "^19.2.14",
156
156
  "typescript": "^5.9.3",
157
- "@contractspec/tool.bun": "2.9.0"
157
+ "@contractspec/tool.bun": "3.1.0"
158
158
  },
159
159
  "peerDependencies": {
160
160
  "react": "^19.2.4"