@nt-ai-lab/deterministic-agent-workflow-pi 0.5.4 → 0.5.5
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.
|
@@ -35,6 +35,7 @@ export function createPiWorkflowExtension(config) {
|
|
|
35
35
|
const runner = createWorkflowRunner({
|
|
36
36
|
workflowDefinition: config.workflowDefinition,
|
|
37
37
|
routes: config.routes,
|
|
38
|
+
unknownCommandMessage: config.unknownCommandMessage,
|
|
38
39
|
bashForbidden: config.bashForbidden,
|
|
39
40
|
isWriteAllowed: config.isWriteAllowed,
|
|
40
41
|
questionToolName: PI_QUESTION_TOOL,
|
|
@@ -26,6 +26,7 @@ export type PiSessionIdResult = {
|
|
|
26
26
|
export type PiWorkflowExtensionConfig<TWorkflow extends RehydratableWorkflow<TState>, TState extends BaseWorkflowState<TStateName>, TDeps, TStateName extends string = string, TOperation extends string = string, TTransitionContext extends TransitionContext<TState, TStateName> = TransitionContext<TState, TStateName>> = Omit<PreToolUseHandlerConfig<TWorkflow, TState, TStateName>, 'questionToolName'> & {
|
|
27
27
|
readonly workflowDefinition: WorkflowDefinition<TWorkflow, TState, TDeps, TStateName, TOperation, TTransitionContext>;
|
|
28
28
|
readonly routes: RouteMap<TWorkflow, TState>;
|
|
29
|
+
readonly unknownCommandMessage: string;
|
|
29
30
|
readonly buildWorkflowDeps: (platform: PlatformContext) => TDeps;
|
|
30
31
|
readonly pluginRoot: string;
|
|
31
32
|
readonly databasePath?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nt-ai-lab/deterministic-agent-workflow-pi",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"typebox": "^1.3.7",
|
|
26
|
-
"@nt-ai-lab/deterministic-agent-workflow-cli": "0.4.
|
|
26
|
+
"@nt-ai-lab/deterministic-agent-workflow-cli": "0.4.8",
|
|
27
27
|
"@nt-ai-lab/deterministic-agent-workflow-engine": "0.4.7",
|
|
28
28
|
"@nt-ai-lab/deterministic-agent-workflow-event-store": "0.4.7"
|
|
29
29
|
},
|