@contractspec/example.learning-journey-registry 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 +36 -0
- package/CHANGELOG.md +64 -0
- package/package.json +15 -15
package/AGENTS.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# AI Agent Guide -- `@contractspec/example.learning-journey-registry`
|
|
2
|
+
|
|
3
|
+
Scope: `packages/examples/learning-journey-registry/*`
|
|
4
|
+
|
|
5
|
+
Registry that aggregates all learning journey example tracks into a single browsable mini-app.
|
|
6
|
+
|
|
7
|
+
## Quick Context
|
|
8
|
+
|
|
9
|
+
- **Layer**: example
|
|
10
|
+
- **Related Packages**: `lib.contracts-spec`, `module.learning-journey`, `example.learning-journey-ambient-coach`, `example.learning-journey-duo-drills`, `example.learning-journey-crm-onboarding`, `example.learning-journey-platform-tour`, `example.learning-journey-quest-challenges`, `example.learning-journey-studio-onboarding`, `example.learning-journey-ui-*`
|
|
11
|
+
|
|
12
|
+
## What This Demonstrates
|
|
13
|
+
|
|
14
|
+
- Track aggregation and discovery via a central registry
|
|
15
|
+
- Feature definition pattern (`learning-journey-registry.feature`)
|
|
16
|
+
- Progress store for cross-track state
|
|
17
|
+
- API and API-types separation for typed endpoints
|
|
18
|
+
- Presentation layer with LearningMiniApp UI
|
|
19
|
+
|
|
20
|
+
## Public Exports
|
|
21
|
+
|
|
22
|
+
- `.` -- root barrel
|
|
23
|
+
- `./api`, `./api-types` -- typed API surface
|
|
24
|
+
- `./tracks` -- track definitions
|
|
25
|
+
- `./progress-store` -- cross-track progress persistence
|
|
26
|
+
- `./presentations` -- presentation layer
|
|
27
|
+
- `./ui` -- LearningMiniApp component
|
|
28
|
+
- `./learning-journey-registry.feature` -- feature definition
|
|
29
|
+
- `./docs`, `./example`
|
|
30
|
+
|
|
31
|
+
## Local Commands
|
|
32
|
+
|
|
33
|
+
- Build: `bun run build`
|
|
34
|
+
- Dev: `bun run dev`
|
|
35
|
+
- Test: `bun test`
|
|
36
|
+
- Typecheck: `bun run typecheck`
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,69 @@
|
|
|
1
1
|
# @contractspec/example.learning-journey-registry
|
|
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-studio-onboarding@3.2.0
|
|
13
|
+
- @contractspec/example.learning-journey-quest-challenges@3.2.0
|
|
14
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.2.0
|
|
15
|
+
- @contractspec/example.learning-journey-ambient-coach@3.2.0
|
|
16
|
+
- @contractspec/example.learning-journey-platform-tour@3.2.0
|
|
17
|
+
- @contractspec/example.learning-journey-ui-onboarding@3.2.0
|
|
18
|
+
- @contractspec/example.learning-journey-ui-coaching@3.2.0
|
|
19
|
+
- @contractspec/example.learning-journey-ui-gamified@3.2.0
|
|
20
|
+
- @contractspec/example.learning-journey-duo-drills@3.2.0
|
|
21
|
+
- @contractspec/example.learning-journey-ui-shared@3.2.0
|
|
22
|
+
- @contractspec/module.learning-journey@3.2.0
|
|
23
|
+
- @contractspec/lib.contracts-spec@3.2.0
|
|
24
|
+
|
|
25
|
+
## 3.1.1
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [02c0cc5]
|
|
30
|
+
- @contractspec/lib.contracts-spec@3.1.1
|
|
31
|
+
- @contractspec/example.learning-journey-ambient-coach@3.1.1
|
|
32
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.1.1
|
|
33
|
+
- @contractspec/example.learning-journey-duo-drills@3.1.1
|
|
34
|
+
- @contractspec/example.learning-journey-platform-tour@3.1.1
|
|
35
|
+
- @contractspec/example.learning-journey-quest-challenges@3.1.1
|
|
36
|
+
- @contractspec/example.learning-journey-studio-onboarding@3.1.1
|
|
37
|
+
- @contractspec/example.learning-journey-ui-coaching@3.1.1
|
|
38
|
+
- @contractspec/example.learning-journey-ui-gamified@3.1.1
|
|
39
|
+
- @contractspec/example.learning-journey-ui-onboarding@3.1.1
|
|
40
|
+
- @contractspec/example.learning-journey-ui-shared@3.1.1
|
|
41
|
+
- @contractspec/module.learning-journey@3.1.1
|
|
42
|
+
|
|
43
|
+
## 3.1.0
|
|
44
|
+
|
|
45
|
+
### Minor Changes
|
|
46
|
+
|
|
47
|
+
- 28987eb: chore: upgrade dependencies
|
|
48
|
+
|
|
49
|
+
### Patch Changes
|
|
50
|
+
|
|
51
|
+
- Updated dependencies [f2a4faf]
|
|
52
|
+
- Updated dependencies [28987eb]
|
|
53
|
+
- Updated dependencies [28987eb]
|
|
54
|
+
- @contractspec/lib.contracts-spec@3.1.0
|
|
55
|
+
- @contractspec/example.learning-journey-studio-onboarding@3.1.0
|
|
56
|
+
- @contractspec/example.learning-journey-quest-challenges@3.1.0
|
|
57
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.1.0
|
|
58
|
+
- @contractspec/example.learning-journey-ambient-coach@3.1.0
|
|
59
|
+
- @contractspec/example.learning-journey-platform-tour@3.1.0
|
|
60
|
+
- @contractspec/example.learning-journey-ui-onboarding@3.1.0
|
|
61
|
+
- @contractspec/example.learning-journey-ui-coaching@3.1.0
|
|
62
|
+
- @contractspec/example.learning-journey-ui-gamified@3.1.0
|
|
63
|
+
- @contractspec/example.learning-journey-duo-drills@3.1.0
|
|
64
|
+
- @contractspec/example.learning-journey-ui-shared@3.1.0
|
|
65
|
+
- @contractspec/module.learning-journey@3.1.0
|
|
66
|
+
|
|
3
67
|
## 3.0.0
|
|
4
68
|
|
|
5
69
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.learning-journey-registry",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Registry that aggregates learning journey example tracks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -127,25 +127,25 @@
|
|
|
127
127
|
"typecheck": "tsc --noEmit"
|
|
128
128
|
},
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
131
|
-
"@contractspec/example.learning-journey-ambient-coach": "3.
|
|
132
|
-
"@contractspec/example.learning-journey-duo-drills": "3.
|
|
133
|
-
"@contractspec/example.learning-journey-crm-onboarding": "3.
|
|
134
|
-
"@contractspec/example.learning-journey-platform-tour": "3.
|
|
135
|
-
"@contractspec/example.learning-journey-quest-challenges": "3.
|
|
136
|
-
"@contractspec/example.learning-journey-studio-onboarding": "3.
|
|
137
|
-
"@contractspec/example.learning-journey-ui-shared": "3.
|
|
138
|
-
"@contractspec/example.learning-journey-ui-gamified": "3.
|
|
139
|
-
"@contractspec/example.learning-journey-ui-onboarding": "3.
|
|
140
|
-
"@contractspec/example.learning-journey-ui-coaching": "3.
|
|
141
|
-
"@contractspec/module.learning-journey": "3.
|
|
130
|
+
"@contractspec/lib.contracts-spec": "3.2.0",
|
|
131
|
+
"@contractspec/example.learning-journey-ambient-coach": "3.2.0",
|
|
132
|
+
"@contractspec/example.learning-journey-duo-drills": "3.2.0",
|
|
133
|
+
"@contractspec/example.learning-journey-crm-onboarding": "3.2.0",
|
|
134
|
+
"@contractspec/example.learning-journey-platform-tour": "3.2.0",
|
|
135
|
+
"@contractspec/example.learning-journey-quest-challenges": "3.2.0",
|
|
136
|
+
"@contractspec/example.learning-journey-studio-onboarding": "3.2.0",
|
|
137
|
+
"@contractspec/example.learning-journey-ui-shared": "3.2.0",
|
|
138
|
+
"@contractspec/example.learning-journey-ui-gamified": "3.2.0",
|
|
139
|
+
"@contractspec/example.learning-journey-ui-onboarding": "3.2.0",
|
|
140
|
+
"@contractspec/example.learning-journey-ui-coaching": "3.2.0",
|
|
141
|
+
"@contractspec/module.learning-journey": "3.2.0",
|
|
142
142
|
"react": "19.2.4"
|
|
143
143
|
},
|
|
144
144
|
"devDependencies": {
|
|
145
|
-
"@contractspec/tool.typescript": "3.
|
|
145
|
+
"@contractspec/tool.typescript": "3.2.0",
|
|
146
146
|
"@types/react": "^19.2.14",
|
|
147
147
|
"typescript": "^5.9.3",
|
|
148
|
-
"@contractspec/tool.bun": "3.
|
|
148
|
+
"@contractspec/tool.bun": "3.2.0"
|
|
149
149
|
},
|
|
150
150
|
"peerDependencies": {
|
|
151
151
|
"react": "^19.2.4"
|