@agenr/skeln-plugin 3.3.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.
- package/LICENSE +21 -0
- package/README.md +42 -0
- package/dist/chunk-5LADPJ4C.js +2436 -0
- package/dist/chunk-KH52KJSJ.js +874 -0
- package/dist/chunk-M5M65AYP.js +4079 -0
- package/dist/chunk-RYMSM3OS.js +3063 -0
- package/dist/chunk-Z5X7T4QZ.js +7990 -0
- package/dist/chunk-ZYADFKX3.js +115 -0
- package/dist/claim-slot-policy-CQ-h0GaV.d.ts +880 -0
- package/dist/cli.d.ts +1 -0
- package/dist/index.d.ts +2009 -0
- package/dist/index.js +6508 -0
- package/dist/internal-eval-server.d.ts +1 -0
- package/dist/internal-recall-eval-server.d.ts +1 -0
- package/package.json +61 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agenr/skeln-plugin",
|
|
3
|
+
"version": "3.3.0",
|
|
4
|
+
"description": "agenr memory plugin for Skeln",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"default": "./dist/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"skeln": {
|
|
18
|
+
"id": "agenr",
|
|
19
|
+
"displayName": "agenr",
|
|
20
|
+
"description": "Durable memory for Skeln agents via agenr_store, agenr_recall, agenr_fetch, agenr_update, agenr_work, and goal aliases.",
|
|
21
|
+
"extensions": [
|
|
22
|
+
"./dist/index.js"
|
|
23
|
+
],
|
|
24
|
+
"config": {
|
|
25
|
+
"dbPath": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "Optional override for the agenr knowledge database. Defaults to the dbPath in agenr config.json, then ~/.agenr/knowledge.db."
|
|
28
|
+
},
|
|
29
|
+
"configPath": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "Optional path to agenr config.json. Defaults to AGENR_CONFIG_PATH, then config.json next to dbPath when dbPath is set, then ~/.agenr/config.json."
|
|
32
|
+
},
|
|
33
|
+
"project": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"description": "Optional project label for agenr recall and store scope. Defaults to the basename of the git repository root when available."
|
|
36
|
+
},
|
|
37
|
+
"wip": {
|
|
38
|
+
"type": "boolean",
|
|
39
|
+
"description": "When true, inject transient working-set context before each turn. Overrides memoryPolicy.workingContext.enabled."
|
|
40
|
+
},
|
|
41
|
+
"memoryPolicy": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "JSON object of memory-policy overrides for slot policies, session-start injection, and before-turn recall. Same shape as the OpenClaw agenr plugin memoryPolicy block.",
|
|
44
|
+
"default": "{\"sessionStart\":{\"enabled\":false,\"coreMemory\":false,\"relevantDurableMemory\":false},\"beforeTurn\":{\"enabled\":false,\"procedureSuggestion\":false},\"workingContext\":{\"enabled\":true}}"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@libsql/client": "^0.17.2",
|
|
50
|
+
"@earendil-works/pi-ai": "^0.78.0",
|
|
51
|
+
"yaml": "^2.8.3"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=24"
|
|
55
|
+
},
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "node build.mjs",
|
|
59
|
+
"build:debug": "node build.mjs"
|
|
60
|
+
}
|
|
61
|
+
}
|