myaidev-method 0.2.1 → 0.2.2
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/TECHNICAL_ARCHITECTURE.md +1868 -0
- package/bin/cli.js +5 -2
- package/package.json +3 -2
package/bin/cli.js
CHANGED
|
@@ -12,7 +12,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
12
12
|
const __dirname = path.dirname(__filename);
|
|
13
13
|
|
|
14
14
|
program
|
|
15
|
-
.version('0.2.
|
|
15
|
+
.version('0.2.2')
|
|
16
16
|
.description('AI CLI tools package with custom subagents and MCP integrations');
|
|
17
17
|
|
|
18
18
|
program
|
|
@@ -89,6 +89,7 @@ program
|
|
|
89
89
|
console.log(chalk.gray(' • PUBLISHING_GUIDE.md - Multi-platform publishing'));
|
|
90
90
|
console.log(chalk.gray(' • COOLIFY_DEPLOYMENT.md - Application deployment'));
|
|
91
91
|
console.log(chalk.gray(' • WORDPRESS_ADMIN_SCRIPTS.md - WordPress utilities'));
|
|
92
|
+
console.log(chalk.gray(' • TECHNICAL_ARCHITECTURE.md - Developer guide'));
|
|
92
93
|
|
|
93
94
|
console.log(chalk.magenta('\n💡 Quick tips:'));
|
|
94
95
|
console.log(chalk.gray(' • All platforms support draft/published workflows'));
|
|
@@ -227,6 +228,7 @@ COOLIFY_API_KEY=your-api-key
|
|
|
227
228
|
- **PUBLISHING_GUIDE.md** - Comprehensive multi-platform publishing guide
|
|
228
229
|
- **COOLIFY_DEPLOYMENT.md** - Application deployment guide
|
|
229
230
|
- **WORDPRESS_ADMIN_SCRIPTS.md** - WordPress admin utilities
|
|
231
|
+
- **TECHNICAL_ARCHITECTURE.md** - Developer and architecture guide
|
|
230
232
|
|
|
231
233
|
## Project Conventions
|
|
232
234
|
|
|
@@ -254,7 +256,8 @@ This configuration follows Claude Code's official standards for custom commands
|
|
|
254
256
|
'USER_GUIDE.md',
|
|
255
257
|
'PUBLISHING_GUIDE.md',
|
|
256
258
|
'COOLIFY_DEPLOYMENT.md',
|
|
257
|
-
'WORDPRESS_ADMIN_SCRIPTS.md'
|
|
259
|
+
'WORDPRESS_ADMIN_SCRIPTS.md',
|
|
260
|
+
'TECHNICAL_ARCHITECTURE.md'
|
|
258
261
|
];
|
|
259
262
|
|
|
260
263
|
for (const docFile of docsToMerge) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myaidev-method",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "AI CLI tools package with custom subagents and MCP integrations for Claude Code, Gemini CLI, and more",
|
|
5
5
|
"mcpName": "io.github.myaione/myaidev-method",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -102,7 +102,8 @@
|
|
|
102
102
|
"COOLIFY_DEPLOYMENT.md",
|
|
103
103
|
"PAYLOADCMS_PUBLISHING.md",
|
|
104
104
|
"STATIC_SITE_PUBLISHING.md",
|
|
105
|
-
"PUBLISHING_GUIDE.md"
|
|
105
|
+
"PUBLISHING_GUIDE.md",
|
|
106
|
+
"TECHNICAL_ARCHITECTURE.md"
|
|
106
107
|
],
|
|
107
108
|
"engines": {
|
|
108
109
|
"node": ">=18.0.0"
|