mvc-kit 2.12.4 → 2.12.5
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.
|
@@ -32,7 +32,7 @@ function ensureDir(dir) {
|
|
|
32
32
|
*/
|
|
33
33
|
export function installClaude(projectRoot) {
|
|
34
34
|
const claudeDir = join(projectRoot, '.claude');
|
|
35
|
-
const skillsDir = join(claudeDir, 'skills');
|
|
35
|
+
const skillsDir = join(claudeDir, 'skills', 'mvc-kit');
|
|
36
36
|
const agentsDir = join(claudeDir, 'agents');
|
|
37
37
|
|
|
38
38
|
ensureDir(skillsDir);
|
|
@@ -70,7 +70,7 @@ For detailed per-class documentation, read the \`.md\` files colocated with sour
|
|
|
70
70
|
\`node_modules/mvc-kit/src/\`
|
|
71
71
|
`;
|
|
72
72
|
|
|
73
|
-
writeFileSync(join(skillsDir, '
|
|
73
|
+
writeFileSync(join(skillsDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
74
74
|
files.push('.claude/skills/mvc-kit/SKILL.md');
|
|
75
75
|
|
|
76
76
|
// 2. Architect agent
|