@lssm/example.agent-console 0.0.0-canary-20251223201013 → 0.0.0-canary-20251223213411
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 +12 -12
- package/.turbo/turbo-build.log +16 -16
- package/CHANGELOG.md +6 -6
- package/dist/agent/agent.entity.d.ts +36 -36
- package/dist/agent/agent.entity.d.ts.map +1 -1
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.enum.d.ts.map +1 -1
- package/dist/agent/agent.event.d.ts +30 -30
- package/dist/agent/agent.event.d.ts.map +1 -1
- package/dist/agent/agent.operation.d.ts +125 -125
- package/dist/agent/agent.presentation.d.ts +4 -4
- package/dist/agent/agent.presentation.d.ts.map +1 -1
- package/dist/agent/agent.presentation.js.map +1 -1
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/agent/agent.schema.d.ts.map +1 -1
- package/dist/run/run.event.d.ts +70 -70
- package/dist/run/run.operation.d.ts +174 -174
- package/dist/run/run.presentation.d.ts +3 -3
- package/dist/run/run.presentation.d.ts.map +1 -1
- package/dist/run/run.presentation.js.map +1 -1
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/tool/tool.entity.d.ts +24 -24
- package/dist/tool/tool.enum.d.ts +4 -4
- package/dist/tool/tool.event.d.ts +24 -24
- package/dist/tool/tool.operation.d.ts +100 -100
- package/dist/tool/tool.presentation.d.ts +3 -3
- package/dist/tool/tool.presentation.d.ts.map +1 -1
- package/dist/tool/tool.presentation.js.map +1 -1
- package/package.json +8 -8
- package/src/agent/agent.presentation.ts +4 -4
- package/src/run/run.presentation.ts +3 -3
- package/src/tool/tool.presentation.ts +3 -3
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.agent-console",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251223213411",
|
|
4
4
|
"description": "Agent Console example - AI agent orchestration with tools, runs, and logs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -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-20251223213411",
|
|
61
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251223213411",
|
|
62
|
+
"@lssm/lib.identity-rbac": "0.0.0-canary-20251223213411",
|
|
63
|
+
"@lssm/module.audit-trail": "0.0.0-canary-20251223213411",
|
|
64
|
+
"@lssm/lib.jobs": "0.0.0-canary-20251223213411",
|
|
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-20251223213411",
|
|
69
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251223213411",
|
|
70
70
|
"tsdown": "^0.18.1",
|
|
71
71
|
"typescript": "^5.9.3"
|
|
72
72
|
},
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PresentationSpec } from '@lssm/lib.contracts';
|
|
2
2
|
import { AgentSummaryModel } from './agent.schema';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Presentation for displaying a list of AI agents.
|
|
6
6
|
*/
|
|
7
|
-
export const AgentListPresentation:
|
|
7
|
+
export const AgentListPresentation: PresentationSpec = {
|
|
8
8
|
meta: {
|
|
9
9
|
name: 'agent-console.agent.list',
|
|
10
10
|
version: 1,
|
|
@@ -27,7 +27,7 @@ export const AgentListPresentation: PresentationDescriptorV2 = {
|
|
|
27
27
|
/**
|
|
28
28
|
* Presentation for agent detail view.
|
|
29
29
|
*/
|
|
30
|
-
export const AgentDetailPresentation:
|
|
30
|
+
export const AgentDetailPresentation: PresentationSpec = {
|
|
31
31
|
meta: {
|
|
32
32
|
name: 'agent-console.agent.detail',
|
|
33
33
|
version: 1,
|
|
@@ -49,7 +49,7 @@ export const AgentDetailPresentation: PresentationDescriptorV2 = {
|
|
|
49
49
|
/**
|
|
50
50
|
* Dashboard presentation for Agent Console - overview of agents, runs, and tools.
|
|
51
51
|
*/
|
|
52
|
-
export const AgentConsoleDashboardPresentation:
|
|
52
|
+
export const AgentConsoleDashboardPresentation: PresentationSpec = {
|
|
53
53
|
meta: {
|
|
54
54
|
name: 'agent-console.dashboard',
|
|
55
55
|
version: 1,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PresentationSpec } from '@lssm/lib.contracts';
|
|
2
2
|
import { RunSummaryModel } from './run.schema';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Presentation for displaying a list of agent runs.
|
|
6
6
|
*/
|
|
7
|
-
export const RunListPresentation:
|
|
7
|
+
export const RunListPresentation: PresentationSpec = {
|
|
8
8
|
meta: {
|
|
9
9
|
name: 'agent-console.run.list',
|
|
10
10
|
version: 1,
|
|
@@ -27,7 +27,7 @@ export const RunListPresentation: PresentationDescriptorV2 = {
|
|
|
27
27
|
/**
|
|
28
28
|
* Presentation for run detail view.
|
|
29
29
|
*/
|
|
30
|
-
export const RunDetailPresentation:
|
|
30
|
+
export const RunDetailPresentation: PresentationSpec = {
|
|
31
31
|
meta: {
|
|
32
32
|
name: 'agent-console.run.detail',
|
|
33
33
|
version: 1,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PresentationSpec } from '@lssm/lib.contracts';
|
|
2
2
|
import { ToolSummaryModel } from './tool.schema';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Presentation for displaying a list of tools.
|
|
6
6
|
*/
|
|
7
|
-
export const ToolListPresentation:
|
|
7
|
+
export const ToolListPresentation: PresentationSpec = {
|
|
8
8
|
meta: {
|
|
9
9
|
name: 'agent-console.tool.list',
|
|
10
10
|
version: 1,
|
|
@@ -27,7 +27,7 @@ export const ToolListPresentation: PresentationDescriptorV2 = {
|
|
|
27
27
|
/**
|
|
28
28
|
* Presentation for tool detail view.
|
|
29
29
|
*/
|
|
30
|
-
export const ToolDetailPresentation:
|
|
30
|
+
export const ToolDetailPresentation: PresentationSpec = {
|
|
31
31
|
meta: {
|
|
32
32
|
name: 'agent-console.tool.detail',
|
|
33
33
|
version: 1,
|