@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
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
//#region src/example.d.ts
|
|
2
|
+
declare const example: {
|
|
3
|
+
readonly id: "agent-console";
|
|
4
|
+
readonly title: "Agent Console";
|
|
5
|
+
readonly summary: "AI agent ops console: tools, agents, runs, logs, and metrics (spec-first, regenerable).";
|
|
6
|
+
readonly tags: readonly ["ai", "agents", "tools", "orchestration"];
|
|
7
|
+
readonly kind: "template";
|
|
8
|
+
readonly visibility: "public";
|
|
9
|
+
readonly docs: {
|
|
10
|
+
readonly rootDocId: "docs.examples.agent-console.reference";
|
|
11
|
+
readonly goalDocId: "docs.examples.agent-console.goal";
|
|
12
|
+
readonly usageDocId: "docs.examples.agent-console.usage";
|
|
13
|
+
readonly constraintsDocId: "docs.examples.agent-console.constraints";
|
|
14
|
+
};
|
|
15
|
+
readonly entrypoints: {
|
|
16
|
+
readonly packageName: "@lssm/example.agent-console";
|
|
17
|
+
readonly feature: "./feature";
|
|
18
|
+
readonly contracts: "./contracts";
|
|
19
|
+
readonly presentations: "./presentations";
|
|
20
|
+
readonly handlers: "./handlers";
|
|
21
|
+
readonly docs: "./docs";
|
|
22
|
+
};
|
|
23
|
+
readonly surfaces: {
|
|
24
|
+
readonly templates: true;
|
|
25
|
+
readonly sandbox: {
|
|
26
|
+
readonly enabled: true;
|
|
27
|
+
readonly modes: readonly ["playground", "specs", "builder", "markdown", "evolution"];
|
|
28
|
+
};
|
|
29
|
+
readonly studio: {
|
|
30
|
+
readonly enabled: true;
|
|
31
|
+
readonly installable: true;
|
|
32
|
+
};
|
|
33
|
+
readonly mcp: {
|
|
34
|
+
readonly enabled: true;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
//#endregion
|
|
39
|
+
export { example as default };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { AgentSummary, mockCreateAgentHandler, mockGetAgentHandler, mockListAgentsHandler } from "../agent/agent.handler.js";
|
|
2
|
+
import { RunSummary, mockExecuteAgentHandler, mockGetRunHandler, mockListRunsHandler } from "../run/run.handler.js";
|
|
3
|
+
import { ToolSummary, mockCreateToolHandler, mockGetToolHandler, mockListToolsHandler } from "../tool/tool.handler.js";
|
|
4
|
+
export { type AgentSummary, type RunSummary, type ToolSummary, mockCreateAgentHandler, mockCreateToolHandler, mockExecuteAgentHandler, mockGetAgentHandler, mockGetRunHandler, mockGetToolHandler, mockListAgentsHandler, mockListRunsHandler, mockListToolsHandler };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AgentConsoleFeature } from "./agent.feature.js";
|
|
2
|
+
import { AssignToolToAgentCommand, CreateAgentCommand, GetAgentQuery, ListAgentsQuery, RemoveToolFromAgentCommand, UpdateAgentCommand } from "./agent/agent.contracts.js";
|
|
3
|
+
import { AgentEntity, AgentStatusEntityEnum, AgentToolEntity, ModelProviderEntityEnum } from "./agent/agent.entity.js";
|
|
4
|
+
import { AgentStatusEnum, ModelProviderEnum, ToolChoiceEnum } from "./agent/agent.enum.js";
|
|
5
|
+
import { AgentCreatedEvent, AgentToolAssignedEvent, AgentToolRemovedEvent, AgentUpdatedEvent } from "./agent/agent.event.js";
|
|
6
|
+
import { AgentSummary, AgentToolRef, AgentWithTools, GetAgentInput, ListAgentsInput, ListAgentsOutput, mockCreateAgentHandler, mockGetAgentHandler, mockListAgentsHandler, mockUpdateAgentHandler } from "./agent/agent.handler.js";
|
|
7
|
+
import { AgentConsoleDashboardPresentation, AgentDetailPresentation, AgentListPresentation } from "./agent/agent.presentation.js";
|
|
8
|
+
import { AgentModel, AgentSummaryModel, AgentToolRefModel, AgentWithToolsModel, CreateAgentInputModel, UpdateAgentInputModel } from "./agent/agent.schema.js";
|
|
9
|
+
import "./agent/index.js";
|
|
10
|
+
import example from "./example.js";
|
|
11
|
+
import { ListRunsInput, ListRunsOutput, RunSummary, mockCancelRunHandler, mockExecuteAgentHandler, mockGetRunHandler, mockListRunsHandler } from "./run/run.handler.js";
|
|
12
|
+
import { ListToolsInput, ListToolsOutput, ToolSummary, mockCreateToolHandler, mockGetToolHandler, mockListToolsHandler, mockTestToolHandler, mockUpdateToolHandler } from "./tool/tool.handler.js";
|
|
13
|
+
import { GranularityEnum, LogLevelEnum, RunStatusEnum, RunStepTypeEnum } from "./run/run.enum.js";
|
|
14
|
+
import { RunAgentRefModel, RunInputModel, RunLogModel, RunModel, RunStepModel, RunSummaryModel, TimelineDataPointModel } from "./run/run.schema.js";
|
|
15
|
+
import { CancelRunCommand, ExecuteAgentCommand, GetRunLogsQuery, GetRunMetricsQuery, GetRunQuery, GetRunStepsQuery, ListRunsQuery } from "./run/run.contracts.js";
|
|
16
|
+
import { MessageGeneratedEvent, RunCancelledEvent, RunCompletedEvent, RunFailedEvent, RunStartedEvent, ToolCompletedEvent, ToolInvokedEvent } from "./run/run.event.js";
|
|
17
|
+
import { LogLevelEntityEnum, RunEntity, RunLogEntity, RunStatusEntityEnum, RunStepEntity, RunStepTypeEntityEnum } from "./run/run.entity.js";
|
|
18
|
+
import { RunDetailPresentation, RunListPresentation } from "./run/run.presentation.js";
|
|
19
|
+
import "./run/index.js";
|
|
20
|
+
import { ImplementationTypeEnum, ToolCategoryEnum, ToolStatusEnum } from "./tool/tool.enum.js";
|
|
21
|
+
import { CreateToolInputModel, ToolModel, ToolSummaryModel, UpdateToolInputModel } from "./tool/tool.schema.js";
|
|
22
|
+
import { CreateToolCommand, GetToolQuery, ListToolsQuery, TestToolCommand, UpdateToolCommand } from "./tool/tool.contracts.js";
|
|
23
|
+
import { ToolCreatedEvent, ToolStatusChangedEvent, ToolUpdatedEvent } from "./tool/tool.event.js";
|
|
24
|
+
import { ImplementationTypeEntityEnum, ToolCategoryEntityEnum, ToolEntity, ToolStatusEntityEnum } from "./tool/tool.entity.js";
|
|
25
|
+
import { ToolDetailPresentation, ToolListPresentation } from "./tool/tool.presentation.js";
|
|
26
|
+
import "./tool/index.js";
|
|
27
|
+
import { MOCK_AGENTS } from "./shared/mock-agents.js";
|
|
28
|
+
import { MOCK_TOOLS } from "./shared/mock-tools.js";
|
|
29
|
+
import { MOCK_RUNS } from "./shared/mock-runs.js";
|
|
30
|
+
export { AgentConsoleDashboardPresentation, AgentConsoleFeature, AgentCreatedEvent, AgentDetailPresentation, AgentEntity, AgentListPresentation, AgentModel, AgentStatusEntityEnum, AgentStatusEnum, AgentSummary, AgentSummaryModel, AgentToolAssignedEvent, AgentToolEntity, AgentToolRef, AgentToolRefModel, AgentToolRemovedEvent, AgentUpdatedEvent, AgentWithTools, AgentWithToolsModel, AssignToolToAgentCommand, CancelRunCommand, CreateAgentCommand, CreateAgentInputModel, CreateToolCommand, CreateToolInputModel, ExecuteAgentCommand, GetAgentInput, GetAgentQuery, GetRunLogsQuery, GetRunMetricsQuery, GetRunQuery, GetRunStepsQuery, GetToolQuery, GranularityEnum, ImplementationTypeEntityEnum, ImplementationTypeEnum, ListAgentsInput, ListAgentsOutput, ListAgentsQuery, ListRunsInput, ListRunsOutput, ListRunsQuery, ListToolsInput, ListToolsOutput, ListToolsQuery, LogLevelEntityEnum, LogLevelEnum, MOCK_AGENTS, MOCK_RUNS, MOCK_TOOLS, MessageGeneratedEvent, ModelProviderEntityEnum, ModelProviderEnum, RemoveToolFromAgentCommand, RunAgentRefModel, RunCancelledEvent, RunCompletedEvent, RunDetailPresentation, RunEntity, RunFailedEvent, RunInputModel, RunListPresentation, RunLogEntity, RunLogModel, RunModel, RunStartedEvent, RunStatusEntityEnum, RunStatusEnum, RunStepEntity, RunStepModel, RunStepTypeEntityEnum, RunStepTypeEnum, RunSummary, RunSummaryModel, TestToolCommand, TimelineDataPointModel, ToolCategoryEntityEnum, ToolCategoryEnum, ToolChoiceEnum, ToolCompletedEvent, ToolCreatedEvent, ToolDetailPresentation, ToolEntity, ToolInvokedEvent, ToolListPresentation, ToolModel, ToolStatusChangedEvent, ToolStatusEntityEnum, ToolStatusEnum, ToolSummary, ToolSummaryModel, ToolUpdatedEvent, UpdateAgentCommand, UpdateAgentInputModel, UpdateToolCommand, UpdateToolInputModel, example, mockCancelRunHandler, mockCreateAgentHandler, mockCreateToolHandler, mockExecuteAgentHandler, mockGetAgentHandler, mockGetRunHandler, mockGetToolHandler, mockListAgentsHandler, mockListRunsHandler, mockListToolsHandler, mockTestToolHandler, mockUpdateAgentHandler, mockUpdateToolHandler };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { AgentConsoleDashboardPresentation, AgentDetailPresentation, AgentListPresentation } from "../agent/agent.presentation.js";
|
|
2
|
+
import { RunDetailPresentation, RunListPresentation } from "../run/run.presentation.js";
|
|
3
|
+
import { ToolDetailPresentation, ToolListPresentation } from "../tool/tool.presentation.js";
|
|
4
|
+
export { AgentConsoleDashboardPresentation, AgentDetailPresentation, AgentListPresentation, RunDetailPresentation, RunListPresentation, RunDetailPresentation as RunMetricsPresentation, ToolDetailPresentation, ToolListPresentation, ToolListPresentation as ToolRegistryPresentation };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ListRunsInput, ListRunsOutput, RunSummary, mockCancelRunHandler, mockExecuteAgentHandler, mockGetRunHandler, mockListRunsHandler } from "./run.handler.js";
|
|
2
|
+
import { GranularityEnum, LogLevelEnum, RunStatusEnum, RunStepTypeEnum } from "./run.enum.js";
|
|
3
|
+
import { RunAgentRefModel, RunInputModel, RunLogModel, RunModel, RunStepModel, RunSummaryModel, TimelineDataPointModel } from "./run.schema.js";
|
|
4
|
+
import { CancelRunCommand, ExecuteAgentCommand, GetRunLogsQuery, GetRunMetricsQuery, GetRunQuery, GetRunStepsQuery, ListRunsQuery } from "./run.contracts.js";
|
|
5
|
+
import { MessageGeneratedEvent, RunCancelledEvent, RunCompletedEvent, RunFailedEvent, RunStartedEvent, ToolCompletedEvent, ToolInvokedEvent } from "./run.event.js";
|
|
6
|
+
import { LogLevelEntityEnum, RunEntity, RunLogEntity, RunStatusEntityEnum, RunStepEntity, RunStepTypeEntityEnum } from "./run.entity.js";
|
|
7
|
+
import { RunDetailPresentation, RunListPresentation } from "./run.presentation.js";
|
|
8
|
+
export { CancelRunCommand, ExecuteAgentCommand, GetRunLogsQuery, GetRunMetricsQuery, GetRunQuery, GetRunStepsQuery, GranularityEnum, type ListRunsInput, type ListRunsOutput, ListRunsQuery, LogLevelEntityEnum, LogLevelEnum, MessageGeneratedEvent, RunAgentRefModel, RunCancelledEvent, RunCompletedEvent, RunDetailPresentation, RunEntity, RunFailedEvent, RunInputModel, RunListPresentation, RunLogEntity, RunLogModel, RunModel, RunStartedEvent, RunStatusEntityEnum, RunStatusEnum, RunStepEntity, RunStepModel, RunStepTypeEntityEnum, RunStepTypeEnum, type RunSummary, RunSummaryModel, TimelineDataPointModel, ToolCompletedEvent, ToolInvokedEvent, mockCancelRunHandler, mockExecuteAgentHandler, mockGetRunHandler, mockListRunsHandler };
|