@contractspec/example.learning-journey-ambient-coach 3.2.0 → 3.4.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.
@@ -1,32 +1,36 @@
1
- $ contractspec-bun-build prebuild
2
- $ bun run prebuild && bun run build:bundle && bun run build:types
3
- $ contractspec-bun-build prebuild
4
- $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=5
6
- Bundled 5 modules in 45ms
7
-
8
- docs/ambient-coach.docblock.js 1.29 KB (entry point)
9
- ./index.js 3.85 KB (entry point)
10
- docs/index.js 1.29 KB (entry point)
11
- ./example.js 0.96 KB (entry point)
12
- ./track.js 1.63 KB (entry point)
13
-
14
- [contractspec-bun-build] transpile target=node root=src entries=5
15
- Bundled 5 modules in 37ms
16
-
17
- docs/ambient-coach.docblock.js 1.28 KB (entry point)
18
- ./index.js 3.83 KB (entry point)
19
- docs/index.js 1.28 KB (entry point)
20
- ./example.js 0.95 KB (entry point)
21
- ./track.js 1.61 KB (entry point)
22
-
23
- [contractspec-bun-build] transpile target=browser root=src entries=5
24
- Bundled 5 modules in 45ms
25
-
26
- docs/ambient-coach.docblock.js 1.28 KB (entry point)
27
- ./index.js 3.83 KB (entry point)
28
- docs/index.js 1.28 KB (entry point)
29
- ./example.js 0.95 KB (entry point)
30
- ./track.js 1.61 KB (entry point)
31
-
32
- $ contractspec-bun-build types
1
+
2
+ $ contractspec-bun-build prebuild
3
+ $ bun run prebuild && bun run build:bundle && bun run build:types
4
+ $ contractspec-bun-build prebuild
5
+ $ contractspec-bun-build transpile
6
+ [contractspec-bun-build] transpile target=bun root=src entries=6
7
+ Bundled 6 modules in 10ms
8
+
9
+ docs/ambient-coach.docblock.js 1.29 KB (entry point)
10
+ ./index.js 4.47 KB (entry point)
11
+ docs/index.js 1.29 KB (entry point)
12
+ ./example.js 0.96 KB (entry point)
13
+ ./learning-journey-ambient-coach.feature.js 0.64 KB (entry point)
14
+ ./track.js 1.63 KB (entry point)
15
+
16
+ [contractspec-bun-build] transpile target=node root=src entries=6
17
+ Bundled 6 modules in 6ms
18
+
19
+ docs/ambient-coach.docblock.js 1.28 KB (entry point)
20
+ ./index.js 4.45 KB (entry point)
21
+ docs/index.js 1.28 KB (entry point)
22
+ ./example.js 0.95 KB (entry point)
23
+ ./learning-journey-ambient-coach.feature.js 0.63 KB (entry point)
24
+ ./track.js 1.61 KB (entry point)
25
+
26
+ [contractspec-bun-build] transpile target=browser root=src entries=6
27
+ Bundled 6 modules in 7ms
28
+
29
+ docs/ambient-coach.docblock.js 1.28 KB (entry point)
30
+ ./index.js 4.45 KB (entry point)
31
+ docs/index.js 1.28 KB (entry point)
32
+ ./example.js 0.95 KB (entry point)
33
+ ./learning-journey-ambient-coach.feature.js 0.63 KB (entry point)
34
+ ./track.js 1.61 KB (entry point)
35
+
36
+ $ contractspec-bun-build types
@@ -1 +1,2 @@
1
- $ contractspec-bun-build prebuild
1
+
2
+ $ contractspec-bun-build prebuild
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @contractspec/example.learning-journey-ambient-coach
2
2
 
3
+ ## 3.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0ee467a: feat: improve ai and customization
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [0ee467a]
12
+ - Updated dependencies [56ee8e6]
13
+ - @contractspec/module.learning-journey@3.4.0
14
+ - @contractspec/lib.contracts-spec@3.4.0
15
+
16
+ ## 3.3.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 890a0da: fix: stability improvements
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [890a0da]
25
+ - @contractspec/module.learning-journey@3.3.0
26
+ - @contractspec/lib.contracts-spec@3.3.0
27
+
3
28
  ## 3.2.0
4
29
 
5
30
  ### Minor Changes
@@ -98,9 +98,26 @@ var ambientCoachTracks = [
98
98
  moneyAmbientCoachTrack,
99
99
  colivingAmbientCoachTrack
100
100
  ];
101
+
102
+ // src/learning-journey-ambient-coach.feature.ts
103
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
104
+ var LearningJourneyAmbientCoachFeature = defineFeature({
105
+ meta: {
106
+ key: "learning-journey-ambient-coach",
107
+ version: "1.0.0",
108
+ title: "Learning Journey: Ambient Coach",
109
+ description: "Contextual coaching track with ambient tips and follow-up actions",
110
+ domain: "learning-journey",
111
+ owners: ["@examples"],
112
+ tags: ["learning", "coaching", "ambient", "journey"],
113
+ stability: "experimental"
114
+ },
115
+ docs: ["docs.learning-journey.ambient-coach"]
116
+ });
101
117
  export {
102
118
  moneyAmbientCoachTrack,
103
119
  example_default as example,
104
120
  colivingAmbientCoachTrack,
105
- ambientCoachTracks
121
+ ambientCoachTracks,
122
+ LearningJourneyAmbientCoachFeature
106
123
  };
@@ -0,0 +1,18 @@
1
+ // src/learning-journey-ambient-coach.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var LearningJourneyAmbientCoachFeature = defineFeature({
4
+ meta: {
5
+ key: "learning-journey-ambient-coach",
6
+ version: "1.0.0",
7
+ title: "Learning Journey: Ambient Coach",
8
+ description: "Contextual coaching track with ambient tips and follow-up actions",
9
+ domain: "learning-journey",
10
+ owners: ["@examples"],
11
+ tags: ["learning", "coaching", "ambient", "journey"],
12
+ stability: "experimental"
13
+ },
14
+ docs: ["docs.learning-journey.ambient-coach"]
15
+ });
16
+ export {
17
+ LearningJourneyAmbientCoachFeature
18
+ };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './track';
2
+ export * from './learning-journey-ambient-coach.feature';
2
3
  export { default as example } from './example';
3
4
  import './docs';
package/dist/index.js CHANGED
@@ -99,9 +99,26 @@ var ambientCoachTracks = [
99
99
  moneyAmbientCoachTrack,
100
100
  colivingAmbientCoachTrack
101
101
  ];
102
+
103
+ // src/learning-journey-ambient-coach.feature.ts
104
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
105
+ var LearningJourneyAmbientCoachFeature = defineFeature({
106
+ meta: {
107
+ key: "learning-journey-ambient-coach",
108
+ version: "1.0.0",
109
+ title: "Learning Journey: Ambient Coach",
110
+ description: "Contextual coaching track with ambient tips and follow-up actions",
111
+ domain: "learning-journey",
112
+ owners: ["@examples"],
113
+ tags: ["learning", "coaching", "ambient", "journey"],
114
+ stability: "experimental"
115
+ },
116
+ docs: ["docs.learning-journey.ambient-coach"]
117
+ });
102
118
  export {
103
119
  moneyAmbientCoachTrack,
104
120
  example_default as example,
105
121
  colivingAmbientCoachTrack,
106
- ambientCoachTracks
122
+ ambientCoachTracks,
123
+ LearningJourneyAmbientCoachFeature
107
124
  };
@@ -0,0 +1 @@
1
+ export declare const LearningJourneyAmbientCoachFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,19 @@
1
+ // @bun
2
+ // src/learning-journey-ambient-coach.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var LearningJourneyAmbientCoachFeature = defineFeature({
5
+ meta: {
6
+ key: "learning-journey-ambient-coach",
7
+ version: "1.0.0",
8
+ title: "Learning Journey: Ambient Coach",
9
+ description: "Contextual coaching track with ambient tips and follow-up actions",
10
+ domain: "learning-journey",
11
+ owners: ["@examples"],
12
+ tags: ["learning", "coaching", "ambient", "journey"],
13
+ stability: "experimental"
14
+ },
15
+ docs: ["docs.learning-journey.ambient-coach"]
16
+ });
17
+ export {
18
+ LearningJourneyAmbientCoachFeature
19
+ };
@@ -98,9 +98,26 @@ var ambientCoachTracks = [
98
98
  moneyAmbientCoachTrack,
99
99
  colivingAmbientCoachTrack
100
100
  ];
101
+
102
+ // src/learning-journey-ambient-coach.feature.ts
103
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
104
+ var LearningJourneyAmbientCoachFeature = defineFeature({
105
+ meta: {
106
+ key: "learning-journey-ambient-coach",
107
+ version: "1.0.0",
108
+ title: "Learning Journey: Ambient Coach",
109
+ description: "Contextual coaching track with ambient tips and follow-up actions",
110
+ domain: "learning-journey",
111
+ owners: ["@examples"],
112
+ tags: ["learning", "coaching", "ambient", "journey"],
113
+ stability: "experimental"
114
+ },
115
+ docs: ["docs.learning-journey.ambient-coach"]
116
+ });
101
117
  export {
102
118
  moneyAmbientCoachTrack,
103
119
  example_default as example,
104
120
  colivingAmbientCoachTrack,
105
- ambientCoachTracks
121
+ ambientCoachTracks,
122
+ LearningJourneyAmbientCoachFeature
106
123
  };
@@ -0,0 +1,18 @@
1
+ // src/learning-journey-ambient-coach.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var LearningJourneyAmbientCoachFeature = defineFeature({
4
+ meta: {
5
+ key: "learning-journey-ambient-coach",
6
+ version: "1.0.0",
7
+ title: "Learning Journey: Ambient Coach",
8
+ description: "Contextual coaching track with ambient tips and follow-up actions",
9
+ domain: "learning-journey",
10
+ owners: ["@examples"],
11
+ tags: ["learning", "coaching", "ambient", "journey"],
12
+ stability: "experimental"
13
+ },
14
+ docs: ["docs.learning-journey.ambient-coach"]
15
+ });
16
+ export {
17
+ LearningJourneyAmbientCoachFeature
18
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-ambient-coach",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "Ambient coach learning journey example with contextual tips and follow-up actions.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -40,6 +40,13 @@
40
40
  "browser": "./dist/browser/example.js",
41
41
  "default": "./dist/example.js"
42
42
  },
43
+ "./learning-journey-ambient-coach.feature": {
44
+ "types": "./dist/learning-journey-ambient-coach.feature.d.ts",
45
+ "bun": "./dist/learning-journey-ambient-coach.feature.js",
46
+ "node": "./dist/node/learning-journey-ambient-coach.feature.js",
47
+ "browser": "./dist/browser/learning-journey-ambient-coach.feature.js",
48
+ "default": "./dist/learning-journey-ambient-coach.feature.js"
49
+ },
43
50
  "./track": {
44
51
  "types": "./dist/track.d.ts",
45
52
  "bun": "./dist/track.js",
@@ -64,13 +71,13 @@
64
71
  "typecheck": "tsc --noEmit"
65
72
  },
66
73
  "dependencies": {
67
- "@contractspec/module.learning-journey": "3.2.0",
68
- "@contractspec/lib.contracts-spec": "3.2.0"
74
+ "@contractspec/module.learning-journey": "3.4.0",
75
+ "@contractspec/lib.contracts-spec": "3.4.0"
69
76
  },
70
77
  "devDependencies": {
71
- "@contractspec/tool.typescript": "3.2.0",
78
+ "@contractspec/tool.typescript": "3.4.0",
72
79
  "typescript": "^5.9.3",
73
- "@contractspec/tool.bun": "3.2.0"
80
+ "@contractspec/tool.bun": "3.4.0"
74
81
  },
75
82
  "publishConfig": {
76
83
  "exports": {
@@ -109,6 +116,13 @@
109
116
  "browser": "./dist/browser/example.js",
110
117
  "default": "./dist/example.js"
111
118
  },
119
+ "./learning-journey-ambient-coach.feature": {
120
+ "types": "./dist/learning-journey-ambient-coach.feature.d.ts",
121
+ "bun": "./dist/learning-journey-ambient-coach.feature.js",
122
+ "node": "./dist/node/learning-journey-ambient-coach.feature.js",
123
+ "browser": "./dist/browser/learning-journey-ambient-coach.feature.js",
124
+ "default": "./dist/learning-journey-ambient-coach.feature.js"
125
+ },
112
126
  "./track": {
113
127
  "types": "./dist/track.d.ts",
114
128
  "bun": "./dist/track.js",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './track';
2
+ export * from './learning-journey-ambient-coach.feature';
2
3
  export { default as example } from './example';
3
4
  import './docs';
@@ -0,0 +1,17 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const LearningJourneyAmbientCoachFeature = defineFeature({
4
+ meta: {
5
+ key: 'learning-journey-ambient-coach',
6
+ version: '1.0.0',
7
+ title: 'Learning Journey: Ambient Coach',
8
+ description:
9
+ 'Contextual coaching track with ambient tips and follow-up actions',
10
+ domain: 'learning-journey',
11
+ owners: ['@examples'],
12
+ tags: ['learning', 'coaching', 'ambient', 'journey'],
13
+ stability: 'experimental',
14
+ },
15
+
16
+ docs: ['docs.learning-journey.ambient-coach'],
17
+ });