@contractspec/example.product-intent 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.
@@ -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=6
6
- Bundled 6 modules in 22ms
6
+ Bundled 6 modules in 39ms
7
7
 
8
8
  ./example.js 0.81 KB (entry point)
9
9
  ./index.js 10.72 KB (entry point)
@@ -13,7 +13,7 @@ Bundled 6 modules in 22ms
13
13
  ./posthog-signals.js 7.59 KB (entry point)
14
14
 
15
15
  [contractspec-bun-build] transpile target=node root=src entries=6
16
- Bundled 6 modules in 28ms
16
+ Bundled 6 modules in 37ms
17
17
 
18
18
  ./example.js 0.81 KB (entry point)
19
19
  ./index.js 10.73 KB (entry point)
package/AGENTS.md ADDED
@@ -0,0 +1,33 @@
1
+ # AI Agent Guide -- `@contractspec/example.product-intent`
2
+
3
+ Scope: `packages/examples/product-intent/*`
4
+
5
+ Product intent example: evidence ingestion, PostHog signal extraction, and prompt-ready outputs for PM discovery.
6
+
7
+ ## Quick Context
8
+
9
+ - **Layer**: example
10
+ - **Related Packages**: `lib.contracts-spec`, `lib.contracts-integrations`, `lib.ai-agent`, `lib.product-intent-utils`, `integration.providers-impls`
11
+
12
+ ## What This Demonstrates
13
+
14
+ - Evidence loading and ingestion pipeline
15
+ - PostHog signal extraction for product analytics
16
+ - Action synchronization across tools
17
+ - Script-based execution pattern
18
+
19
+ ## Public Exports
20
+
21
+ - `.` -- root barrel
22
+ - `./load-evidence` -- evidence ingestion
23
+ - `./posthog-signals` -- PostHog signal extraction
24
+ - `./sync-actions` -- action synchronization
25
+ - `./script` -- runnable script
26
+ - `./example`
27
+
28
+ ## Local Commands
29
+
30
+ - Build: `bun run build`
31
+ - Dev: `bun run dev`
32
+ - Test: `bun test`
33
+ - Typecheck: `bun run typecheck`
package/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # @contractspec/example.product-intent
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/integration.providers-impls@3.2.0
13
+ - @contractspec/lib.contracts-integrations@3.2.0
14
+ - @contractspec/lib.product-intent-utils@3.2.0
15
+ - @contractspec/lib.contracts-spec@3.2.0
16
+ - @contractspec/lib.ai-agent@3.2.0
17
+
18
+ ## 3.1.1
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [02c0cc5]
23
+ - @contractspec/lib.contracts-integrations@3.1.1
24
+ - @contractspec/lib.contracts-spec@3.1.1
25
+ - @contractspec/integration.providers-impls@3.1.1
26
+ - @contractspec/lib.product-intent-utils@3.1.1
27
+ - @contractspec/lib.ai-agent@3.1.1
28
+
29
+ ## 3.1.0
30
+
31
+ ### Minor Changes
32
+
33
+ - 28987eb: chore: upgrade dependencies
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [f2a4faf]
38
+ - Updated dependencies [28987eb]
39
+ - Updated dependencies [28987eb]
40
+ - @contractspec/lib.contracts-spec@3.1.0
41
+ - @contractspec/lib.ai-agent@3.1.0
42
+ - @contractspec/integration.providers-impls@3.1.0
43
+ - @contractspec/lib.contracts-integrations@3.1.0
44
+ - @contractspec/lib.product-intent-utils@3.1.0
45
+
3
46
  ## 3.0.0
4
47
 
5
48
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.product-intent",
3
- "version": "3.0.0",
3
+ "version": "3.2.0",
4
4
  "description": "Product intent example: evidence ingestion and prompt-ready outputs.",
5
5
  "keywords": [
6
6
  "contractspec",
@@ -65,16 +65,16 @@
65
65
  "typecheck": "tsc --noEmit"
66
66
  },
67
67
  "dependencies": {
68
- "@contractspec/lib.contracts-spec": "3.0.0",
69
- "@contractspec/lib.contracts-integrations": "3.0.0",
70
- "@contractspec/lib.ai-agent": "3.0.0",
71
- "@contractspec/lib.product-intent-utils": "3.0.0",
72
- "@contractspec/integration.providers-impls": "3.0.0"
68
+ "@contractspec/lib.contracts-spec": "3.2.0",
69
+ "@contractspec/lib.contracts-integrations": "3.2.0",
70
+ "@contractspec/lib.ai-agent": "3.2.0",
71
+ "@contractspec/lib.product-intent-utils": "3.2.0",
72
+ "@contractspec/integration.providers-impls": "3.2.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@contractspec/tool.typescript": "3.0.0",
75
+ "@contractspec/tool.typescript": "3.2.0",
76
76
  "typescript": "^5.9.3",
77
- "@contractspec/tool.bun": "3.0.0"
77
+ "@contractspec/tool.bun": "3.2.0"
78
78
  },
79
79
  "publishConfig": {
80
80
  "access": "public",