opencode-swarm 6.61.0 → 6.63.0

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.
@@ -24,15 +24,8 @@ export interface TaskEvidence {
24
24
  export declare const DEFAULT_REQUIRED_GATES: string[];
25
25
  /**
26
26
  * Canonical task-id validation helper.
27
- * Returns true if the taskId is a valid numeric format (N.M or N.M.P),
28
- * false otherwise.
29
- *
30
- * Validates:
31
- * - Non-empty string
32
- * - Matches N.M or N.M.P numeric pattern (e.g., "1.1", "1.2.3")
33
- * - No path traversal (..)
34
- * - No path separators (/, \)
35
- * - No null bytes
27
+ * Delegates to the shared strict validator (#452 item 2).
28
+ * Re-exported for backward compatibility with existing callers.
36
29
  */
37
30
  export declare function isValidTaskId(taskId: string): boolean;
38
31
  /**