@pi-orca/tasks 0.0.2-dev.20260422214056 → 0.0.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/tool.d.ts DELETED
@@ -1,19 +0,0 @@
1
- /**
2
- * Task tool action dispatcher.
3
- * Spec: §3.9 — Tool Schema
4
- */
5
- export interface TaskToolParams {
6
- action: "create" | "claim" | "complete" | "fail" | "abandon" | "list" | "unlock" | "update" | "retry" | "note" | "unclaim" | "reopen";
7
- taskId?: string;
8
- title?: string;
9
- description?: string;
10
- dependencies?: string[];
11
- labels?: Record<string, string>;
12
- status?: string;
13
- note?: string;
14
- sessionId?: string;
15
- sessionPath?: string;
16
- projectSlug?: string;
17
- }
18
- export declare function executeTaskTool(params: TaskToolParams): Promise<Record<string, unknown>>;
19
- //# sourceMappingURL=tool.d.ts.map
package/dist/widget.d.ts DELETED
@@ -1,24 +0,0 @@
1
- /**
2
- * Task widget renderer — less/more HUD modes.
3
- * Spec: §3.11 — Widget
4
- *
5
- * setWidget() expects string[] (one element per line), not a single string.
6
- */
7
- /**
8
- * Render the compact 1-line HUD widget.
9
- * Shows all statuses including abandoned in the stats.
10
- * Returns string[] (one element per line) for setWidget().
11
- */
12
- export declare function renderTaskLess(projectSlug?: string): Promise<string[]>;
13
- /**
14
- * Render the expanded multi-column task list HUD.
15
- * Header includes all statuses (including abandoned).
16
- * Task rows exclude abandoned tasks.
17
- * Returns string[] (one element per line) for setWidget().
18
- */
19
- export declare function renderTaskMore(projectSlug?: string): Promise<string[]>;
20
- /**
21
- * Legacy API — delegates to renderTaskLess for backward compat.
22
- */
23
- export declare function renderTaskWidget(projectSlug?: string): Promise<string[]>;
24
- //# sourceMappingURL=widget.d.ts.map