opencode-swarm 7.63.0 → 7.64.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.
@@ -27,6 +27,11 @@ export interface ActionableValidationResult {
27
27
  }
28
28
  /** Validate a generated_skill_path: must be repo-local and under an allowed prefix. */
29
29
  export declare function validateSkillPath(p: unknown): boolean;
30
+ /**
31
+ * Validate that a path is a valid candidate storage path under `.swarm/skills/candidates/`.
32
+ * The filename must be a UUID v4 (canonical, no braces) with `.json` extension.
33
+ */
34
+ export declare function validateSkillCandidatePath(p: unknown): boolean;
30
35
  /** Validate the optional ActionableDirectiveFields block on a knowledge entry. */
31
36
  export declare function validateActionableFields(fields: ActionableDirectiveFields | undefined): ActionableValidationResult;
32
37
  export type { ActionableDirectiveFields, DirectivePriority };