@engineer-ai/sdk 1.7.0 → 1.7.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.
|
@@ -1833,6 +1833,10 @@ export type Config = {
|
|
|
1833
1833
|
* Enable goal mode (multi-agent orchestration). When false or unset, goal agent, /hire and /fire commands are hidden. Defaults to false.
|
|
1834
1834
|
*/
|
|
1835
1835
|
goal_enabled?: boolean;
|
|
1836
|
+
/**
|
|
1837
|
+
* Enable code review/verification. When true, the verification subagent (agent mode) and reviewer role (goal mode) are active, and verification prompts are injected. When false or unset (default), code review is skipped to save time.
|
|
1838
|
+
*/
|
|
1839
|
+
code_review?: boolean;
|
|
1836
1840
|
/**
|
|
1837
1841
|
* Team member configuration as an array of {name, role}, e.g. [{"name": "Frank", "role": "frontend"}, {"name": "Beck", "role": "backend"}]. Only entries with valid roles are used.
|
|
1838
1842
|
*/
|
|
@@ -2364,6 +2368,7 @@ export type Agent = {
|
|
|
2364
2368
|
steps?: number;
|
|
2365
2369
|
expert?: boolean;
|
|
2366
2370
|
label?: string;
|
|
2371
|
+
memory?: boolean;
|
|
2367
2372
|
};
|
|
2368
2373
|
export type LspStatus = {
|
|
2369
2374
|
id: string;
|