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
4 changes: 4 additions & 0 deletions packages/leadclaw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog — @leadbay/leadclaw

## 0.2.1 — 2026-04-21

No functional changes. First release shipping with signed sigstore provenance (repo is now public, which unblocks npm's provenance gate). Version kept in sync with `@leadbay/mcp@0.2.1`.

## 0.2.0 — 2026-04-20

First public release to npm and ClawHub.
Expand Down
2 changes: 1 addition & 1 deletion packages/leadclaw/openclaw.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "leadclaw",
"name": "LeadClaw",
"description": "Leadbay lead discovery, qualification, and contact enrichment for AI agents",
"version": "0.2.0",
"version": "0.2.1",
"contracts": {
"tools": [
"leadbay_login",
Expand Down
2 changes: 1 addition & 1 deletion packages/leadclaw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leadbay/leadclaw",
"version": "0.2.0",
"version": "0.2.1",
"description": "OpenClaw plugin for Leadbay — AI lead discovery, qualification, and enrichment",
"type": "module",
"main": "dist/index.js",
Expand Down
4 changes: 3 additions & 1 deletion packages/leadclaw/test/contract.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ import { register } from "../src/index.js";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const manifestPath = path.resolve(__dirname, "..", "openclaw.plugin.json");
const manifest = JSON.parse(readFileSync(manifestPath, "utf8"));
const pkgPath = path.resolve(__dirname, "..", "package.json");
const pkg = JSON.parse(readFileSync(pkgPath, "utf8"));

describe("contract: manifest ↔ code parity (full expose)", () => {
it("with exposeGranular+exposeWrite, registered tools match manifest exactly", () => {
Expand Down Expand Up @@ -112,7 +114,7 @@ describe("contract: manifest ↔ code parity (full expose)", () => {

it("manifest has expected top-level shape", () => {
expect(manifest.id).toBe("leadclaw");
expect(manifest.version).toBe("0.2.0");
expect(manifest.version).toBe(pkg.version);
expect(manifest.configSchema).toBeTypeOf("object");
expect(Array.isArray(manifest.contracts.tools)).toBe(true);
});
Expand Down
Loading