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
5 changes: 5 additions & 0 deletions integrations/openclaw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "0.2.0",
"description": "NeMo Flow-authored observability plugin for OpenClaw.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/NVIDIA/NeMo-Flow",
"directory": "integrations/openclaw"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
9 changes: 9 additions & 0 deletions integrations/openclaw/scripts/check-pack-payload.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,15 @@ const packedFiles = new Set(packInfo.files.map((file) => normalizePackagePath(fi
const packageJson = JSON.parse(readFileSync(path.join(packageRoot, "package.json"), "utf8"));
const declaredFiles = new Set(packageJson.files ?? []);

assert(
packageJson.repository?.url === "https://github.com/NVIDIA/NeMo-Flow",
'package repository.url must match the GitHub Actions provenance source repository',
);
assert(
packageJson.repository?.directory === "integrations/openclaw",
"package repository.directory must identify the OpenClaw workspace",
);

for (const entry of declaredFiles) {
assert(
!(entry.startsWith("src/") && entry.includes("*")),
Expand Down
Loading