@zcy2nn/agent-forge 1.1.2 → 1.1.3

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.
@@ -1,23 +0,0 @@
1
- export interface SkillSyncResult {
2
- installed: number;
3
- skipped: number;
4
- /** Skills that were already correctly symlinked (no change needed) */
5
- unchanged: number;
6
- /** Skills installed via file copy (symlink unavailable) */
7
- copied: number;
8
- }
9
- /**
10
- * Ensure all built-in skills are symlinked into OpenCode's skills directory.
11
- *
12
- * - If a symlink already points to the correct source → skip (unchanged).
13
- * - If a directory or stale symlink exists → replace with fresh symlink.
14
- * - If symlink creation fails (e.g. Windows without junction support) →
15
- * fall back to file copy.
16
- * - If the source path doesn't exist in the package → skip.
17
- *
18
- * @param packageRoot - Absolute path to the agent-forge package root
19
- * (the directory containing `src/skills/`). Defaults to auto-detected via resolvePackageRoot().
20
- * @param skillsDirOverride - Override for the target skills directory
21
- * (useful in tests). Defaults to `<configDir>/skills`.
22
- */
23
- export declare function syncBuiltinSkills(packageRoot?: string, skillsDirOverride?: string): SkillSyncResult;
@@ -1 +0,0 @@
1
- export declare function resolvePackageRoot(): string;