robot-resources 1.10.4 → 1.10.5

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.
@@ -190,8 +190,9 @@ function trustScraperOcPlugin() {
190
190
  */
191
191
  function installScraperOcPluginFiles() {
192
192
  const require = createRequire(import.meta.url);
193
- const pluginPkgPath = require.resolve('@robot-resources/scraper-oc-plugin/package.json');
194
- const pluginDir = dirname(pluginPkgPath);
193
+ // OC plugin lives as a subfolder inside the scraper package post-consolidation.
194
+ const scraperPkgPath = require.resolve('@robot-resources/scraper/package.json');
195
+ const pluginDir = join(dirname(scraperPkgPath), 'oc-plugin');
195
196
 
196
197
  const targetDir = join(homedir(), '.openclaw', 'extensions', 'robot-resources-scraper-oc-plugin');
197
198
  mkdirSync(targetDir, { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robot-resources",
3
- "version": "1.10.4",
3
+ "version": "1.10.5",
4
4
  "description": "Robot Resources — AI agent tools. One command to install everything.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,8 +19,7 @@
19
19
  "dependencies": {
20
20
  "@robot-resources/cli-core": "*",
21
21
  "@robot-resources/router": "*",
22
- "@robot-resources/scraper": "^0.3.1",
23
- "@robot-resources/scraper-oc-plugin": "*"
22
+ "@robot-resources/scraper": "*"
24
23
  },
25
24
  "devDependencies": {
26
25
  "vitest": "^1.2.0"