pacioli 1.0.2 → 1.0.3
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/package.json +1 -1
- package/src/commands/init.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pacioli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "CLI tool for generating professional financial documents (invoices, quotations, receipts) for freelancers. Named after Luca Pacioli, father of accounting.",
|
|
5
5
|
"author": "Peerasak Unsakon <clonezer@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
package/src/commands/init.ts
CHANGED
|
@@ -272,6 +272,11 @@ export async function initCommand(args: string[]) {
|
|
|
272
272
|
const opencodeSkillsDest = join(targetDir, ".opencode/skill/pacioli-skill");
|
|
273
273
|
console.log(" Creating .opencode/skill/pacioli-skill...");
|
|
274
274
|
copyDirectory(skillsSource, opencodeSkillsDest, force);
|
|
275
|
+
|
|
276
|
+
// 3. .agent/skills/pacioli-skill (Antigravity)
|
|
277
|
+
const agentSkillsDest = join(targetDir, ".agent/skills/pacioli-skill");
|
|
278
|
+
console.log(" Creating .agent/skills/pacioli-skill...");
|
|
279
|
+
copyDirectory(skillsSource, agentSkillsDest, force);
|
|
275
280
|
} else {
|
|
276
281
|
console.warn(` ⚠️ Agent skills not found at ${skillsSource}`);
|
|
277
282
|
}
|