@agent-shield/plugin-elizaos 0.4.1 → 0.4.2
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 +2 -2
- package/package.json +10 -11
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ The plugin reads environment variables to create a `ShieldedWallet` automaticall
|
|
|
41
41
|
|
|
42
42
|
## Actions
|
|
43
43
|
|
|
44
|
-
The plugin provides
|
|
44
|
+
The plugin provides 5 actions that agents can invoke conversationally:
|
|
45
45
|
|
|
46
46
|
### `SHIELD_STATUS`
|
|
47
47
|
|
|
@@ -246,7 +246,7 @@ Providers give the agent continuous budget awareness. The evaluator proactively
|
|
|
246
246
|
|
|
247
247
|
```bash
|
|
248
248
|
npm test
|
|
249
|
-
# Runs
|
|
249
|
+
# Runs 32 tests covering all actions, providers, evaluator, config, caching, and event wiring
|
|
250
250
|
```
|
|
251
251
|
|
|
252
252
|
## Related Packages
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-shield/plugin-elizaos",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"author": "Kaleb Rupe (https://x.com/MightieMags)",
|
|
5
5
|
"homepage": "https://github.com/Kaleb-Rupe/agentshield#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -10,12 +10,6 @@
|
|
|
10
10
|
"description": "AgentShield plugin for ElizaOS — shield() wrapper actions, providers, and policy evaluators",
|
|
11
11
|
"main": "dist/index.js",
|
|
12
12
|
"types": "dist/index.d.ts",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsc",
|
|
15
|
-
"clean": "rm -rf dist",
|
|
16
|
-
"test": "mocha --require ts-node/register tests/**/*.test.ts --timeout 30000",
|
|
17
|
-
"prepublishOnly": "npm run build"
|
|
18
|
-
},
|
|
19
13
|
"files": [
|
|
20
14
|
"dist/**/*",
|
|
21
15
|
"README.md"
|
|
@@ -37,14 +31,14 @@
|
|
|
37
31
|
"devDependencies": {
|
|
38
32
|
"typescript": "^5.3.3",
|
|
39
33
|
"@elizaos/core": "^0.1.0",
|
|
40
|
-
"@agent-shield/solana": "workspace:*",
|
|
41
|
-
"@agent-shield/custody-crossmint": "workspace:*",
|
|
42
34
|
"@solana/web3.js": "^1.95.0",
|
|
43
35
|
"@types/chai": "^4.3.11",
|
|
44
36
|
"@types/mocha": "^10.0.6",
|
|
45
37
|
"chai": "^4.4.1",
|
|
46
38
|
"mocha": "^10.3.0",
|
|
47
|
-
"ts-node": "^10.9.2"
|
|
39
|
+
"ts-node": "^10.9.2",
|
|
40
|
+
"@agent-shield/solana": "0.3.2",
|
|
41
|
+
"@agent-shield/custody-crossmint": "0.1.3"
|
|
48
42
|
},
|
|
49
43
|
"keywords": [
|
|
50
44
|
"solana",
|
|
@@ -60,5 +54,10 @@
|
|
|
60
54
|
"type": "git",
|
|
61
55
|
"url": "https://github.com/Kaleb-Rupe/agentshield",
|
|
62
56
|
"directory": "plugins/elizaos"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsc",
|
|
60
|
+
"clean": "rm -rf dist",
|
|
61
|
+
"test": "mocha --require ts-node/register tests/**/*.test.ts --timeout 30000"
|
|
63
62
|
}
|
|
64
|
-
}
|
|
63
|
+
}
|