@contractspec/example.learning-journey-ui-coaching 3.0.0 → 3.2.0
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/AGENTS.md +34 -0
- package/CHANGELOG.md +48 -0
- package/package.json +10 -10
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,53 @@
|
|
|
1
1
|
# @contractspec/example.learning-journey-ui-coaching
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a281fc5: fix: missing dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [a281fc5]
|
|
12
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.2.0
|
|
13
|
+
- @contractspec/example.learning-journey-ambient-coach@3.2.0
|
|
14
|
+
- @contractspec/example.learning-journey-ui-shared@3.2.0
|
|
15
|
+
- @contractspec/module.learning-journey@3.2.0
|
|
16
|
+
- @contractspec/lib.contracts-spec@3.2.0
|
|
17
|
+
- @contractspec/lib.design-system@3.2.0
|
|
18
|
+
- @contractspec/lib.ui-kit-web@3.2.0
|
|
19
|
+
|
|
20
|
+
## 3.1.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [02c0cc5]
|
|
25
|
+
- @contractspec/lib.contracts-spec@3.1.1
|
|
26
|
+
- @contractspec/lib.design-system@3.1.1
|
|
27
|
+
- @contractspec/example.learning-journey-ambient-coach@3.1.1
|
|
28
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.1.1
|
|
29
|
+
- @contractspec/example.learning-journey-ui-shared@3.1.1
|
|
30
|
+
- @contractspec/module.learning-journey@3.1.1
|
|
31
|
+
|
|
32
|
+
## 3.1.0
|
|
33
|
+
|
|
34
|
+
### Minor Changes
|
|
35
|
+
|
|
36
|
+
- 28987eb: chore: upgrade dependencies
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [f2a4faf]
|
|
41
|
+
- Updated dependencies [28987eb]
|
|
42
|
+
- Updated dependencies [28987eb]
|
|
43
|
+
- @contractspec/lib.contracts-spec@3.1.0
|
|
44
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.1.0
|
|
45
|
+
- @contractspec/example.learning-journey-ambient-coach@3.1.0
|
|
46
|
+
- @contractspec/example.learning-journey-ui-shared@3.1.0
|
|
47
|
+
- @contractspec/module.learning-journey@3.1.0
|
|
48
|
+
- @contractspec/lib.design-system@3.1.0
|
|
49
|
+
- @contractspec/lib.ui-kit-web@3.1.0
|
|
50
|
+
|
|
3
51
|
## 3.0.0
|
|
4
52
|
|
|
5
53
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.learning-journey-ui-coaching",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
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": "3.
|
|
145
|
-
"@contractspec/example.learning-journey-ui-shared": "3.
|
|
146
|
-
"@contractspec/example.learning-journey-ambient-coach": "3.
|
|
147
|
-
"@contractspec/example.learning-journey-crm-onboarding": "3.
|
|
148
|
-
"@contractspec/module.learning-journey": "3.
|
|
149
|
-
"@contractspec/lib.design-system": "3.
|
|
150
|
-
"@contractspec/lib.ui-kit-web": "3.
|
|
144
|
+
"@contractspec/lib.contracts-spec": "3.2.0",
|
|
145
|
+
"@contractspec/example.learning-journey-ui-shared": "3.2.0",
|
|
146
|
+
"@contractspec/example.learning-journey-ambient-coach": "3.2.0",
|
|
147
|
+
"@contractspec/example.learning-journey-crm-onboarding": "3.2.0",
|
|
148
|
+
"@contractspec/module.learning-journey": "3.2.0",
|
|
149
|
+
"@contractspec/lib.design-system": "3.2.0",
|
|
150
|
+
"@contractspec/lib.ui-kit-web": "3.2.0",
|
|
151
151
|
"react": "19.2.4"
|
|
152
152
|
},
|
|
153
153
|
"devDependencies": {
|
|
154
|
-
"@contractspec/tool.typescript": "3.
|
|
154
|
+
"@contractspec/tool.typescript": "3.2.0",
|
|
155
155
|
"@types/react": "^19.2.14",
|
|
156
156
|
"typescript": "^5.9.3",
|
|
157
|
-
"@contractspec/tool.bun": "3.
|
|
157
|
+
"@contractspec/tool.bun": "3.2.0"
|
|
158
158
|
},
|
|
159
159
|
"peerDependencies": {
|
|
160
160
|
"react": "^19.2.4"
|