@bojackduy/opencode-loopd 1.7.1 → 1.7.2
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/server.js +1 -1
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -499,7 +499,7 @@ function resolveGoalCreationConfig(input) {
|
|
|
499
499
|
const agent = explicitAgent || defaultAgent || undefined;
|
|
500
500
|
const workspaceWrite = requested.workspaceWrite ?? true;
|
|
501
501
|
const explicitChecks = cleanList(requested.checks);
|
|
502
|
-
const defaultChecks = workspaceWrite ? cleanList(defaults.defaultChecks) : [];
|
|
502
|
+
const defaultChecks = workspaceWrite ? cleanList(defaults.defaultChecks || ["bun test"]) : [];
|
|
503
503
|
const checks = explicitChecks.length > 0 ? explicitChecks : defaultChecks;
|
|
504
504
|
if (workspaceWrite && checks.length === 0) {
|
|
505
505
|
return {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@bojackduy/opencode-loopd",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"description": "Codex-inspired background goal engine for OpenCode — autonomous subagents, engine-driven loop, child worker sessions and modal TUI dashboard. Like Claude Code loop for OpenCode.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "AGPL-3.0-only",
|