@themoltnet/pi-extension 0.25.0 → 0.26.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -8
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -7781,9 +7781,7 @@ function createMoltNetTools(config) {
7781
7781
  Type.Literal("episodic"),
7782
7782
  Type.Literal("semantic"),
7783
7783
  Type.Literal("procedural"),
7784
- Type.Literal("reflection"),
7785
- Type.Literal("identity"),
7786
- Type.Literal("soul")
7784
+ Type.Literal("reflection")
7787
7785
  ]), { description: "Scope the tag count to these entry types" }))
7788
7786
  }),
7789
7787
  async execute(_id, params) {
@@ -7822,7 +7820,7 @@ function createMoltNetTools(config) {
7822
7820
  description: "Tags to exclude — entry must have NONE of these. Max 20.",
7823
7821
  maxItems: 20
7824
7822
  })),
7825
- entryType: Type.Optional(Type.String({ description: "Filter by entry type (procedural, semantic, episodic, reflection, identity, soul)." })),
7823
+ entryType: Type.Optional(Type.String({ description: "Filter by entry type (procedural, semantic, episodic, reflection)." })),
7826
7824
  taskFilter: Type.Optional(Type.Object({
7827
7825
  taskId: Type.Optional(Type.String()),
7828
7826
  taskType: Type.Optional(Type.String()),
@@ -7923,8 +7921,8 @@ function createMoltNetTools(config) {
7923
7921
  maxItems: 20
7924
7922
  })),
7925
7923
  entryTypes: Type.Optional(Type.Array(Type.String(), {
7926
- description: "Restrict to these entry types (procedural, semantic, episodic, reflection, identity, soul). Max 6.",
7927
- maxItems: 6
7924
+ description: "Restrict to these entry types (procedural, semantic, episodic, reflection). Max 4.",
7925
+ maxItems: 4
7928
7926
  })),
7929
7927
  taskFilter: Type.Optional(Type.Object({
7930
7928
  taskId: Type.Optional(Type.String()),
@@ -18592,8 +18590,8 @@ function buildJudgePackUserPrompt(input, ctx) {
18592
18590
  " to the array of source entry IDs (max 50). Do NOT call",
18593
18591
  " `moltnet_get_entry` per entry. For each returned entry, classify as",
18594
18592
  " REQUIRED-SIGNED or OPTIONAL using this rule:",
18595
- " • REQUIRED-SIGNED iff `entryType` is `identity` or `soul`, OR",
18596
- " `entryType` is `procedural` AND `tags` contains `risk:high`.",
18593
+ " • REQUIRED-SIGNED iff `entryType` is `procedural` AND `tags`",
18594
+ " contains `risk:high`.",
18597
18595
  " • All others (`episodic`, `reflection`, unsigned `semantic`,",
18598
18596
  " `procedural` with `risk:low`/`risk:medium`/no risk tag) are",
18599
18597
  " OPTIONAL — DO NOT penalize when unsigned.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@themoltnet/pi-extension",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
4
4
  "type": "module",
5
5
  "description": "MoltNet pi extension — sandboxed tool execution in Gondolin VMs with MoltNet identity and persistent memory",
6
6
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  "@opentelemetry/api": "^1.9.0",
38
38
  "typebox": "^1.2.8",
39
39
  "@themoltnet/sdk": "0.108.0",
40
- "@themoltnet/agent-runtime": "0.25.0"
40
+ "@themoltnet/agent-runtime": "0.26.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@earendil-works/pi-coding-agent": ">=0.74.0",
@@ -61,8 +61,8 @@
61
61
  "vite": "^8.0.0",
62
62
  "vite-plugin-dts": "^4.5.4",
63
63
  "vitest": "^3.0.0",
64
- "@moltnet/tasks": "0.1.0",
65
- "@moltnet/crypto-service": "0.1.0"
64
+ "@moltnet/crypto-service": "0.1.0",
65
+ "@moltnet/tasks": "0.1.0"
66
66
  },
67
67
  "engines": {
68
68
  "node": ">=22"