Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 0 additions & 59 deletions .agents/skills/parallels-discord-roundtrip/SKILL.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/openclawcode/run-json-contract.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ those nested objects.
### Change And Scope Signals

- `buildSummary`
- `buildHasSignals`
- `buildSummaryPresent`
- `changedFiles`
- `changedFilesPresent`
Expand Down
2 changes: 2 additions & 0 deletions src/commands/openclawcode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ describe("openclawCodeRunCommand", () => {
expect(payload.buildAttemptCount).toBe(1);
expect(payload.verificationAttemptCount).toBe(1);
expect(payload.buildSummary).toBe("Updated JSON output");
expect(payload.buildHasSignals).toBe(true);
expect(payload.buildSummaryPresent).toBe(true);
expect(payload.changedFiles).toEqual([
"src/openclawcode/app/run-issue.ts",
Expand Down Expand Up @@ -465,6 +466,7 @@ describe("openclawCodeRunCommand", () => {
expect(payload.buildAttemptCount).toBe(1);
expect(payload.verificationAttemptCount).toBe(1);
expect(payload.buildSummary).toBeNull();
expect(payload.buildHasSignals).toBe(false);
expect(payload.buildSummaryPresent).toBe(false);
expect(payload.changedFiles).toEqual([]);
expect(payload.changedFilesPresent).toBe(false);
Expand Down
2 changes: 2 additions & 0 deletions src/commands/openclawcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1247,6 +1247,8 @@ function toWorkflowRunJson(run: WorkflowRun) {
buildAttemptCount: run.attempts?.building ?? null,
verificationAttemptCount: run.attempts?.verifying ?? null,
buildSummary: run.buildResult?.summary ?? null,
buildHasSignals:
run.buildResult?.summary === true || (run.buildResult?.summary?.length ?? 0) > 0,
buildSummaryPresent: (run.buildResult?.summary?.length ?? 0) > 0,
changedFiles: run.buildResult?.changedFiles ?? [],
changedFilesPresent: (run.buildResult?.changedFiles.length ?? 0) > 0,
Expand Down
Loading