claude-code-templates 1.3.7 → 1.3.8
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/file-operations.js +1 -1
package/package.json
CHANGED
package/src/file-operations.js
CHANGED
|
@@ -196,7 +196,7 @@ function createValidationPrompt(templateConfig) {
|
|
|
196
196
|
const language = templateConfig.language || 'unknown';
|
|
197
197
|
const framework = templateConfig.framework || 'none';
|
|
198
198
|
|
|
199
|
-
return `
|
|
199
|
+
return `Validate Claude Code Templates installation for this ${language}${framework !== 'none' ? ` ${framework}` : ''} project. 1) Check project structure (package.json, src/, etc.) 2) Review CLAUDE.md, .claude/settings.json, .claude/commands/ 3) Compare with actual project dependencies 4) Suggest specific improvements. Make configuration match this project's actual setup.`;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
async function processSettingsFile(sourcePath, destPath, templateConfig) {
|