agent-afk 5.20.7 → 5.21.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.
- package/dist/agent/session/model-slots.d.ts +7 -0
- package/dist/agent/subagent.d.ts +2 -0
- package/dist/agent/tools/skill-bridge.d.ts +5 -2
- package/dist/agent/worktree-read-root.d.ts +5 -0
- package/dist/cli.mjs +421 -420
- package/dist/config/mutate.d.ts +2 -1
- package/dist/config/settable-keys.d.ts +3 -2
- package/dist/index.mjs +169 -168
- package/dist/paths.d.ts +2 -2
- package/dist/telegram.mjs +207 -206
- package/package.json +1 -1
package/dist/paths.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ export declare function getBriefsDir(): string;
|
|
|
7
7
|
export declare function getFacetCacheDir(): string;
|
|
8
8
|
export declare function getSkillsDir(): string;
|
|
9
9
|
export declare function getPluginsDir(): string;
|
|
10
|
-
export declare function getProjectAfkDir(): string;
|
|
11
|
-
export declare function getProjectSkillsDir(): string;
|
|
10
|
+
export declare function getProjectAfkDir(cwd?: string): string;
|
|
11
|
+
export declare function getProjectSkillsDir(cwd?: string): string;
|
|
12
12
|
export declare function getProjectPluginsDir(): string;
|
|
13
13
|
export declare function getProjectPlansDir(cwd?: string): string;
|
|
14
14
|
export declare function getPluginsIndexPath(): string;
|