@axonpush/wizard 0.0.3 → 0.0.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.
Files changed (2) hide show
  1. package/dist/bin.js +2 -0
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -190,6 +190,7 @@ function findPyFiles(dir, maxDepth, depth = 0) {
190
190
  // src/lib/agent-runner.ts
191
191
  import fs2 from "fs";
192
192
  import path2 from "path";
193
+ import { fileURLToPath } from "url";
193
194
 
194
195
  // src/lib/commandments.ts
195
196
  var COMMANDMENTS = [
@@ -250,6 +251,7 @@ ${getCommandments()}`
250
251
  }
251
252
 
252
253
  // src/lib/agent-runner.ts
254
+ var __dirname = path2.dirname(fileURLToPath(import.meta.url));
253
255
  function buildPrompt(opts) {
254
256
  const skillPath = path2.resolve(__dirname, "..", "..", opts.config.skillDir, "SKILL.md");
255
257
  let skillContent = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axonpush/wizard",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "AI-powered wizard to integrate AxonPush into your AI agent project",
5
5
  "type": "module",
6
6
  "bin": {