@lssm/example.agent-console 0.0.0-canary-20251217054315 → 0.0.0-canary-20251217060804
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/.turbo/turbo-build$colon$bundle.log +81 -0
- package/CHANGELOG.md +6 -36
- package/dist/agent/agent.contracts.d.ts +504 -0
- package/dist/agent/agent.entity.d.ts +54 -0
- package/dist/agent/agent.enum.d.ts +17 -0
- package/dist/agent/agent.event.d.ts +127 -0
- package/dist/agent/agent.handler.d.ts +99 -0
- package/dist/agent/agent.presentation.d.ts +18 -0
- package/dist/agent/agent.schema.d.ts +400 -0
- package/dist/agent/index.d.ts +8 -0
- package/dist/agent.feature.d.ts +11 -0
- package/dist/docs/agent-console.docblock.d.ts +1 -0
- package/dist/docs/index.d.ts +1 -0
- package/dist/example.d.ts +39 -0
- package/dist/handlers/index.d.ts +4 -0
- package/dist/index.d.ts +30 -0
- package/dist/presentations/index.d.ts +4 -0
- package/dist/run/index.d.ts +8 -0
- package/dist/run/run.contracts.d.ts +713 -0
- package/dist/run/run.entity.d.ts +81 -0
- package/dist/run/run.enum.d.ts +21 -0
- package/dist/run/run.event.d.ts +289 -0
- package/dist/run/run.handler.d.ts +202 -0
- package/dist/run/run.presentation.d.ts +14 -0
- package/dist/run/run.schema.d.ts +415 -0
- package/dist/shared/index.d.ts +4 -0
- package/dist/shared/mock-agents.d.ts +87 -0
- package/dist/shared/mock-runs.d.ts +119 -0
- package/dist/shared/mock-tools.d.ts +243 -0
- package/dist/tool/index.d.ts +8 -0
- package/dist/tool/tool.contracts.d.ts +404 -0
- package/dist/tool/tool.entity.d.ts +41 -0
- package/dist/tool/tool.enum.d.ts +17 -0
- package/dist/tool/tool.event.d.ts +102 -0
- package/dist/tool/tool.handler.d.ts +314 -0
- package/dist/tool/tool.presentation.d.ts +14 -0
- package/dist/tool/tool.schema.d.ts +217 -0
- package/package.json +43 -43
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.agent-console",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251217060804",
|
|
4
4
|
"description": "Agent Console example - AI agent orchestration with tools, runs, and logs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
|
-
".": "./
|
|
10
|
-
"./agent": "./
|
|
11
|
-
"./agent.feature": "./
|
|
12
|
-
"./agent/agent.contracts": "./
|
|
13
|
-
"./agent/agent.entity": "./
|
|
14
|
-
"./agent/agent.enum": "./
|
|
15
|
-
"./agent/agent.event": "./
|
|
16
|
-
"./agent/agent.handler": "./
|
|
17
|
-
"./agent/agent.presentation": "./
|
|
18
|
-
"./agent/agent.schema": "./
|
|
19
|
-
"./docs": "./
|
|
20
|
-
"./docs/agent-console.docblock": "./
|
|
21
|
-
"./example": "./
|
|
22
|
-
"./handlers": "./
|
|
23
|
-
"./presentations": "./
|
|
24
|
-
"./run": "./
|
|
25
|
-
"./run/run.contracts": "./
|
|
26
|
-
"./run/run.entity": "./
|
|
27
|
-
"./run/run.enum": "./
|
|
28
|
-
"./run/run.event": "./
|
|
29
|
-
"./run/run.handler": "./
|
|
30
|
-
"./run/run.presentation": "./
|
|
31
|
-
"./run/run.schema": "./
|
|
32
|
-
"./shared": "./
|
|
33
|
-
"./shared/mock-agents": "./
|
|
34
|
-
"./shared/mock-runs": "./
|
|
35
|
-
"./shared/mock-tools": "./
|
|
36
|
-
"./tool": "./
|
|
37
|
-
"./tool/tool.contracts": "./
|
|
38
|
-
"./tool/tool.entity": "./
|
|
39
|
-
"./tool/tool.enum": "./
|
|
40
|
-
"./tool/tool.event": "./
|
|
41
|
-
"./tool/tool.handler": "./
|
|
42
|
-
"./tool/tool.presentation": "./
|
|
43
|
-
"./tool/tool.schema": "./
|
|
9
|
+
".": "./dist/index.js",
|
|
10
|
+
"./agent": "./dist/agent/index.js",
|
|
11
|
+
"./agent.feature": "./dist/agent.feature.js",
|
|
12
|
+
"./agent/agent.contracts": "./dist/agent/agent.contracts.js",
|
|
13
|
+
"./agent/agent.entity": "./dist/agent/agent.entity.js",
|
|
14
|
+
"./agent/agent.enum": "./dist/agent/agent.enum.js",
|
|
15
|
+
"./agent/agent.event": "./dist/agent/agent.event.js",
|
|
16
|
+
"./agent/agent.handler": "./dist/agent/agent.handler.js",
|
|
17
|
+
"./agent/agent.presentation": "./dist/agent/agent.presentation.js",
|
|
18
|
+
"./agent/agent.schema": "./dist/agent/agent.schema.js",
|
|
19
|
+
"./docs": "./dist/docs/index.js",
|
|
20
|
+
"./docs/agent-console.docblock": "./dist/docs/agent-console.docblock.js",
|
|
21
|
+
"./example": "./dist/example.js",
|
|
22
|
+
"./handlers": "./dist/handlers/index.js",
|
|
23
|
+
"./presentations": "./dist/presentations/index.js",
|
|
24
|
+
"./run": "./dist/run/index.js",
|
|
25
|
+
"./run/run.contracts": "./dist/run/run.contracts.js",
|
|
26
|
+
"./run/run.entity": "./dist/run/run.entity.js",
|
|
27
|
+
"./run/run.enum": "./dist/run/run.enum.js",
|
|
28
|
+
"./run/run.event": "./dist/run/run.event.js",
|
|
29
|
+
"./run/run.handler": "./dist/run/run.handler.js",
|
|
30
|
+
"./run/run.presentation": "./dist/run/run.presentation.js",
|
|
31
|
+
"./run/run.schema": "./dist/run/run.schema.js",
|
|
32
|
+
"./shared": "./dist/shared/index.js",
|
|
33
|
+
"./shared/mock-agents": "./dist/shared/mock-agents.js",
|
|
34
|
+
"./shared/mock-runs": "./dist/shared/mock-runs.js",
|
|
35
|
+
"./shared/mock-tools": "./dist/shared/mock-tools.js",
|
|
36
|
+
"./tool": "./dist/tool/index.js",
|
|
37
|
+
"./tool/tool.contracts": "./dist/tool/tool.contracts.js",
|
|
38
|
+
"./tool/tool.entity": "./dist/tool/tool.entity.js",
|
|
39
|
+
"./tool/tool.enum": "./dist/tool/tool.enum.js",
|
|
40
|
+
"./tool/tool.event": "./dist/tool/tool.event.js",
|
|
41
|
+
"./tool/tool.handler": "./dist/tool/tool.handler.js",
|
|
42
|
+
"./tool/tool.presentation": "./dist/tool/tool.presentation.js",
|
|
43
|
+
"./tool/tool.schema": "./dist/tool/tool.schema.js",
|
|
44
44
|
"./*": "./*"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
@@ -57,16 +57,16 @@
|
|
|
57
57
|
"test": "bun run"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
61
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
62
|
-
"@lssm/lib.identity-rbac": "0.0.0-canary-
|
|
63
|
-
"@lssm/module.audit-trail": "0.0.0-canary-
|
|
64
|
-
"@lssm/lib.jobs": "0.0.0-canary-
|
|
60
|
+
"@lssm/lib.schema": "0.0.0-canary-20251217060804",
|
|
61
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251217060804",
|
|
62
|
+
"@lssm/lib.identity-rbac": "0.0.0-canary-20251217060804",
|
|
63
|
+
"@lssm/module.audit-trail": "0.0.0-canary-20251217060804",
|
|
64
|
+
"@lssm/lib.jobs": "0.0.0-canary-20251217060804",
|
|
65
65
|
"zod": "^4.1.13"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
69
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
68
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251217060804",
|
|
69
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251217060804",
|
|
70
70
|
"tsdown": "^0.17.4",
|
|
71
71
|
"typescript": "^5.9.3"
|
|
72
72
|
},
|