agent-afk 5.118.0 → 5.118.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/agent/agents/types.d.ts +1 -0
- package/dist/agent/shell-jobs/index.d.ts +2 -2
- package/dist/agent/subagent/resolve-fork-scope.d.ts +10 -0
- package/dist/agent/tools/handlers/_fs-error.d.ts +4 -0
- package/dist/cli/commands/login-command.d.ts +1 -1
- package/dist/cli.mjs +536 -536
- package/dist/index.mjs +201 -201
- package/dist/telegram.mjs +264 -264
- package/dist/utils/regexp.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { ShellJobRegistry, type ShellJob, type ShellJobStatus, type
|
|
1
|
+
export { type ShellHandle, type ShellResult, type ShellErrorReason, } from './streamer.js';
|
|
2
|
+
export { ShellJobRegistry, type ShellJob, type ShellJobStatus, type StartJobOptions, } from './registry.js';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface ResolveReadScopeArgs {
|
|
2
|
+
parentReadRoots: string[] | undefined;
|
|
3
|
+
parentCwd: string | undefined;
|
|
4
|
+
effectiveChildCwd: string | undefined;
|
|
5
|
+
callerReadRoots: string[] | undefined;
|
|
6
|
+
callerExtraReadRoots: string[] | undefined;
|
|
7
|
+
resolveMainRoot: (cwd: string) => Promise<string | undefined>;
|
|
8
|
+
}
|
|
9
|
+
export declare function resolveReadScope(args: ResolveReadScopeArgs): Promise<string[] | undefined>;
|
|
10
|
+
export declare function composeWriteRoots(callerWriteRoots: string[] | undefined, effectiveChildCwd: string | undefined): string[] | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
2
|
import { promptToken } from '../auth-wizard.js';
|
|
3
|
-
export { upsertEnvVar } from '
|
|
3
|
+
export { upsertEnvVar } from '../../utils/envFile.js';
|
|
4
4
|
export { promptToken };
|
|
5
5
|
export declare function registerLoginCommand(program: Command): void;
|