ai-spec-tool 0.1.7 → 0.1.10
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/bin/ai-spec-tool.js +5 -0
- package/package.json +1 -1
package/bin/ai-spec-tool.js
CHANGED
|
@@ -7,6 +7,7 @@ const readline = require("readline");
|
|
|
7
7
|
const ASSET_ROOT = path.resolve(__dirname, "..", "assets");
|
|
8
8
|
const TEMPLATE_AGENTS = path.join(ASSET_ROOT, "AGENTS.md");
|
|
9
9
|
const TEMPLATE_AGENTS_DIR = path.join(ASSET_ROOT, ".agents");
|
|
10
|
+
const TEMPLATE_SKILLS_DIR = path.join(ASSET_ROOT, "skills");
|
|
10
11
|
const TEMPLATE_DOCS_DIR = path.join(ASSET_ROOT, "docs");
|
|
11
12
|
const PKG_JSON = path.resolve(__dirname, "..", "package.json");
|
|
12
13
|
|
|
@@ -150,6 +151,10 @@ async function init(options) {
|
|
|
150
151
|
if (fs.existsSync(TEMPLATE_AGENTS_DIR)) {
|
|
151
152
|
copyDirSafe(TEMPLATE_AGENTS_DIR, targetAgentsDir, report, options);
|
|
152
153
|
}
|
|
154
|
+
if (fs.existsSync(TEMPLATE_SKILLS_DIR)) {
|
|
155
|
+
const targetSkillsDir = path.join(targetAgentsDir, "skills");
|
|
156
|
+
copyDirSafe(TEMPLATE_SKILLS_DIR, targetSkillsDir, report, options);
|
|
157
|
+
}
|
|
153
158
|
if (fs.existsSync(TEMPLATE_DOCS_DIR)) {
|
|
154
159
|
const targetDocsDir = path.join(cwd, "docs");
|
|
155
160
|
copyDirSafe(TEMPLATE_DOCS_DIR, targetDocsDir, report, options);
|