poe-code 3.0.236 → 3.0.237

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.
@@ -174,6 +174,12 @@ export declare const knownConfigScopes: readonly [import("@poe-code/poe-code-con
174
174
  readonly parse: (value: unknown) => import("agent-code-review").CodeReviewHumanGateConfig;
175
175
  readonly doc: "External human-gate configuration for code review runs.";
176
176
  };
177
+ readonly profileDirectories: {
178
+ readonly type: "json";
179
+ readonly default: string[];
180
+ readonly parse: typeof import("node_modules/agent-code-review/dist/config-scope.js").parseCodeReviewProfileDirectories;
181
+ readonly doc: "Absolute external reviewer profile directories, in precedence order after repo-local profiles.";
182
+ };
177
183
  }>];
178
184
  export declare function saveConfig(options: SaveConfigOptions): Promise<void>;
179
185
  export declare function loadConfig(options: ConfigStoreOptions): Promise<string | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "3.0.236",
3
+ "version": "3.0.237",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",