myaidev-method 0.0.5 ā 0.0.6
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/cli.js +5 -17
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -78,11 +78,12 @@ program
|
|
|
78
78
|
console.log(chalk.blue('\nš Add WordPress integration (optional):'));
|
|
79
79
|
console.log(chalk.gray(' ⢠Run /myai-configure wordpress for guided setup'));
|
|
80
80
|
console.log(chalk.gray(' ⢠Publish content with /myai-wordpress-publish filename.md'));
|
|
81
|
-
console.log(chalk.gray(' ā¢
|
|
81
|
+
console.log(chalk.gray(' ⢠Supports both Classic and Gutenberg block editors'));
|
|
82
82
|
|
|
83
83
|
console.log(chalk.magenta('\nš Need help?'));
|
|
84
84
|
console.log(chalk.gray(' ⢠Check USER_GUIDE.md for detailed instructions'));
|
|
85
85
|
console.log(chalk.gray(' ⢠Visit: https://github.com/myaione/myaidev-method'));
|
|
86
|
+
console.log(chalk.gray(' ⢠WordPress docs: GitHub repo > docs/'));
|
|
86
87
|
}
|
|
87
88
|
console.log(chalk.cyan(`\nš Restart ${cliType} to load your new AI-powered commands!`));
|
|
88
89
|
|
|
@@ -211,27 +212,14 @@ DEFAULT_TONE=professional
|
|
|
211
212
|
await fs.copy(gutenbergConverter, path.join(mcpDir, 'gutenberg-converter.js'));
|
|
212
213
|
}
|
|
213
214
|
|
|
214
|
-
// Copy USER_GUIDE.md
|
|
215
|
+
// Copy USER_GUIDE.md - Essential for users to understand customization
|
|
215
216
|
const userGuide = path.join(__dirname, '..', 'USER_GUIDE.md');
|
|
216
217
|
if (await fs.pathExists(userGuide)) {
|
|
217
218
|
await fs.copy(userGuide, path.join(projectDir, 'USER_GUIDE.md'));
|
|
218
219
|
}
|
|
219
220
|
|
|
220
|
-
//
|
|
221
|
-
|
|
222
|
-
if (await fs.pathExists(wordpressIntegrationDoc)) {
|
|
223
|
-
await fs.copy(wordpressIntegrationDoc, path.join(projectDir, 'WORDPRESS_INTEGRATION.md'));
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
const wordpressExamplesDoc = path.join(__dirname, '..', 'src', 'templates', 'docs', 'wordpress-api-examples.md');
|
|
227
|
-
if (await fs.pathExists(wordpressExamplesDoc)) {
|
|
228
|
-
await fs.copy(wordpressExamplesDoc, path.join(projectDir, 'wordpress-api-examples.md'));
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
const wordpressTroubleshoot = path.join(__dirname, '..', 'src', 'templates', 'docs', 'wordpress-troubleshoot.js');
|
|
232
|
-
if (await fs.pathExists(wordpressTroubleshoot)) {
|
|
233
|
-
await fs.copy(wordpressTroubleshoot, path.join(projectDir, 'wordpress-troubleshoot.js'));
|
|
234
|
-
}
|
|
221
|
+
// Note: WORDPRESS_INTEGRATION.md could be helpful, but keeping docs minimal
|
|
222
|
+
// Users can find detailed docs on GitHub if needed
|
|
235
223
|
}
|
|
236
224
|
|
|
237
225
|
async function setupGemini(projectDir) {
|