@indra.ai/deva.security 0.13.29 → 0.14.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/feature/methods.js +1 -1
- package/index.js +11 -12
- package/package.json +15 -9
package/feature/methods.js
CHANGED
|
@@ -59,7 +59,7 @@ export default {
|
|
|
59
59
|
text.push(`${this.box.end}${key}:uid:json:${data.uid}`);
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
this.question(`${this.askChr}feecting parse ${text.join('\n')}
|
|
62
|
+
this.question(`${this.askChr}feecting parse ${text.join('\n')}`, {vars:this.vars}).then(parsed => {
|
|
63
63
|
this.belief('vedic', `uid:${packet.id.uid}`);
|
|
64
64
|
this.action('resolve', `uid:${packet.id.uid}`);
|
|
65
65
|
return resolve({
|
package/index.js
CHANGED
|
@@ -10,11 +10,11 @@ import { MongoClient, ObjectId } from 'mongodb';
|
|
|
10
10
|
import pkg from './package.json' with {type:'json'};
|
|
11
11
|
const {agent,vars} = pkg.data;
|
|
12
12
|
|
|
13
|
-
import vector from '
|
|
14
|
-
import guard from '
|
|
15
|
-
import wall from '
|
|
16
|
-
import
|
|
17
|
-
import
|
|
13
|
+
import vector from '@indra.ai/deva.vector';
|
|
14
|
+
import guard from '@indra.ai/deva.guard';
|
|
15
|
+
import wall from '@indra.ai/deva.wall';
|
|
16
|
+
import shield from '@indra.ai/deva.shield';
|
|
17
|
+
import defense from '@indra.ai/deva.defense';
|
|
18
18
|
import proxy from '/Users/quinnmichaels/Dev/deva.space/devas/deva.proxy/index.js';
|
|
19
19
|
|
|
20
20
|
// set the __dirname
|
|
@@ -76,12 +76,12 @@ const SecurityDeva = new Deva({
|
|
|
76
76
|
},
|
|
77
77
|
modules: {},
|
|
78
78
|
devas: {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
79
|
+
vector,
|
|
80
|
+
guard,
|
|
81
|
+
wall,
|
|
82
|
+
shield,
|
|
83
|
+
defense,
|
|
84
|
+
proxy,
|
|
85
85
|
},
|
|
86
86
|
func: {
|
|
87
87
|
/**************
|
|
@@ -116,7 +116,6 @@ const SecurityDeva = new Deva({
|
|
|
116
116
|
|
|
117
117
|
onReady(data, resolve) {
|
|
118
118
|
const {VLA} = this.info();
|
|
119
|
-
|
|
120
119
|
|
|
121
120
|
this.state('get', `mongo:global:${data.id.uid}`);
|
|
122
121
|
const {uri,database, log} = this.security().global.mongo;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "40899039373337698066",
|
|
3
3
|
"name": "@indra.ai/deva.security",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.14.1",
|
|
5
5
|
"license": "VLA:40899039373337698066 LICENSE.md",
|
|
6
6
|
"VLA": {
|
|
7
7
|
"uid": "40899039373337698066",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"type": "module",
|
|
35
35
|
"scripts": {
|
|
36
36
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
37
|
-
"latest": "npm i @indra.ai/deva@latest @indra.ai/deva.vector@latest --save"
|
|
37
|
+
"latest": "npm i @indra.ai/deva@latest @indra.ai/deva.vector@latest @indra.ai/deva.guard@latest @indra.ai/deva.wall@latest @indra.ai/deva.shield@latest @indra.ai/deva.defense@latest @indra.ai/deva.proxy@latest --save"
|
|
38
38
|
},
|
|
39
39
|
"repository": {
|
|
40
40
|
"type": "git",
|
|
@@ -59,8 +59,13 @@
|
|
|
59
59
|
},
|
|
60
60
|
"homepage": "https://deva.space/devas/security",
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@indra.ai/deva": "^1.29.
|
|
63
|
-
"@indra.ai/deva.
|
|
62
|
+
"@indra.ai/deva": "^1.29.31",
|
|
63
|
+
"@indra.ai/deva.defense": "^0.7.3",
|
|
64
|
+
"@indra.ai/deva.guard": "^0.9.1",
|
|
65
|
+
"@indra.ai/deva.proxy": "^0.7.0",
|
|
66
|
+
"@indra.ai/deva.shield": "^0.9.0",
|
|
67
|
+
"@indra.ai/deva.vector": "^0.9.0",
|
|
68
|
+
"@indra.ai/deva.wall": "^0.8.0",
|
|
64
69
|
"mongodb": "^6.20.0"
|
|
65
70
|
},
|
|
66
71
|
"data": {
|
|
@@ -91,10 +96,10 @@
|
|
|
91
96
|
"subtitle": "Handling security like a professional",
|
|
92
97
|
"describe": "Expert in security who sets the standard of excellence in strict chain of custody, legal, ethics, and privacy laws.",
|
|
93
98
|
"tweet": "Security Deva is an expert in security who sets the standard of excellence in strict chain of custody, legal, ethics, and privacy laws.",
|
|
94
|
-
"hashtags": "QuinnMichaels
|
|
99
|
+
"hashtags": "#QuinnMichaels #InsideTheNet #IndraAI #DevaWorld #SecurityDeva #VectorGuardWallDefenseShield",
|
|
95
100
|
"pronouns": "He, Him",
|
|
96
101
|
"gender": "DEVA",
|
|
97
|
-
"style": "Security officer with
|
|
102
|
+
"style": "Security officer with Military Precision.",
|
|
98
103
|
"voice": "ash",
|
|
99
104
|
"system": "Indra.ai.security",
|
|
100
105
|
"layout": "default",
|
|
@@ -108,9 +113,10 @@
|
|
|
108
113
|
"creator": "Quinn A Michaels",
|
|
109
114
|
"company": "Inside The Net, Inc.",
|
|
110
115
|
"status": "vedic",
|
|
111
|
-
"warning": "
|
|
116
|
+
"warning": "{{prompt.emoji}} {{profile.hashtag}} give us #Security from that whereof we are #Afraid. Help us, O {{profile.name}}, drive away #Foes and #Enemies. From all the #RegionsOfTheWorld send {{profile.name}}. {{profile.hashtag}} the #FoeSubduer #SwiftToAct #PromptToListen. {{profile.hashtag}} hold thy #SpiritFast #HoldItForLife and #NotForDeath #HoldItForThySecurity. Where those who #SubsistByTheFulfillmentOfTheLaw depart from the #EstablishedRuleOfLaw the {{profile.hashtag}} shall report them to #LegalAuthority following the #EstablishedRuleOfLaw, and #Punish with the designated 1000 pana #VedicSahasaFine for #ViolationOfDuty. {{profile.hashtags}}",
|
|
112
117
|
"copyright": "Copyright ©2000-2025 Quinn A Michaels. All rights reserved.",
|
|
113
|
-
"created": "Monday, May 22, 2023 at 9:26 AM"
|
|
118
|
+
"created": "Monday, May 22, 2023 at 9:26 AM",
|
|
119
|
+
"updated": "Friday, November 21, 2025 - 9:12:59 PM"
|
|
114
120
|
}
|
|
115
121
|
},
|
|
116
122
|
"vars": {
|
|
@@ -120,7 +126,7 @@
|
|
|
120
126
|
"init": "🟠 INIT",
|
|
121
127
|
"start": "🔵 START",
|
|
122
128
|
"enter": "🟢 ENTER",
|
|
123
|
-
"ready": "
|
|
129
|
+
"ready": "🔐 Security Deva Ready",
|
|
124
130
|
"stop": "🔴 STOP",
|
|
125
131
|
"exit": "🟡 EXIT",
|
|
126
132
|
"done": "🟣 DONE",
|