baxian 1.2.35 → 1.2.36
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/agent/manager.js +1 -1
- package/dist/agent/manager.js.map +1 -1
- package/dist/api/config.d.ts.map +1 -1
- package/dist/api/config.js +0 -10
- package/dist/api/config.js.map +1 -1
- package/dist/api/tasks.d.ts.map +1 -1
- package/dist/api/tasks.js +1 -9
- package/dist/api/tasks.js.map +1 -1
- package/dist/config/loader.d.ts.map +1 -1
- package/dist/config/loader.js +0 -10
- package/dist/config/loader.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/dist/skills/baxian-pr-feedback/SKILL.md +1 -1
- package/dist/skills/baxian-pr-recheck/SKILL.md +4 -3
- package/dist/skills/baxian-pr-review/SKILL.md +1 -1
- package/dist/skills/baxian-server-feedback/SKILL.md +2 -2
- package/dist/skills/baxian-server-review/SKILL.md +3 -3
- package/dist/skills/baxian-signals/SKILL.md +3 -3
- package/dist/skills/baxian-task-check/SKILL.md +18 -16
- package/dist/state/task-store.d.ts +0 -4
- package/dist/state/task-store.d.ts.map +1 -1
- package/dist/state/task-store.js +6 -46
- package/dist/state/task-store.js.map +1 -1
- package/dist/web/assets/index-CGuG6yF2.js +8 -0
- package/dist/web/assets/{index-DXA1QQjk.css → index-uVZrHlU5.css} +1 -1
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/web/assets/index-DBG1YBwu.js +0 -8
package/dist/agent/manager.js
CHANGED
|
@@ -3824,7 +3824,7 @@ export class AgentManager {
|
|
|
3824
3824
|
if (!task)
|
|
3825
3825
|
throw new ApiError(404, `Task ${taskId} not found`);
|
|
3826
3826
|
if (task.reviewMode === 'server') {
|
|
3827
|
-
throw new ApiError(409, `Task ${taskId} uses server review mode;
|
|
3827
|
+
throw new ApiError(409, `Task ${taskId} uses server review mode; Call review applies only to github-mode tasks`);
|
|
3828
3828
|
}
|
|
3829
3829
|
if (task.phase === 'spec' && task.status === 'max_rounds') {
|
|
3830
3830
|
throw new ApiError(409, `Call review is not supported for spec-phase max_rounds tasks (use Retry or Cancel)`);
|