coding-agent-adapters 0.8.6 → 0.8.7
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.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -819,7 +819,10 @@ var ClaudeAdapter = class extends BaseCodingAdapter {
|
|
|
819
819
|
instructions: "Claude Code requesting file access permission"
|
|
820
820
|
};
|
|
821
821
|
}
|
|
822
|
-
if (this.detectReady(output)) {
|
|
822
|
+
if (this.detectReady(output) || this.detectTaskComplete(output)) {
|
|
823
|
+
return { detected: false };
|
|
824
|
+
}
|
|
825
|
+
if (/❯/.test(stripped.slice(-300))) {
|
|
823
826
|
return { detected: false };
|
|
824
827
|
}
|
|
825
828
|
return super.detectBlockingPrompt(output);
|