@codedrifters/configulator 0.0.214 → 0.0.215
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/lib/index.d.mts +29 -0
- package/lib/index.d.ts +29 -0
- package/lib/index.js +14 -0
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +14 -0
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -8325,6 +8325,13 @@ var ClaudeRenderer = class _ClaudeRenderer {
|
|
|
8325
8325
|
new TextFile2(component, `.claude/skills/${skill.name}/SKILL.md`, {
|
|
8326
8326
|
lines
|
|
8327
8327
|
});
|
|
8328
|
+
if (skill.referenceFiles && skill.referenceFiles.length > 0) {
|
|
8329
|
+
for (const file of skill.referenceFiles) {
|
|
8330
|
+
new TextFile2(component, `.claude/skills/${skill.name}/${file.path}`, {
|
|
8331
|
+
lines: file.content.split("\n")
|
|
8332
|
+
});
|
|
8333
|
+
}
|
|
8334
|
+
}
|
|
8328
8335
|
}
|
|
8329
8336
|
}
|
|
8330
8337
|
static renderSubAgents(component, subAgents) {
|
|
@@ -8496,6 +8503,13 @@ var CursorRenderer = class _CursorRenderer {
|
|
|
8496
8503
|
new TextFile3(component, `.cursor/skills/${skill.name}/SKILL.md`, {
|
|
8497
8504
|
lines
|
|
8498
8505
|
});
|
|
8506
|
+
if (skill.referenceFiles && skill.referenceFiles.length > 0) {
|
|
8507
|
+
for (const file of skill.referenceFiles) {
|
|
8508
|
+
new TextFile3(component, `.cursor/skills/${skill.name}/${file.path}`, {
|
|
8509
|
+
lines: file.content.split("\n")
|
|
8510
|
+
});
|
|
8511
|
+
}
|
|
8512
|
+
}
|
|
8499
8513
|
}
|
|
8500
8514
|
}
|
|
8501
8515
|
static renderSubAgents(component, subAgents) {
|