@indra.ai/deva.veda 0.0.44 → 0.0.45
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 +11 -0
- package/index.js +8 -1
- package/package.json +15 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
/**************
|
|
3
|
+
method: veda
|
|
4
|
+
params: packet
|
|
5
|
+
describe: The global wall feature that installs with every agent
|
|
6
|
+
***************/
|
|
7
|
+
async veda(packet) {
|
|
8
|
+
const veda = await this.methods.sign('veda', 'default', packet);
|
|
9
|
+
return veda;
|
|
10
|
+
},
|
|
11
|
+
};
|
package/index.js
CHANGED
|
@@ -32,7 +32,14 @@ const VEDA = new Deva({
|
|
|
32
32
|
agent,
|
|
33
33
|
vars,
|
|
34
34
|
utils,
|
|
35
|
-
listeners: {
|
|
35
|
+
listeners: {
|
|
36
|
+
'devacore:question'(packet) {
|
|
37
|
+
const echo = this.methods.echo('veda', 'q', packet);
|
|
38
|
+
},
|
|
39
|
+
'devacore:answer'(packet) {
|
|
40
|
+
const echo = this.methods.echo('veda', 'a', packet);
|
|
41
|
+
}
|
|
42
|
+
},
|
|
36
43
|
modules: {},
|
|
37
44
|
deva: {},
|
|
38
45
|
func,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": 6642777683539,
|
|
3
3
|
"name": "@indra.ai/deva.veda",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.45",
|
|
5
5
|
"author": "Quinn Michaels",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"copyright": "2025",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://deva.space/devas/veda",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@indra.ai/deva": "^1.5.
|
|
31
|
+
"@indra.ai/deva": "^1.5.53",
|
|
32
32
|
"cheerio": "^1.0.0",
|
|
33
33
|
"he": "^1.2.0"
|
|
34
34
|
},
|
|
@@ -81,6 +81,19 @@
|
|
|
81
81
|
"created": "August 23, 2022 @ 3:18 AM PST"
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
|
+
"laws": [
|
|
85
|
+
"After giving up even the above-mentioned sacrificial rites, a Brahmana should exert himself in (acquiring) the knowledge of the Soul, in extinguishing his passions, and in studying the Veda.",
|
|
86
|
+
"For that secures the attainment of the object of existence, especially in the case of a Brahmana, because by attaining that, not otherwise, a twice-born man has gained all his ends.",
|
|
87
|
+
"The Veda is the eternal eye of the manes, gods, and men; the Veda-ordinance (is) both beyond the sphere of (human) power, and beyond the sphere of (human) comprehension; that is a certain fact.",
|
|
88
|
+
"All those traditions (smriti) and those despicable systems of philosophy, which are not based on the Veda, produce no reward after death; for they are declared to be founded on Darkness.",
|
|
89
|
+
"All those doctrines, differing from the (Veda), which spring up and (soon) perish, are worthless and false, because they are of modern date.",
|
|
90
|
+
"The four castes, the three worlds, the four orders, the past, the present, and the future are all severally known by means of the Veda.",
|
|
91
|
+
"Sound, touch, colour, taste, and fifthly smell are known through the Veda alone, (their) production (is) through the (Vedic rites, which in this respect are) secondary acts.",
|
|
92
|
+
"The eternal lore of the Veda upholds all created beings; hence I hold that to be supreme, which is the means of (securing happiness to) these creatures.",
|
|
93
|
+
"Command of armies, royal authority, the office of a judge, and sovereignty over the whole world he (only) deserves who knows the Veda-science.",
|
|
94
|
+
"As a fire that has gained strength consumes even trees full of sap, even so he who knows the Veda burns out the taint of his soul which arises from (evil) acts.",
|
|
95
|
+
"In whatever order (a man) who knows the true meaning of the Veda-science may dwell, he becomes even while abiding in this world, fit for the union with Brahman."
|
|
96
|
+
],
|
|
84
97
|
"vars": {
|
|
85
98
|
"messages": {
|
|
86
99
|
"init": "🟠INIT",
|