@wrongstack/tools 0.282.0 → 0.282.2
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/dist/builtin.d.ts +4 -4
- package/dist/builtin.js +508 -257
- package/dist/builtin.js.map +1 -1
- package/dist/index.d.ts +38 -2
- package/dist/index.js +508 -257
- package/dist/index.js.map +1 -1
- package/dist/pack.js +508 -257
- package/dist/pack.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { batchToolUseTool } from './batch-tool-use.js';
|
|
|
5
5
|
export { OPTIONAL_TOOLS, TIER1_TOOLS, TIER2_TOOLS, TIER3_TOOLS, builtinTools } from './builtin.js';
|
|
6
6
|
export { CircuitBreaker, CircuitBreakerConfig, CircuitBreakerSnapshot } from './circuit-breaker.js';
|
|
7
7
|
export { C as CircuitOpenError, e as CircuitSnapshot, f as CircuitState, h as IndexCircuitBreaker, i as IndexTimeoutError, k as cancelPendingReindexes, l as codebaseIndexStats, m as codebaseIndexTool, n as codebaseSearchTool, o as codebaseStatsTool, p as enqueueReindex, q as getIndexState, r as indexCircuitBreaker, s as isIndexReady, t as isIndexableFile, u as isIndexing, v as onIndexStateChange, w as resetIndexCircuitBreaker, x as runStartupIndex, y as searchCodebaseIndex, z as shutdownCodebaseIndexHost } from './background-indexer-BeDBxfSh.js';
|
|
8
|
-
import { Tool, AssignKanbanTaskInput, KanbanTaskPriority, KanbanTaskStatus, KanbanAgentRunStatus, KanbanBoard, KanbanBoardSummary, KanbanTask, KanbanSearchResult, SkillLoader } from '@wrongstack/core';
|
|
8
|
+
import { Tool, AssignKanbanTaskInput, KanbanTaskPriority, KanbanTaskStatus, KanbanAgentRunStatus, KanbanBoard, KanbanBoardSummary, KanbanTask, KanbanSearchResult, KanbanOrchestrationSnapshot, SerializedTaskGraph, SkillLoader } from '@wrongstack/core';
|
|
9
9
|
export { diffTool } from './diff.js';
|
|
10
10
|
export { documentTool } from './document.js';
|
|
11
11
|
export { editTool } from './edit.js';
|
|
@@ -184,13 +184,15 @@ interface DesignOutput {
|
|
|
184
184
|
*/
|
|
185
185
|
declare const designTool: Tool<DesignInput, DesignOutput>;
|
|
186
186
|
|
|
187
|
-
type KanbanAction = 'list_boards' | 'get_board' | 'create_board' | 'duplicate_board' | 'update_board' | 'delete_board' | 'generate_board' | 'export_markdown' | 'search_tasks' | 'add_column' | 'update_column' | 'delete_column' | 'add_task' | 'copy_task' | 'transfer_task' | 'get_task' | 'update_task' | 'move_task' | 'delete_task' | 'assign_task' | 'mark_assignment' | 'add_dependency' | 'add_check' | 'update_check' | 'add_note' | 'add_link';
|
|
187
|
+
type KanbanAction = 'list_boards' | 'get_board' | 'create_board' | 'duplicate_board' | 'update_board' | 'delete_board' | 'generate_board' | 'export_markdown' | 'export_task_graph' | 'sync_task_graph' | 'search_tasks' | 'ready_tasks' | 'snapshot' | 'add_column' | 'update_column' | 'delete_column' | 'add_task' | 'split_task' | 'merge_tasks' | 'copy_task' | 'transfer_task' | 'get_task' | 'update_task' | 'move_task' | 'delete_task' | 'set_chain' | 'get_chain' | 'claim_task' | 'release_task' | 'assign_task' | 'mark_assignment' | 'add_dependency' | 'add_goal_metric' | 'update_goal_metric' | 'add_check' | 'update_check' | 'add_note' | 'add_link';
|
|
188
188
|
interface KanbanToolInput extends Omit<AssignKanbanTaskInput, 'status'> {
|
|
189
189
|
action: KanbanAction;
|
|
190
190
|
boardId?: string | undefined;
|
|
191
191
|
taskId?: string | undefined;
|
|
192
192
|
columnId?: string | undefined;
|
|
193
193
|
targetBoardId?: string | undefined;
|
|
194
|
+
taskIds?: string[] | undefined;
|
|
195
|
+
chainId?: string | undefined;
|
|
194
196
|
title?: string | undefined;
|
|
195
197
|
description?: string | undefined;
|
|
196
198
|
tags?: string[] | undefined;
|
|
@@ -201,7 +203,25 @@ interface KanbanToolInput extends Omit<AssignKanbanTaskInput, 'status'> {
|
|
|
201
203
|
targetColumnId?: string | undefined;
|
|
202
204
|
moveTasksToColumnId?: string | undefined;
|
|
203
205
|
query?: string | undefined;
|
|
206
|
+
limit?: number | undefined;
|
|
204
207
|
dependencyTaskId?: string | undefined;
|
|
208
|
+
enforceDependencies?: boolean | undefined;
|
|
209
|
+
childTitles?: string[] | undefined;
|
|
210
|
+
inheritAssignment?: boolean | undefined;
|
|
211
|
+
inheritLabels?: boolean | undefined;
|
|
212
|
+
inheritSuccessCriteria?: boolean | undefined;
|
|
213
|
+
inheritGoalMetrics?: boolean | undefined;
|
|
214
|
+
inheritDependencies?: boolean | undefined;
|
|
215
|
+
chainChildren?: boolean | undefined;
|
|
216
|
+
rewireDependents?: boolean | undefined;
|
|
217
|
+
closeSourceTasks?: boolean | undefined;
|
|
218
|
+
metricId?: string | undefined;
|
|
219
|
+
metricName?: string | undefined;
|
|
220
|
+
metricTarget?: string | number | undefined;
|
|
221
|
+
metricCurrent?: string | number | undefined;
|
|
222
|
+
metricUnit?: string | undefined;
|
|
223
|
+
metricStatus?: 'pending' | 'met' | 'missed' | 'waived' | undefined;
|
|
224
|
+
metricNotes?: string | undefined;
|
|
205
225
|
checkId?: string | undefined;
|
|
206
226
|
checkDescription?: string | undefined;
|
|
207
227
|
checkStatus?: 'pending' | 'passed' | 'failed' | 'skipped' | undefined;
|
|
@@ -222,6 +242,18 @@ interface KanbanToolInput extends Omit<AssignKanbanTaskInput, 'status'> {
|
|
|
222
242
|
lastResult?: string | undefined;
|
|
223
243
|
error?: string | undefined;
|
|
224
244
|
assignmentStatus?: KanbanAgentRunStatus | undefined;
|
|
245
|
+
releaseStatus?: 'pending' | 'ready' | 'blocked' | undefined;
|
|
246
|
+
releaseReason?: string | undefined;
|
|
247
|
+
clearAssignee?: boolean | undefined;
|
|
248
|
+
taskGraph?: unknown;
|
|
249
|
+
graphId?: string | undefined;
|
|
250
|
+
specId?: string | undefined;
|
|
251
|
+
sourceSystem?: string | undefined;
|
|
252
|
+
phaseId?: string | undefined;
|
|
253
|
+
preserveOriginTaskIds?: boolean | undefined;
|
|
254
|
+
includeArchived?: boolean | undefined;
|
|
255
|
+
archiveMissingTasks?: boolean | undefined;
|
|
256
|
+
preserveManualDependencies?: boolean | undefined;
|
|
225
257
|
}
|
|
226
258
|
interface KanbanToolOutput {
|
|
227
259
|
ok: boolean;
|
|
@@ -230,6 +262,10 @@ interface KanbanToolOutput {
|
|
|
230
262
|
boards?: KanbanBoardSummary[] | undefined;
|
|
231
263
|
task?: KanbanTask | undefined;
|
|
232
264
|
tasks?: KanbanSearchResult[] | undefined;
|
|
265
|
+
children?: KanbanTask[] | undefined;
|
|
266
|
+
chain?: KanbanTask[] | undefined;
|
|
267
|
+
snapshot?: KanbanOrchestrationSnapshot | undefined;
|
|
268
|
+
taskGraph?: SerializedTaskGraph | undefined;
|
|
233
269
|
markdown?: string | undefined;
|
|
234
270
|
}
|
|
235
271
|
declare const kanbanTool: Tool<KanbanToolInput, KanbanToolOutput>;
|