mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
## Description
Harden the release artifact workflow so maintainers can reproduce npm
and Python release checks locally and so OpenClaw packaging does not
depend on a not-yet-published SDK version. This follow-up also keeps the
OpenClaw loader export contract explicit and updates the PR after the
branch was merged with current `headroomlabs/main`.
## Type of Change
- [x] Bug fix (non-breaking change that fixes an issue)
- [x] New feature (non-breaking change that adds functionality)
- [x] Documentation update
## Changes Made
- Added reusable local release smoke scripts for npm assets, Python
wheel/sdist artifacts, and the combined release gate.
- Switched the release workflow npm asset build to the reusable npm
builder.
- Made OpenClaw release asset building install against the just-built
local SDK tarball before rewriting packed metadata to the release
dependency range.
- Kept the OpenClaw source dependency registry-installable at
`headroom-ai@^0.22.3` while the packed artifact still ships
`^<release-version>`.
- Added `registerHeadroomPlugin` as a named export while preserving the
default `{ register }` OpenClaw loader contract.
- Added Windows development bootstrap docs/script and regression tests
for version sync, npm asset ordering, OpenClaw source installability,
and Python wheel smoke import isolation.
## Testing
- [x] Unit tests pass (`pytest`)
- [x] New tests added for new functionality
- [x] Manual testing performed
### Test Output
```text
uv run --with pytest python -m pytest tests/test_release_workflows.py scripts/tests/test_version_sync.py -q
44 passed, 1 warning
node --check scripts/build_npm_release_assets.mjs
node --check scripts/verify_npm_release_assets.mjs
python -m py_compile scripts/build_python_release_smoke.py scripts/release_smoke_all.py scripts/version-sync.py
python scripts/verify-versions.py
All versions aligned at 0.31.0
npm ci (plugins/openclaw)
added 88 packages, audited 89 packages, found 0 vulnerabilities
python scripts/release_smoke_all.py --out release-assets-local/all-pr1824-postmerge-fixed-20260710-104739
Verified npm release assets for 0.31.0
wheel metadata OK: headroom_ai-0.31.0-cp310-abi3-win_amd64.whl contains headroom/_core.pyd
sdist License-File metadata OK: ['LICENSE', 'NOTICE']
smoke-import OK: version=0.31.0 hello=headroom-core
```
## Real Behavior Proof
- Environment: Windows 11, Python 3.14.3, Node v24.14.0, npm 11.9.0, uv
0.11.15, Rust/Cargo already installed in the local development
environment.
- Exact command / steps: Ran `python scripts/release_smoke_all.py --out
release-assets-local/all-pr1824-postmerge-fixed-20260710-104739` after
syncing this branch with current `headroomlabs/main`.
- Observed result: The command built `headroom-ai-0.31.0.tgz`,
`headroom-openclaw-0.31.0.tgz`,
`headroom_ai-0.31.0-cp310-abi3-win_amd64.whl`, and
`headroom_ai-0.31.0.tar.gz`; npm verifier passed; the wheel installed
into a fresh venv and imported `headroom._core`.
- Not tested: Full GitHub Actions release matrix and publish jobs with
real PyPI/npm/GitHub Packages credentials.
## Review Readiness
- [x] I have performed a self-review
- [x] This PR is ready for human review
## Checklist
- [x] My code follows the project's style guidelines
- [x] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [x] I have added tests that prove my fix is effective or that my
feature works
- [x] New and existing unit tests pass locally with my changes
- [ ] I have updated the CHANGELOG.md if applicable
## Screenshots (if applicable)
N/A.
## Additional Notes
The post-merge full smoke initially failed because the OpenClaw source
package depended on `headroom-ai@^0.31.0`, which is not available on
public npm yet. The builder now installs OpenClaw against the just-built
local SDK tarball before build/pack, and then rewrites packed metadata
to `^0.31.0`.
---------
Co-authored-by: JerrettDavis <mxjerrett@gmail.com>
Co-authored-by: Tejas Chopra <chopratejas@gmail.com>
389 lines
12 KiB
TypeScript
389 lines
12 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const mocked = vi.hoisted(() => ({
|
|
ensureProxyUrl: vi.fn(async () => "http://127.0.0.1:8787"),
|
|
ensureProxyStarted: vi.fn(),
|
|
getProxyUrl: vi.fn(() => null as string | null),
|
|
createHeadroomRetrieveTool: vi.fn(({ proxyUrl }: { proxyUrl: string }) => ({ proxyUrl })),
|
|
}));
|
|
|
|
const proxyReadyListeners: Array<(proxyUrl: string) => void | Promise<void>> = [];
|
|
|
|
vi.mock("../src/engine.js", () => ({
|
|
HeadroomContextEngine: class {
|
|
ensureProxyUrl = mocked.ensureProxyUrl;
|
|
ensureProxyStarted = mocked.ensureProxyStarted;
|
|
getProxyUrl = mocked.getProxyUrl;
|
|
onProxyReady(listener: (proxyUrl: string) => void | Promise<void>) {
|
|
proxyReadyListeners.push(listener);
|
|
return () => {};
|
|
}
|
|
},
|
|
}));
|
|
|
|
vi.mock("../src/tools/headroom-retrieve.js", () => ({
|
|
createHeadroomRetrieveTool: mocked.createHeadroomRetrieveTool,
|
|
}));
|
|
|
|
import headroomExtension, { registerHeadroomPlugin } from "../src/plugin/index.js";
|
|
|
|
afterEach(() => {
|
|
vi.restoreAllMocks();
|
|
mocked.ensureProxyUrl.mockClear();
|
|
mocked.ensureProxyStarted.mockClear();
|
|
mocked.getProxyUrl.mockReset();
|
|
mocked.getProxyUrl.mockReturnValue(null);
|
|
mocked.createHeadroomRetrieveTool.mockClear();
|
|
proxyReadyListeners.length = 0;
|
|
});
|
|
|
|
describe("headroomPlugin runtime routing", () => {
|
|
it("exports the OpenClaw extension object with a register handler", () => {
|
|
expect(headroomExtension.register).toBe(registerHeadroomPlugin);
|
|
});
|
|
|
|
function stubConfiguredProxyProbe(response: "headroom" | "non-headroom" | "down") {
|
|
if (response === "down") {
|
|
vi.stubGlobal("fetch", vi.fn().mockRejectedValue(new Error("ECONNREFUSED")));
|
|
return;
|
|
}
|
|
|
|
vi.stubGlobal(
|
|
"fetch",
|
|
vi.fn((url: string) => {
|
|
if (url.endsWith("/readyz")) {
|
|
return Promise.resolve({ ok: true, status: 200, text: () => Promise.resolve("") });
|
|
}
|
|
if (url.endsWith("/v1/retrieve/stats")) {
|
|
return Promise.resolve({
|
|
ok: response === "headroom",
|
|
status: response === "headroom" ? 200 : 404,
|
|
text: () => Promise.resolve(""),
|
|
});
|
|
}
|
|
if (url.endsWith("/stats")) {
|
|
return Promise.resolve({
|
|
ok: response === "headroom",
|
|
status: response === "headroom" ? 200 : 200,
|
|
text: () =>
|
|
Promise.resolve(response === "headroom" ? JSON.stringify({ proxy_inbound: { total: 1 } }) : "{}"),
|
|
});
|
|
}
|
|
return Promise.resolve({ ok: false, status: 404, text: () => Promise.resolve("") });
|
|
}),
|
|
);
|
|
}
|
|
|
|
it("routes configured providers in memory once the proxy becomes available", async () => {
|
|
const gatewayHandlers = new Map<string, () => Promise<void>>();
|
|
const writeConfigFile = vi.fn();
|
|
const loadConfig = vi.fn(() => ({
|
|
models: {
|
|
providers: {
|
|
anthropic: {
|
|
api: "anthropic-messages",
|
|
},
|
|
},
|
|
},
|
|
}));
|
|
|
|
const api: any = {
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
headroom: {
|
|
config: {
|
|
gatewayProviderIds: ["codex", "claude", "copilot", "gemini", "openrouter"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
models: {
|
|
providers: {
|
|
anthropic: {
|
|
api: "anthropic-messages",
|
|
baseUrl: "https://api.anthropic.com",
|
|
},
|
|
"github-copilot": {
|
|
baseUrl: "https://api.githubcopilot.com/v1",
|
|
},
|
|
google: {
|
|
baseUrl: "https://generativelanguage.googleapis.com/v1beta",
|
|
},
|
|
openrouter: {
|
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
logger: {
|
|
info: vi.fn(),
|
|
warn: vi.fn(),
|
|
error: vi.fn(),
|
|
debug: vi.fn(),
|
|
},
|
|
registerContextEngine: vi.fn(),
|
|
registerTool: vi.fn(),
|
|
on: vi.fn((event: string, handler: () => Promise<void>) => {
|
|
gatewayHandlers.set(event, handler);
|
|
}),
|
|
runtime: {
|
|
config: {
|
|
loadConfig,
|
|
writeConfigFile,
|
|
},
|
|
},
|
|
};
|
|
|
|
registerHeadroomPlugin(api);
|
|
await Promise.resolve();
|
|
|
|
// With no active or configured proxy URL, initial routing defers without
|
|
// auto-starting the proxy or mutating providers.
|
|
expect(mocked.ensureProxyUrl).not.toHaveBeenCalled();
|
|
expect(mocked.ensureProxyStarted).not.toHaveBeenCalled();
|
|
expect(writeConfigFile).not.toHaveBeenCalled();
|
|
expect(loadConfig).not.toHaveBeenCalled();
|
|
expect(api.config.models.providers["openai-codex"]).toBeUndefined();
|
|
|
|
await proxyReadyListeners[0]?.("http://127.0.0.1:8787");
|
|
|
|
expect(api.config.models.providers["openai-codex"]).toEqual({
|
|
baseUrl: "http://127.0.0.1:8787/backend-api",
|
|
models: [],
|
|
});
|
|
expect(api.config.models.providers.anthropic).toEqual({
|
|
api: "anthropic-messages",
|
|
baseUrl: "http://127.0.0.1:8787",
|
|
models: [],
|
|
});
|
|
expect(api.config.models.providers["github-copilot"]).toEqual({
|
|
baseUrl: "http://127.0.0.1:8787/v1",
|
|
models: [],
|
|
});
|
|
expect(api.config.models.providers.google).toEqual({
|
|
baseUrl: "http://127.0.0.1:8787/v1beta",
|
|
models: [],
|
|
});
|
|
expect(api.config.models.providers.openrouter).toEqual({
|
|
baseUrl: "http://127.0.0.1:8787/api/v1",
|
|
models: [],
|
|
});
|
|
|
|
const gatewayStart = gatewayHandlers.get("gateway_start");
|
|
expect(gatewayStart).toBeTypeOf("function");
|
|
// getProxyUrl now reports the active proxy so gateway_start re-routes in
|
|
// memory without ever auto-starting or awaiting the proxy.
|
|
mocked.getProxyUrl.mockReturnValue("http://127.0.0.1:8787");
|
|
await gatewayStart?.();
|
|
expect(mocked.ensureProxyStarted).not.toHaveBeenCalled();
|
|
expect(mocked.ensureProxyUrl).not.toHaveBeenCalled();
|
|
expect(writeConfigFile).not.toHaveBeenCalled();
|
|
expect(loadConfig).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("does not auto-start on gateway_start when no proxy URL is available", async () => {
|
|
const gatewayHandlers = new Map<string, () => Promise<void>>();
|
|
|
|
const api: any = {
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
headroom: {
|
|
config: { gatewayProviderIds: ["claude"] },
|
|
},
|
|
},
|
|
},
|
|
models: {
|
|
providers: {
|
|
anthropic: { api: "anthropic-messages", baseUrl: "https://api.anthropic.com" },
|
|
},
|
|
},
|
|
},
|
|
logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },
|
|
registerContextEngine: vi.fn(),
|
|
registerTool: vi.fn(),
|
|
on: vi.fn((event: string, handler: () => Promise<void>) => {
|
|
gatewayHandlers.set(event, handler);
|
|
}),
|
|
};
|
|
|
|
registerHeadroomPlugin(api);
|
|
await Promise.resolve();
|
|
|
|
await gatewayHandlers.get("gateway_start")?.();
|
|
|
|
expect(mocked.ensureProxyStarted).not.toHaveBeenCalled();
|
|
expect(mocked.ensureProxyUrl).not.toHaveBeenCalled();
|
|
expect(api.config.models.providers.anthropic).toEqual({
|
|
api: "anthropic-messages",
|
|
baseUrl: "https://api.anthropic.com",
|
|
});
|
|
});
|
|
|
|
it("routes configured proxyUrl only after it probes as Headroom", async () => {
|
|
const gatewayHandlers = new Map<string, () => Promise<void>>();
|
|
stubConfiguredProxyProbe("headroom");
|
|
|
|
const api: any = {
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
headroom: {
|
|
config: {
|
|
proxyUrl: "http://127.0.0.1:8787",
|
|
gatewayProviderIds: ["claude"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
models: {
|
|
providers: {
|
|
anthropic: { api: "anthropic-messages", baseUrl: "https://api.anthropic.com" },
|
|
},
|
|
},
|
|
},
|
|
logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },
|
|
registerContextEngine: vi.fn(),
|
|
registerTool: vi.fn(),
|
|
on: vi.fn((event: string, handler: () => Promise<void>) => {
|
|
gatewayHandlers.set(event, handler);
|
|
}),
|
|
};
|
|
|
|
registerHeadroomPlugin(api);
|
|
await gatewayHandlers.get("gateway_start")?.();
|
|
|
|
// Configured proxyUrl is probe-gated before provider mutation.
|
|
expect(mocked.ensureProxyStarted).not.toHaveBeenCalled();
|
|
expect(mocked.ensureProxyUrl).not.toHaveBeenCalled();
|
|
expect(api.config.models.providers.anthropic).toEqual({
|
|
api: "anthropic-messages",
|
|
baseUrl: "http://127.0.0.1:8787",
|
|
models: [],
|
|
});
|
|
});
|
|
|
|
it("does not route configured proxyUrl when the proxy is unavailable", async () => {
|
|
const gatewayHandlers = new Map<string, () => Promise<void>>();
|
|
stubConfiguredProxyProbe("down");
|
|
|
|
const api: any = {
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
headroom: {
|
|
config: {
|
|
proxyUrl: "http://127.0.0.1:8787",
|
|
gatewayProviderIds: ["claude"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
models: {
|
|
providers: {
|
|
anthropic: { api: "anthropic-messages", baseUrl: "https://api.anthropic.com" },
|
|
},
|
|
},
|
|
},
|
|
logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },
|
|
registerContextEngine: vi.fn(),
|
|
registerTool: vi.fn(),
|
|
on: vi.fn((event: string, handler: () => Promise<void>) => {
|
|
gatewayHandlers.set(event, handler);
|
|
}),
|
|
};
|
|
|
|
registerHeadroomPlugin(api);
|
|
await Promise.resolve();
|
|
await Promise.resolve();
|
|
await gatewayHandlers.get("gateway_start")?.();
|
|
|
|
expect(mocked.ensureProxyStarted).not.toHaveBeenCalled();
|
|
expect(mocked.ensureProxyUrl).not.toHaveBeenCalled();
|
|
expect(api.config.models.providers.anthropic).toEqual({
|
|
api: "anthropic-messages",
|
|
baseUrl: "https://api.anthropic.com",
|
|
});
|
|
expect(api.logger.warn).toHaveBeenCalledWith(
|
|
expect.stringContaining("Skipping upstream gateway routing"),
|
|
);
|
|
});
|
|
|
|
it("does not route configured proxyUrl when only generic liveness endpoints respond", async () => {
|
|
const gatewayHandlers = new Map<string, () => Promise<void>>();
|
|
stubConfiguredProxyProbe("non-headroom");
|
|
|
|
const api: any = {
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
headroom: {
|
|
config: {
|
|
proxyUrl: "http://127.0.0.1:8787",
|
|
gatewayProviderIds: ["claude"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
models: {
|
|
providers: {
|
|
anthropic: { api: "anthropic-messages", baseUrl: "https://api.anthropic.com" },
|
|
},
|
|
},
|
|
},
|
|
logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },
|
|
registerContextEngine: vi.fn(),
|
|
registerTool: vi.fn(),
|
|
on: vi.fn((event: string, handler: () => Promise<void>) => {
|
|
gatewayHandlers.set(event, handler);
|
|
}),
|
|
};
|
|
|
|
registerHeadroomPlugin(api);
|
|
await gatewayHandlers.get("gateway_start")?.();
|
|
|
|
expect(api.config.models.providers.anthropic).toEqual({
|
|
api: "anthropic-messages",
|
|
baseUrl: "https://api.anthropic.com",
|
|
});
|
|
expect(api.logger.warn).toHaveBeenCalledWith(
|
|
expect.stringContaining("configured proxyUrl is not a ready Headroom proxy"),
|
|
);
|
|
});
|
|
|
|
it("documents that the retrieve tool can be created from configured proxyUrl before routing is validated", () => {
|
|
stubConfiguredProxyProbe("down");
|
|
|
|
const api: any = {
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
headroom: {
|
|
config: {
|
|
proxyUrl: "http://127.0.0.1:8787",
|
|
gatewayProviderIds: ["codex"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
models: {
|
|
providers: {},
|
|
},
|
|
},
|
|
logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },
|
|
registerContextEngine: vi.fn(),
|
|
registerTool: vi.fn(),
|
|
on: vi.fn(),
|
|
};
|
|
|
|
registerHeadroomPlugin(api);
|
|
const [toolFactory] = api.registerTool.mock.calls[0];
|
|
const tool = toolFactory({});
|
|
|
|
expect(tool).toEqual({ proxyUrl: "http://127.0.0.1:8787" });
|
|
expect(mocked.createHeadroomRetrieveTool).toHaveBeenCalledWith({
|
|
proxyUrl: "http://127.0.0.1:8787",
|
|
});
|
|
});
|
|
});
|