@phnx-labs/agents-cli 1.18.5 → 1.18.6
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.
|
@@ -36,7 +36,7 @@ export declare function captureProcessStartTime(pid: number): string | null;
|
|
|
36
36
|
* model_reasoning_effort override). Mode (plan/edit/full) is a separate knob.
|
|
37
37
|
*/
|
|
38
38
|
export type EffortLevel = 'low' | 'medium' | 'high' | 'xhigh' | 'max' | 'auto';
|
|
39
|
-
declare const VALID_MODES: readonly ["plan", "edit", "full"];
|
|
39
|
+
declare const VALID_MODES: readonly ["plan", "edit", "full", "auto"];
|
|
40
40
|
type Mode = typeof VALID_MODES[number];
|
|
41
41
|
/** Resolve a mode string to a validated Mode, falling back to the given default. */
|
|
42
42
|
export declare function resolveMode(requestedMode: string | null | undefined, defaultMode?: Mode): Mode;
|
package/dist/lib/teams/agents.js
CHANGED
|
@@ -183,7 +183,7 @@ When you're done, provide a brief summary of:
|
|
|
183
183
|
const CLAUDE_PLAN_MODE_PREFIX = `You are running in HEADLESS PLAN MODE. This mode works like normal plan mode with one exception: you cannot write to ~/.claude/plans/ directory. Instead of writing a plan file, output your complete plan/response as your final message.
|
|
184
184
|
|
|
185
185
|
`;
|
|
186
|
-
const VALID_MODES = ['plan', 'edit', 'full'];
|
|
186
|
+
const VALID_MODES = ['plan', 'edit', 'full', 'auto'];
|
|
187
187
|
function normalizeModeValue(modeValue) {
|
|
188
188
|
if (!modeValue)
|
|
189
189
|
return null;
|
package/package.json
CHANGED