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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Recent Announcements
Recent Announcements
Vercel News
Vercel News
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
G
Google Developers Blog
罗磊的独立博客
爱范儿
爱范儿
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
月光博客
月光博客
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research

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
[codex] Add contract-first Pi/Codex runtime plan suite (#...
100yenadmin · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -31,6 +31,7 @@ Docs: https://docs.openclaw.ai

3131

- Models/CLI: split `openclaw models list` row-source orchestration and registry loading into narrower helpers without changing list output behavior. (#70867) Thanks @shakkernerd.

3232

- Models/commands: deprecate `/models add` so chat attempts now return a deprecation message instead of writing model configuration, and remove the add action from `/models` provider menus.

3333

- Codex harness/context-engine: run context-engine bootstrap, assembly, post-turn maintenance, and engine-owned compaction in Codex app-server sessions while keeping native Codex thread state and compaction auditable. (#70809) Thanks @jalehman.

34+

- Codex runtime plan: consolidate contract-first Pi/Codex parity coverage and accept legacy Codex auth-provider aliases in app-server profile login and refresh paths. (#71096) Thanks @100yenadmin.

3435

- Plugins/Google Meet: add a bundled participant plugin with personal Google auth, explicit meeting URL joins, Chrome and Twilio transports, and realtime voice support. (#70765) Thanks @steipete.

3536

- Plugins/Google Meet: default Chrome realtime sessions to OpenAI plus SoX `rec`/`play` audio bridge commands, so the usual setup only needs the plugin enabled and `OPENAI_API_KEY`.

3637

- Plugins/Google Meet: add a `chrome-node` transport so a paired macOS node, such as a Parallels VM, can own Chrome, BlackHole, and SoX while the Gateway machine keeps the agent and model key.

Original file line numberDiff line numberDiff line change

@@ -1,2 +1,2 @@

1-

3e0d36fbe1db58f01c297a35c9a26d1037471720a8e71dc7149d108bf0f9bf40 plugin-sdk-api-baseline.json

2-

aa4065f3efaf8ed6f7641ad7384039123e5bbb21a3e682f7599ca75195ceb8cd plugin-sdk-api-baseline.jsonl

1+

c4a62f081d0b9fcfd5e76a843547411bba0fdc129c1c143e7f4c4f6294b040b9 plugin-sdk-api-baseline.json

2+

a62c9aea45d5694a851380ff6b35b7fb2ffd9fc4dfa3f0c567a8e1c97094475e plugin-sdk-api-baseline.jsonl

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,45 @@

1+

import { describe, expect, it } from "vitest";

2+

import {

3+

codexPromptOverlayContext,

4+

GPT5_CONTRACT_MODEL_ID,

5+

NON_GPT5_CONTRACT_MODEL_ID,

6+

sharedGpt5PersonalityConfig,

7+

} from "../../test/helpers/agents/prompt-overlay-runtime-contract.js";

8+

import { buildCodexProvider } from "./provider.js";

9+
10+

describe("Codex prompt overlay runtime contract", () => {

11+

it("adds the shared GPT-5 behavior contract to Codex GPT-5 provider runs", () => {

12+

const provider = buildCodexProvider();

13+

const contribution = provider.resolveSystemPromptContribution?.(

14+

codexPromptOverlayContext({ modelId: GPT5_CONTRACT_MODEL_ID }),

15+

);

16+
17+

expect(contribution?.stablePrefix).toContain("<persona_latch>");

18+

expect(contribution?.sectionOverrides?.interaction_style).toContain(

19+

"This is a live chat, not a memo.",

20+

);

21+

});

22+
23+

it("respects shared GPT-5 prompt overlay config for Codex runs", () => {

24+

const provider = buildCodexProvider();

25+

const contribution = provider.resolveSystemPromptContribution?.(

26+

codexPromptOverlayContext({

27+

modelId: GPT5_CONTRACT_MODEL_ID,

28+

config: sharedGpt5PersonalityConfig("off"),

29+

}),

30+

);

31+
32+

expect(contribution?.stablePrefix).toContain("<persona_latch>");

33+

expect(contribution?.sectionOverrides).toEqual({});

34+

});

35+
36+

it("does not add the shared GPT-5 overlay to non-GPT-5 Codex provider runs", () => {

37+

const provider = buildCodexProvider();

38+
39+

expect(

40+

provider.resolveSystemPromptContribution?.(

41+

codexPromptOverlayContext({ modelId: NON_GPT5_CONTRACT_MODEL_ID }),

42+

),

43+

).toBeUndefined();

44+

});

45+

});