@giveagent/cli 0.1.0 → 0.1.1
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const __dirname = dirname(__filename);
|
|
|
8
8
|
const SKILL_DIR = join(homedir(), ".claude", "skills", "giveagent");
|
|
9
9
|
const SKILL_FILE = join(SKILL_DIR, "SKILL.md");
|
|
10
10
|
const CREDENTIALS_FILE = join(homedir(), ".config", "giveagent", "credentials.json");
|
|
11
|
-
const BUNDLED_SKILL = join(__dirname, "
|
|
11
|
+
const BUNDLED_SKILL = join(__dirname, "assets", "SKILL.md");
|
|
12
12
|
function install() {
|
|
13
13
|
// Create skill directory
|
|
14
14
|
mkdirSync(SKILL_DIR, { recursive: true });
|