惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
Last Week in AI
Last Week in AI
腾讯CDC
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
I
InfoQ
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
H
Help Net Security
T
Tailwind CSS Blog
美团技术团队
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore: add Clownfish cloud PR skill · openclaw/openclaw@2...
steipete · 2026-04-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,58 @@

1+

---

2+

name: clownfish-cloud-pr

3+

description: Use when launching Clownfish in GitHub Actions to create or update one guarded GitHub implementation PR from issue/PR refs, a ClawSweeper report, or a custom maintainer prompt.

4+

---

5+
6+

# Clownfish Cloud PR

7+
8+

Use this skill when the user wants Codex to ask Clownfish to create a PR in the

9+

cloud from issue/PR refs plus a custom prompt.

10+
11+

## Create One Job

12+
13+

```bash

14+

cd ~/Projects/clownfish

15+

git status --short --branch

16+

npm run create-job -- \

17+

--repo openclaw/openclaw \

18+

--refs 123,456 \

19+

--prompt-file /tmp/clownfish-prompt.md

20+

```

21+
22+

From a ClawSweeper report:

23+
24+

```bash

25+

npm run create-job -- \

26+

--from-report ../clawsweeper/records/openclaw-openclaw/items/123.md

27+

```

28+
29+

The script checks for an existing open PR/body match and remote branch named

30+

`clownfish/<cluster-id>` before writing a duplicate job. Use `--dry-run` to

31+

inspect the exact job body.

32+
33+

## Validate And Dispatch

34+
35+

```bash

36+

npm run validate:job -- jobs/openclaw/inbox/clawsweeper-openclaw-openclaw-123.md

37+

npm run render -- jobs/openclaw/inbox/clawsweeper-openclaw-openclaw-123.md --mode autonomous >/tmp/clownfish-rendered-prompt.md

38+

git add jobs/openclaw/inbox/clawsweeper-openclaw-openclaw-123.md

39+

git commit -m "chore: add ClawSweeper promoted job"

40+

git push origin main

41+

npm run dispatch -- jobs/openclaw/inbox/clawsweeper-openclaw-openclaw-123.md \

42+

--mode autonomous \

43+

--runner blacksmith-4vcpu-ubuntu-2404 \

44+

--execution-runner blacksmith-16vcpu-ubuntu-2404 \

45+

--model gpt-5.5

46+

```

47+
48+

Do not use `--dispatch` until the job is committed and pushed; the workflow

49+

reads the job path from GitHub. Keep `CLOWNFISH_ALLOW_MERGE=0` unless Peter

50+

explicitly opens the merge gate.

51+
52+

## Guardrails

53+
54+

- One cluster, one branch, one PR: `clownfish/<cluster-id>`.

55+

- No security-sensitive work.

56+

- Do not close duplicates before the fix PR path exists, lands, or is proven

57+

unnecessary.

58+

- Codex workers do not get GitHub tokens; deterministic scripts own writes.