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

推荐订阅源

Y
Y Combinator Blog
GbyAI
GbyAI
U
Unit 42
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
D
DataBreaches.Net
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
罗磊的独立博客
B
Blog RSS Feed
J
Java Code Geeks
The GitHub Blog
The GitHub Blog

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
fix(agents): skip auth gate for CLI-owned transport (#885...
yu-xin-c · 2026-06-19 · via Recent Commits to openclaw:main

@@ -739,6 +739,58 @@ describe("CLI attempt execution", () => {

739739

expect(firstRunCliAgentArg().authProfileId).toBe("openai:work");

740740

});

741741742+

it("skips auto auth-profile resolution for CLI-owned transport", async () => {

743+

const sessionKey = "agent:main:direct:codex-cli-owned-transport";

744+

const sessionEntry: SessionEntry = {

745+

sessionId: "openclaw-session-codex-owned",

746+

updatedAt: Date.now(),

747+

};

748+

const sessionStore: Record<string, SessionEntry> = { [sessionKey]: sessionEntry };

749+

const cfg: OpenClawConfig = {

750+

agents: {

751+

defaults: {

752+

agentRuntime: { id: "codex" },

753+

},

754+

},

755+

};

756+

await fs.writeFile(storePath, JSON.stringify(sessionStore, null, 2), "utf-8");

757+

await fs.writeFile(path.join(tmpDir, "auth-profiles.json"), "{", "utf-8");

758+

runCliAgentMock.mockResolvedValueOnce(makeCliResult("codex cli response"));

759+760+

await runAgentAttempt({

761+

providerOverride: "codex-cli",

762+

originalProvider: "codex-cli",

763+

modelOverride: "gpt-5.4",

764+

cfg,

765+

sessionEntry,

766+

sessionId: sessionEntry.sessionId,

767+

sessionKey,

768+

sessionAgentId: "main",

769+

sessionFile: path.join(tmpDir, "session.jsonl"),

770+

workspaceDir: tmpDir,

771+

body: "continue",

772+

isFallbackRetry: false,

773+

resolvedThinkLevel: "medium",

774+

timeoutMs: 1_000,

775+

runId: "run-codex-cli-owned-transport-auth-skip",

776+

opts: {} as Parameters<typeof runAgentAttempt>[0]["opts"],

777+

runContext: {} as Parameters<typeof runAgentAttempt>[0]["runContext"],

778+

spawnedBy: undefined,

779+

messageChannel: undefined,

780+

skillsSnapshot: undefined,

781+

resolvedVerboseLevel: undefined,

782+

agentDir: tmpDir,

783+

onAgentEvent: vi.fn(),

784+

authProfileProvider: "openai-codex",

785+

sessionStore,

786+

storePath,

787+

sessionHasHistory: false,

788+

});

789+790+

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

791+

expect(firstRunCliAgentArg().authProfileId).toBeUndefined();

792+

});

793+742794

it("selects a google-gemini-cli auth profile for canonical Google models routed through Gemini CLI", async () => {

743795

const sessionKey = "agent:main:direct:gemini-cli-auth-bridge";

744796

const sessionEntry: SessionEntry = {

@@ -1708,6 +1760,81 @@ describe("CLI attempt execution", () => {

17081760

expect(firstRunCliAgentArg().authProfileId).toBeUndefined();

17091761

});

171017621763+

it("does not pass auth-order profiles to configured CLI runtimes that do not stage them", async () => {

1764+

const sessionKey = "agent:main:direct:anthropic-claude-runtime-auth-order";

1765+

const sessionEntry: SessionEntry = {

1766+

sessionId: "openclaw-session-anthropic-claude-runtime-auth-order",

1767+

updatedAt: Date.now(),

1768+

};

1769+

const sessionStore: Record<string, SessionEntry> = { [sessionKey]: sessionEntry };

1770+

await fs.writeFile(storePath, JSON.stringify(sessionStore, null, 2), "utf-8");

1771+

saveAuthProfileStore(

1772+

{

1773+

version: 1,

1774+

profiles: {

1775+

"anthropic:work": {

1776+

type: "api_key",

1777+

provider: "anthropic",

1778+

key: "test-key",

1779+

},

1780+

},

1781+

},

1782+

tmpDir,

1783+

{ filterExternalAuthProfiles: false, syncExternalCli: false },

1784+

);

1785+

runCliAgentMock.mockResolvedValueOnce(makeCliResult("configured claude cli"));

1786+1787+

await runAgentAttempt({

1788+

providerOverride: "anthropic",

1789+

originalProvider: "anthropic",

1790+

modelOverride: "claude-opus-4-7",

1791+

cfg: {

1792+

auth: {

1793+

order: {

1794+

anthropic: ["anthropic:work"],

1795+

},

1796+

},

1797+

agents: {

1798+

defaults: {

1799+

models: {

1800+

"anthropic/claude-opus-4-7": { agentRuntime: { id: "claude-cli" } },

1801+

},

1802+

},

1803+

},

1804+

} as OpenClawConfig,

1805+

sessionEntry,

1806+

sessionId: sessionEntry.sessionId,

1807+

sessionKey,

1808+

sessionAgentId: "main",

1809+

sessionFile: path.join(tmpDir, "session.jsonl"),

1810+

workspaceDir: tmpDir,

1811+

body: "use ambient cli auth",

1812+

isFallbackRetry: false,

1813+

resolvedThinkLevel: "medium",

1814+

timeoutMs: 1_000,

1815+

runId: "run-configured-claude-auth-order",

1816+

opts: {} as Parameters<typeof runAgentAttempt>[0]["opts"],

1817+

runContext: {} as Parameters<typeof runAgentAttempt>[0]["runContext"],

1818+

spawnedBy: undefined,

1819+

messageChannel: undefined,

1820+

skillsSnapshot: undefined,

1821+

resolvedVerboseLevel: undefined,

1822+

agentDir: tmpDir,

1823+

onAgentEvent: vi.fn(),

1824+

authProfileProvider: "anthropic",

1825+

sessionStore,

1826+

storePath,

1827+

sessionHasHistory: false,

1828+

});

1829+1830+

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

1831+

expectMockArgFields(runCliAgentMock, {

1832+

provider: "claude-cli",

1833+

model: "claude-opus-4-7",

1834+

});

1835+

expect(firstRunCliAgentArg().authProfileId).toBeUndefined();

1836+

});

1837+17111838

it("forwards runtime toolsAllow into CLI attempts so the CLI harness can fail closed", async () => {

17121839

const sessionKey = "agent:main:direct:claude-tools-allow";

17131840

const sessionEntry: SessionEntry = {