@contractspec/example.product-intent 2.9.1 → 3.1.1

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 34ms
6
+ Bundled 6 modules in 21ms
7
7
 
8
8
  ./example.js 0.81 KB (entry point)
9
9
  ./index.js 10.72 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,53 @@
1
1
  # @contractspec/example.product-intent
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [02c0cc5]
8
+ - @contractspec/lib.contracts-integrations@3.1.1
9
+ - @contractspec/lib.contracts-spec@3.1.1
10
+ - @contractspec/integration.providers-impls@3.1.1
11
+ - @contractspec/lib.product-intent-utils@3.1.1
12
+ - @contractspec/lib.ai-agent@3.1.1
13
+
14
+ ## 3.1.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 28987eb: chore: upgrade dependencies
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [f2a4faf]
23
+ - Updated dependencies [28987eb]
24
+ - Updated dependencies [28987eb]
25
+ - @contractspec/lib.contracts-spec@3.1.0
26
+ - @contractspec/lib.ai-agent@3.1.0
27
+ - @contractspec/integration.providers-impls@3.1.0
28
+ - @contractspec/lib.contracts-integrations@3.1.0
29
+ - @contractspec/lib.product-intent-utils@3.1.0
30
+
31
+ ## 3.0.0
32
+
33
+ ### Major Changes
34
+
35
+ - b781ce6: feat: improve ai readiness
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [7cbdb7f]
40
+ - Updated dependencies [c608804]
41
+ - Updated dependencies [e3bc858]
42
+ - Updated dependencies [b19ae0a]
43
+ - Updated dependencies [aa4a9c9]
44
+ - Updated dependencies [b781ce6]
45
+ - @contractspec/lib.contracts-spec@3.0.0
46
+ - @contractspec/lib.contracts-integrations@3.0.0
47
+ - @contractspec/integration.providers-impls@3.0.0
48
+ - @contractspec/lib.product-intent-utils@3.0.0
49
+ - @contractspec/lib.ai-agent@3.0.0
50
+
3
51
  ## 2.9.1
4
52
 
5
53
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.product-intent",
3
- "version": "2.9.1",
3
+ "version": "3.1.1",
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": "2.10.0",
69
- "@contractspec/lib.contracts-integrations": "2.10.0",
70
- "@contractspec/lib.ai-agent": "2.9.1",
71
- "@contractspec/lib.product-intent-utils": "2.9.1",
72
- "@contractspec/integration.providers-impls": "2.10.0"
68
+ "@contractspec/lib.contracts-spec": "3.1.1",
69
+ "@contractspec/lib.contracts-integrations": "3.1.1",
70
+ "@contractspec/lib.ai-agent": "3.1.1",
71
+ "@contractspec/lib.product-intent-utils": "3.1.1",
72
+ "@contractspec/integration.providers-impls": "3.1.1"
73
73
  },
74
74
  "devDependencies": {
75
- "@contractspec/tool.typescript": "2.9.0",
75
+ "@contractspec/tool.typescript": "3.1.0",
76
76
  "typescript": "^5.9.3",
77
- "@contractspec/tool.bun": "2.9.0"
77
+ "@contractspec/tool.bun": "3.1.0"
78
78
  },
79
79
  "publishConfig": {
80
80
  "access": "public",