@engineer-ai/sdk 1.7.1 → 1.7.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.
@@ -948,6 +948,10 @@ export type Session = {
948
948
  worktreePath?: string;
949
949
  branch?: string;
950
950
  mode?: "agent" | "plan" | "goal";
951
+ /**
952
+ * Relative path to the plan file, set when a plan file exists for this session.
953
+ */
954
+ planPath?: string;
951
955
  revert?: {
952
956
  messageID: string;
953
957
  partID?: string;
@@ -1833,6 +1837,10 @@ export type Config = {
1833
1837
  * Enable goal mode (multi-agent orchestration). When false or unset, goal agent, /hire and /fire commands are hidden. Defaults to false.
1834
1838
  */
1835
1839
  goal_enabled?: boolean;
1840
+ /**
1841
+ * 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.
1842
+ */
1843
+ code_review?: boolean;
1836
1844
  /**
1837
1845
  * 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
1846
  */
@@ -2364,6 +2372,7 @@ export type Agent = {
2364
2372
  steps?: number;
2365
2373
  expert?: boolean;
2366
2374
  label?: string;
2375
+ memory?: boolean;
2367
2376
  };
2368
2377
  export type LspStatus = {
2369
2378
  id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@engineer-ai/sdk",
4
- "version": "1.7.1",
4
+ "version": "1.7.3",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {