@indexnetwork/protocol 10.0.2-rc.442.1 → 10.0.3-rc.444.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.
package/CHANGELOG.md CHANGED
@@ -55,6 +55,9 @@ pin a supported release, use `latest`.
55
55
  `SynthesisResult` types. Minor bump: additive surface only.
56
56
 
57
57
  ### Fixed
58
+ - Add an independent complete-payload golden digest and stronger audit/report leak
59
+ sentinels for the historical discovery seed serializer, and clarify the H4 review
60
+ checkpoint chronology (IND-637; 10.0.3).
58
61
  - Repair the audited five-case historical evaluation corpus (IND-637; 10.0.2):
59
62
  replace H1 with the approved Ted Nierenberg → Jens Quistgaard collaboration,
60
63
  reverse H5 to the required Drew Weissman → Katalin Karikó direction, migrate
@@ -23,11 +23,13 @@ const systemPrompt = `
23
23
  When given raw data only: Infer name, bio, location, narrative.context, and extract skills and interests.
24
24
 
25
25
  PRIVACY: identity.bio and narrative.context are public-facing. Never include email addresses, phone numbers, physical addresses, government IDs, or other contact identifiers — even if they appear in the raw data. Describe the person professionally; do not embed ways to contact them.
26
+
27
+ BIO STYLE: identity.bio must never contain the person's name or any pronouns (he, she, they). Write role-led, subjectless sentences that start with the role or a verb, e.g. "Software engineer based in Berlin focused on developer tooling. Previously built payments infrastructure at a fintech startup. Enjoys mentoring early-career engineers."
26
28
  `;
27
29
  const responseFormat = z.object({
28
30
  identity: z.object({
29
31
  name: z.string().describe("The user's full name"),
30
- bio: z.string().describe("Professional summary (2-3 sentences) only; no email, phone, physical address, government ID, or other contact identifiers"),
32
+ bio: z.string().describe("Professional summary (2-3 sentences), role-led and subjectless (e.g. 'Software engineer based in Berlin focused on...'); never the person's name or pronouns; no email, phone, physical address, government ID, or other contact identifiers"),
31
33
  location: z.string().describe("Inferred location (City, Country) or 'Remote'"),
32
34
  }),
33
35
  narrative: z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indexnetwork/protocol",
3
- "version": "10.0.2-rc.442.1",
3
+ "version": "10.0.3-rc.444.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",