@vectorize-io/self-driving-agents 0.0.8 → 0.0.9

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -104,7 +104,7 @@ async function resolveAgentDir(input, spinner) {
104
104
  }
105
105
  // ── Skill ───────────────────────────────────────────────
106
106
  const __dirname = dirname(fileURLToPath(import.meta.url));
107
- const SKILL_PATH = join(__dirname, "..", "skill", "SKILL.md");
107
+ const SKILL_PATH = join(__dirname, "skill", "SKILL.md");
108
108
  const SKILL_MD = readFileSync(SKILL_PATH, "utf-8");
109
109
  // ── Plugin management ───────────────────────────────────
110
110
  const OPENCLAW_CONFIG_PATH = join(homedir(), ".openclaw", "openclaw.json");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vectorize-io/self-driving-agents",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Install self-driving agents with portable memory on any harness",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",