sentinel-agentos 0.3.4 → 0.3.5
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/README.md +1797 -1769
- package/dist/adapters/memory-bridge.d.ts +1 -7
- package/dist/adapters/memory-bridge.d.ts.map +1 -1
- package/dist/core.d.ts.map +1 -1
- package/dist/core.js +2 -0
- package/dist/core.js.map +1 -1
- package/dist/evaluator/feedback.d.ts +6 -4
- package/dist/evaluator/feedback.d.ts.map +1 -1
- package/dist/evaluator/feedback.js +22 -28
- package/dist/evaluator/feedback.js.map +1 -1
- package/dist/memory/semantic.d.ts +10 -18
- package/dist/memory/semantic.d.ts.map +1 -1
- package/dist/memory/semantic.js +51 -29
- package/dist/memory/semantic.js.map +1 -1
- package/dist/types/index.d.ts +9 -3
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +69 -69
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sentinel-agentos",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Sentinel AgentOS — 确定性 Guard 层 + 分层记忆 + 自动评估,让任何 Agent 变得可靠、可审计、可改进",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"agent",
|
|
7
|
-
"ai-agent",
|
|
8
|
-
"guard",
|
|
9
|
-
"safety",
|
|
10
|
-
"memory",
|
|
11
|
-
"evaluation",
|
|
12
|
-
"sentinel",
|
|
13
|
-
"agentos"
|
|
14
|
-
],
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"author": "Annie-Bot",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "https://github.com/jishuanjimingtian/sentinel-agentos"
|
|
20
|
-
},
|
|
21
|
-
"main": "dist/index.js",
|
|
22
|
-
"types": "dist/index.d.ts",
|
|
23
|
-
"bin": {
|
|
24
|
-
"sentinel-agentos": "dist/cli.js"
|
|
25
|
-
},
|
|
26
|
-
"files": [
|
|
27
|
-
"dist/",
|
|
28
|
-
"scripts/sentinel-light.js",
|
|
29
|
-
"README.md",
|
|
30
|
-
"LICENSE"
|
|
31
|
-
],
|
|
32
|
-
"scripts": {
|
|
33
|
-
"build": "tsc",
|
|
34
|
-
"dev": "tsc --watch",
|
|
35
|
-
"test": "jest",
|
|
36
|
-
"test:watch": "jest --watch",
|
|
37
|
-
"lint": "eslint src/ --ext .ts",
|
|
38
|
-
"lint:fix": "eslint src/ --ext .ts --fix",
|
|
39
|
-
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
40
|
-
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
41
|
-
"typecheck": "tsc --noEmit",
|
|
42
|
-
"prepublishOnly": "npm run build"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@types/cors": "^2.8.19",
|
|
46
|
-
"@types/express": "^5.0.6",
|
|
47
|
-
"@types/jest": "^29.5.0",
|
|
48
|
-
"@types/node": "^20.0.0",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
50
|
-
"@typescript-eslint/parser": "^7.0.0",
|
|
51
|
-
"eslint": "^8.0.0",
|
|
52
|
-
"eslint-config-prettier": "^9.0.0",
|
|
53
|
-
"fluent-ffmpeg": "^2.1.3",
|
|
54
|
-
"jest": "^29.0.0",
|
|
55
|
-
"prettier": "^3.0.0",
|
|
56
|
-
"ts-jest": "^29.0.0",
|
|
57
|
-
"typescript": "^5.4.0",
|
|
58
|
-
"videoshow": "^0.1.12"
|
|
59
|
-
},
|
|
60
|
-
"engines": {
|
|
61
|
-
"node": ">=18"
|
|
62
|
-
},
|
|
63
|
-
"dependencies": {
|
|
64
|
-
"cors": "^2.8.6",
|
|
65
|
-
"express": "^5.2.1",
|
|
66
|
-
"puppeteer": "^25.1.0",
|
|
67
|
-
"ws": "^8.21.0"
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "sentinel-agentos",
|
|
3
|
+
"version": "0.3.5",
|
|
4
|
+
"description": "Sentinel AgentOS — 确定性 Guard 层 + 分层记忆 + 自动评估,让任何 Agent 变得可靠、可审计、可改进",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent",
|
|
7
|
+
"ai-agent",
|
|
8
|
+
"guard",
|
|
9
|
+
"safety",
|
|
10
|
+
"memory",
|
|
11
|
+
"evaluation",
|
|
12
|
+
"sentinel",
|
|
13
|
+
"agentos"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Annie-Bot",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/jishuanjimingtian/sentinel-agentos"
|
|
20
|
+
},
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"types": "dist/index.d.ts",
|
|
23
|
+
"bin": {
|
|
24
|
+
"sentinel-agentos": "dist/cli.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/",
|
|
28
|
+
"scripts/sentinel-light.js",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc",
|
|
34
|
+
"dev": "tsc --watch",
|
|
35
|
+
"test": "jest",
|
|
36
|
+
"test:watch": "jest --watch",
|
|
37
|
+
"lint": "eslint src/ --ext .ts",
|
|
38
|
+
"lint:fix": "eslint src/ --ext .ts --fix",
|
|
39
|
+
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
40
|
+
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"prepublishOnly": "npm run build"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/cors": "^2.8.19",
|
|
46
|
+
"@types/express": "^5.0.6",
|
|
47
|
+
"@types/jest": "^29.5.0",
|
|
48
|
+
"@types/node": "^20.0.0",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
50
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
51
|
+
"eslint": "^8.0.0",
|
|
52
|
+
"eslint-config-prettier": "^9.0.0",
|
|
53
|
+
"fluent-ffmpeg": "^2.1.3",
|
|
54
|
+
"jest": "^29.0.0",
|
|
55
|
+
"prettier": "^3.0.0",
|
|
56
|
+
"ts-jest": "^29.0.0",
|
|
57
|
+
"typescript": "^5.4.0",
|
|
58
|
+
"videoshow": "^0.1.12"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=18"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"cors": "^2.8.6",
|
|
65
|
+
"express": "^5.2.1",
|
|
66
|
+
"puppeteer": "^25.1.0",
|
|
67
|
+
"ws": "^8.21.0"
|
|
68
|
+
}
|
|
69
|
+
}
|