Remove external web automation provenance refs

This commit is contained in:
Stefano Fiorini
2026-04-09 11:11:40 -05:00
parent 879cccf383
commit c344e96984
10 changed files with 0 additions and 112 deletions

View File

@@ -6,7 +6,6 @@ import { fileURLToPath } from "node:url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const referencePath = path.join(__dirname, "reference-source.json");
function fail(message, details) {
const payload = { error: message };
@@ -32,16 +31,8 @@ async function main() {
fail("browse.ts is not configured for CloakBrowser.");
}
const referenceSource = JSON.parse(fs.readFileSync(referencePath, "utf8"));
if (!referenceSource.referenceRepo || !referenceSource.referenceCommit) {
fail("Frozen reference metadata is missing from reference-source.json.");
}
process.stdout.write("OK: cloakbrowser + playwright-core installed\n");
process.stdout.write("OK: CloakBrowser integration detected in browse.ts\n");
process.stdout.write(
`OK: frozen reference ${referenceSource.referenceRepo}@${referenceSource.referenceCommit}\n`
);
}
main().catch((error) => {

View File

@@ -1,26 +0,0 @@
{
"referenceRepo": "https://git.fiorinis.com/Home/stef-openclaw-skills",
"referenceCommit": "b9878e938c1055e0284876aeb65157286d95f9d1",
"importedFiles": [
"auth.ts",
"browse.ts",
"check-install.js",
"extract.js",
"flow.ts",
"package.json",
"scan-local-app.ts",
"scrape.ts",
"test-full.ts",
"test-minimal.ts",
"test-profile.ts"
],
"excludedReferencePatterns": [
"*-discover.js",
"*-photos.js",
"*-identifiers.js",
"*-photo-data.js",
"*-address.js",
"*-photo-common.js",
"*.test.mjs"
]
}