@auxiora/runtime 1.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 +191 -0
- package/dist/agent-router.d.ts +104 -0
- package/dist/agent-router.d.ts.map +1 -0
- package/dist/agent-router.js +128 -0
- package/dist/agent-router.js.map +1 -0
- package/dist/block-stream.d.ts +94 -0
- package/dist/block-stream.d.ts.map +1 -0
- package/dist/block-stream.js +120 -0
- package/dist/block-stream.js.map +1 -0
- package/dist/index.d.ts +149 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2981 -0
- package/dist/index.js.map +1 -0
- package/dist/tool-loop-detection.d.ts +48 -0
- package/dist/tool-loop-detection.d.ts.map +1 -0
- package/dist/tool-loop-detection.js +249 -0
- package/dist/tool-loop-detection.js.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@auxiora/runtime",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "Runtime that connects all Auxiora components",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"express": "^5.1.0",
|
|
16
|
+
"@auxiora/audit": "1.3.0",
|
|
17
|
+
"@auxiora/logger": "1.3.0",
|
|
18
|
+
"@auxiora/intent": "1.3.0",
|
|
19
|
+
"@auxiora/media": "1.3.0",
|
|
20
|
+
"@auxiora/autonomy": "1.3.0",
|
|
21
|
+
"@auxiora/behaviors": "1.3.0",
|
|
22
|
+
"@auxiora/stt": "1.3.0",
|
|
23
|
+
"@auxiora/tts": "1.3.0",
|
|
24
|
+
"@auxiora/calendar-intelligence": "1.3.0",
|
|
25
|
+
"@auxiora/voice": "1.3.0",
|
|
26
|
+
"@auxiora/core": "1.3.0",
|
|
27
|
+
"@auxiora/gateway": "1.3.0",
|
|
28
|
+
"@auxiora/browser": "1.3.0",
|
|
29
|
+
"@auxiora/contacts": "1.3.0",
|
|
30
|
+
"@auxiora/config": "1.3.0",
|
|
31
|
+
"@auxiora/channels": "1.3.0",
|
|
32
|
+
"@auxiora/compose": "1.3.0",
|
|
33
|
+
"@auxiora/sessions": "1.3.0",
|
|
34
|
+
"@auxiora/research": "1.3.0",
|
|
35
|
+
"@auxiora/tools": "1.3.0",
|
|
36
|
+
"@auxiora/webhooks": "1.3.0",
|
|
37
|
+
"@auxiora/vault": "1.3.0",
|
|
38
|
+
"@auxiora/dashboard": "1.3.0",
|
|
39
|
+
"@auxiora/email-intelligence": "1.3.0",
|
|
40
|
+
"@auxiora/plugins": "1.3.0",
|
|
41
|
+
"@auxiora/providers": "1.3.0",
|
|
42
|
+
"@auxiora/memory": "1.3.0",
|
|
43
|
+
"@auxiora/router": "1.3.0",
|
|
44
|
+
"@auxiora/personality": "1.3.0",
|
|
45
|
+
"@auxiora/os-bridge": "1.3.0",
|
|
46
|
+
"@auxiora/social": "1.3.0",
|
|
47
|
+
"@auxiora/workflows": "1.3.0",
|
|
48
|
+
"@auxiora/orchestrator": "1.3.0",
|
|
49
|
+
"@auxiora/ambient": "1.3.0",
|
|
50
|
+
"@auxiora/connectors": "1.3.0",
|
|
51
|
+
"@auxiora/connector-homeassistant": "1.3.0",
|
|
52
|
+
"@auxiora/connector-github": "1.3.0",
|
|
53
|
+
"@auxiora/introspection": "1.3.0",
|
|
54
|
+
"@auxiora/connector-google-workspace": "1.3.0",
|
|
55
|
+
"@auxiora/agent-protocol": "1.3.0",
|
|
56
|
+
"@auxiora/connector-linear": "1.3.0",
|
|
57
|
+
"@auxiora/connector-microsoft": "1.3.0",
|
|
58
|
+
"@auxiora/notification-hub": "1.3.0",
|
|
59
|
+
"@auxiora/connector-notion": "1.3.0",
|
|
60
|
+
"@auxiora/conversation": "1.3.0",
|
|
61
|
+
"@auxiora/screen": "1.3.0",
|
|
62
|
+
"@auxiora/connector-social": "1.3.0",
|
|
63
|
+
"@auxiora/self-awareness": "1.3.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/express": "^5.0.0"
|
|
67
|
+
},
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=22.0.0"
|
|
70
|
+
},
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"access": "public"
|
|
73
|
+
},
|
|
74
|
+
"files": [
|
|
75
|
+
"dist/"
|
|
76
|
+
],
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "tsc",
|
|
79
|
+
"clean": "rm -rf dist",
|
|
80
|
+
"typecheck": "tsc --noEmit"
|
|
81
|
+
}
|
|
82
|
+
}
|