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.
- package/dist/index.js +127 -60
- package/dist/index.js.map +3 -3
- package/dist/metafile.json +1 -1
- package/dist/providers/poe-agent.js +118 -54
- package/dist/providers/poe-agent.js.map +3 -3
- package/dist/services/config.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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>;
|