@riddledc/openclaw-riddledc 0.5.3 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHECKSUMS.txt CHANGED
@@ -1,4 +1,4 @@
1
- 7b95ce94da8d78fc473eafbfd9103a4a71f9022345f9fe81c965d9e4096d1f81 dist/index.cjs
1
+ db809d10ed37ca00b918bcf01f53d92a7a179e9eeea8c03fcc3ebeba67f26269 dist/index.cjs
2
2
  94ce04f0e2d84bf64dd68f0500dfdd2f951287a3deccec87f197261961927f6f dist/index.d.cts
3
3
  94ce04f0e2d84bf64dd68f0500dfdd2f951287a3deccec87f197261961927f6f dist/index.d.ts
4
- 3d661c3fc011ed382fa53058e3315d48f86d0f0663d543f3be22581816ddd906 dist/index.js
4
+ 06d6a6e3dcc832ed0f4be2f74a2e271aaabc79469210fef2a21d4b1f3830f8de dist/index.js
package/dist/index.cjs CHANGED
@@ -78,7 +78,7 @@ async function writeArtifact(workspace, subdir, filename, content) {
78
78
  const filePath = (0, import_node_path.join)(dir, filename);
79
79
  const buf = Buffer.from(content, "utf8");
80
80
  await (0, import_promises.writeFile)(filePath, buf);
81
- return { path: `riddle/${subdir}/${filename}`, sizeBytes: buf.byteLength };
81
+ return { path: filePath, sizeBytes: buf.byteLength };
82
82
  }
83
83
  async function writeArtifactBinary(workspace, subdir, filename, base64Content) {
84
84
  const dir = (0, import_node_path.join)(workspace, "riddle", subdir);
@@ -86,7 +86,7 @@ async function writeArtifactBinary(workspace, subdir, filename, base64Content) {
86
86
  const filePath = (0, import_node_path.join)(dir, filename);
87
87
  const buf = Buffer.from(base64Content, "base64");
88
88
  await (0, import_promises.writeFile)(filePath, buf);
89
- return { path: `riddle/${subdir}/${filename}`, sizeBytes: buf.byteLength };
89
+ return { path: filePath, sizeBytes: buf.byteLength };
90
90
  }
91
91
  async function applySafetySpec(result, opts) {
92
92
  const jobId = result.job_id ?? "unknown";
package/dist/index.js CHANGED
@@ -54,7 +54,7 @@ async function writeArtifact(workspace, subdir, filename, content) {
54
54
  const filePath = join(dir, filename);
55
55
  const buf = Buffer.from(content, "utf8");
56
56
  await writeFile(filePath, buf);
57
- return { path: `riddle/${subdir}/${filename}`, sizeBytes: buf.byteLength };
57
+ return { path: filePath, sizeBytes: buf.byteLength };
58
58
  }
59
59
  async function writeArtifactBinary(workspace, subdir, filename, base64Content) {
60
60
  const dir = join(workspace, "riddle", subdir);
@@ -62,7 +62,7 @@ async function writeArtifactBinary(workspace, subdir, filename, base64Content) {
62
62
  const filePath = join(dir, filename);
63
63
  const buf = Buffer.from(base64Content, "base64");
64
64
  await writeFile(filePath, buf);
65
- return { path: `riddle/${subdir}/${filename}`, sizeBytes: buf.byteLength };
65
+ return { path: filePath, sizeBytes: buf.byteLength };
66
66
  }
67
67
  async function applySafetySpec(result, opts) {
68
68
  const jobId = result.job_id ?? "unknown";
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-riddledc",
3
3
  "name": "Riddle",
4
4
  "description": "Riddle (riddledc.com) hosted browser API tools for OpenClaw agents.",
5
- "version": "0.5.3",
5
+ "version": "0.5.4",
6
6
  "notes": "0.4.0: Added riddle_scrape, riddle_map, riddle_crawl convenience tools. Updated riddle_steps and riddle_script descriptions with data extraction capabilities.",
7
7
  "type": "plugin",
8
8
  "bundledSkills": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/openclaw-riddledc",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "OpenClaw integration package for RiddleDC (no secrets).",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",