@lssm/example.learning-patterns 0.0.0-canary-20251215234340 → 0.0.0-canary-20251216024228

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.
@@ -45,5 +45,5 @@ $ tsdown
45
45
  ℹ dist/libs/contracts/src/docs/tech/studio/sandbox-unlogged.docblock.js  0.90 kB │ gzip: 0.56 kB
46
46
  ℹ dist/libs/contracts/src/docs/registry.js  0.74 kB │ gzip: 0.42 kB
47
47
  ℹ 38 files, total: 120.11 kB
48
- ✔ Build complete in 97ms
48
+ ✔ Build complete in 112ms
49
49
  $ tsc --noEmit
package/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @lssm/example.learning-patterns
2
2
 
3
- ## 0.0.0-canary-20251215234340
3
+ ## 0.0.0-canary-20251216024228
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - @lssm/module.learning-journey@0.0.0-canary-20251215234340
7
+ - @lssm/module.learning-journey@0.0.0-canary-20251216024228
package/README.md CHANGED
@@ -3,3 +3,6 @@
3
3
  Spec-first learning archetypes designed to be **domain-agnostic**:\n+\n+- **Drills + SRS** (Duolingo-like)\n+- **Ambient Coach** (contextual tips)\n+- **Quests** (3–7 day arcs)\n+\n+All progress is **event-driven** and compatible with `@lssm/module.learning-journey` track specs.\n+\n+## Exports\n+\n+- `tracks/*`: ready-to-use `LearningJourneyTrackSpec[]`\n+- `events`: event name constants used by the tracks\n+\n+## Running tests\n+\n+```bash\n+bun test\n+```\n+
4
4
 
5
5
 
6
+
7
+
8
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/example.learning-patterns",
3
- "version": "0.0.0-canary-20251215234340",
3
+ "version": "0.0.0-canary-20251216024228",
4
4
  "description": "Example: drills + ambient coach + quests learning patterns, powered by Learning Journey (event-driven, deterministic).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/docs/index.ts CHANGED
@@ -1 +1,4 @@
1
1
  import './learning-patterns.docblock';
2
+
3
+
4
+
@@ -28,3 +28,6 @@ const docBlocks: DocBlock[] = [
28
28
  ];
29
29
 
30
30
  registerDocBlocks(docBlocks);
31
+
32
+
33
+
package/src/events.ts CHANGED
@@ -14,3 +14,6 @@ export const LEARNING_EVENTS = {
14
14
 
15
15
  export type LearningEventName =
16
16
  (typeof LEARNING_EVENTS)[keyof typeof LEARNING_EVENTS];
17
+
18
+
19
+
@@ -254,3 +254,6 @@ describe('@lssm/example.learning-patterns XP + streak + SRS determinism', () =>
254
254
  expect(result.nextReviewAt.toISOString()).toBe('2026-01-01T00:10:00.000Z');
255
255
  });
256
256
  });
257
+
258
+
259
+
@@ -42,3 +42,6 @@ export const ambientCoachTrack: LearningJourneyTrackSpec = {
42
42
  export const ambientCoachTracks: LearningJourneyTrackSpec[] = [
43
43
  ambientCoachTrack,
44
44
  ];
45
+
46
+
47
+
@@ -49,3 +49,6 @@ export const drillsTrack: LearningJourneyTrackSpec = {
49
49
  };
50
50
 
51
51
  export const drillTracks: LearningJourneyTrackSpec[] = [drillsTrack];
52
+
53
+
54
+
@@ -1,3 +1,6 @@
1
1
  export * from './drills';
2
2
  export * from './ambient-coach';
3
3
  export * from './quests';
4
+
5
+
6
+
@@ -42,3 +42,6 @@ export const questTrack: LearningJourneyTrackSpec = {
42
42
  };
43
43
 
44
44
  export const questTracks: LearningJourneyTrackSpec[] = [questTrack];
45
+
46
+
47
+
package/tsconfig.json CHANGED
@@ -10,3 +10,6 @@
10
10
 
11
11
 
12
12
 
13
+
14
+
15
+