myaidev-method 0.2.7 → 0.2.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.
@@ -25,7 +25,7 @@ The Coolify deployment agent is a specialized subagent optimized for deploying a
25
25
  ```bash
26
26
  npm install myaidev-method
27
27
  # or
28
- npx myaidev-method init --claude
28
+ npx myaidev-method@latest init --claude
29
29
  ```
30
30
 
31
31
  ## Configuration
@@ -1345,7 +1345,7 @@ The MyAIDev Method's SPARC workflow provides a comprehensive, systematic approac
1345
1345
  āœ… Follow industry best practices
1346
1346
 
1347
1347
  **Next Steps**:
1348
- 1. Initialize MyAIDev Method: `npx myaidev-method init --claude`
1348
+ 1. Initialize MyAIDev Method: `npx myaidev-method@latest init --claude`
1349
1349
  2. Run your first SPARC workflow: `npx myaidev-method sparc "Build your feature"`
1350
1350
  3. Review outputs in `.myaidev-method/sparc/`
1351
1351
  4. Iterate and improve based on review findings
@@ -66,7 +66,7 @@ All platforms use a consistent workflow:
66
66
  ```bash
67
67
  npm install -g myaidev-method
68
68
  # or
69
- npx myaidev-method init
69
+ npx myaidev-method@latest init
70
70
  ```
71
71
 
72
72
  ### 2. Configure Platform
package/README.md CHANGED
@@ -88,16 +88,16 @@ The **MyAIDev Method** is a complete development framework for AI CLI tools (Cla
88
88
 
89
89
  ```bash
90
90
  # For Claude Code (most popular)
91
- npx myaidev-method init --claude
91
+ npx myaidev-method@latest init --claude
92
92
 
93
93
  # For Gemini CLI
94
- npx myaidev-method init --gemini
94
+ npx myaidev-method@latest init --gemini
95
95
 
96
96
  # For Codex CLI
97
- npx myaidev-method init --codex
97
+ npx myaidev-method@latest init --codex
98
98
 
99
99
  # Interactive setup (prompts for CLI choice)
100
- npx myaidev-method init
100
+ npx myaidev-method@latest init
101
101
  ```
102
102
 
103
103
  **That's it!** No complex setup.
@@ -115,7 +115,7 @@ npx myaidev-method init
115
115
 
116
116
  1. **Install and configure** (one command):
117
117
  ```bash
118
- npx myaidev-method init --claude
118
+ npx myaidev-method@latest init --claude
119
119
  ```
120
120
 
121
121
  2. **Start using immediately**:
@@ -1173,13 +1173,13 @@ npm install
1173
1173
  npm pack
1174
1174
  cd /path/to/test-project
1175
1175
  npm install /path/to/myaidev-method-0.0.1.tgz
1176
- npx myaidev-method init --claude
1176
+ npx myaidev-method@latest init --claude
1177
1177
 
1178
1178
  # Or link for development
1179
1179
  npm link
1180
1180
  cd /path/to/test-project
1181
1181
  npm link myaidev-method
1182
- npx myaidev-method init --claude
1182
+ npx myaidev-method@latest init --claude
1183
1183
  ```
1184
1184
 
1185
1185
  ## šŸ“„ License
package/USER_GUIDE.md CHANGED
@@ -1282,7 +1282,7 @@ done
1282
1282
 
1283
1283
  ```bash
1284
1284
  # In your CI/CD pipeline
1285
- npx myaidev-method init --claude
1285
+ npx myaidev-method@latest init --claude
1286
1286
  /myai-content-writer "Weekly Newsletter" --template newsletter.md
1287
1287
  /myai-wordpress-publish newsletter.md --schedule "next monday"
1288
1288
  ```
@@ -15,7 +15,7 @@ The MyAIDev Method package includes scriptable WordPress admin utilities that ca
15
15
  ```bash
16
16
  npm install myaidev-method
17
17
  # or
18
- npx myaidev-method init --claude
18
+ npx myaidev-method@latest init --claude
19
19
  ```
20
20
 
21
21
  ## Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myaidev-method",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Comprehensive development framework with SPARC methodology for AI-assisted software development, multi-platform publishing (WordPress, PayloadCMS, Astro, Docusaurus, Mintlify), and Coolify deployment",
5
5
  "mcpName": "io.github.myaione/myaidev-method",
6
6
  "main": "src/index.js",
@@ -24,7 +24,7 @@
24
24
  "mcp:health": "node src/mcp/mcp-launcher.js health",
25
25
  "build:mcp": "mkdir -p dist/mcp && cp .claude/mcp/*.js .claude/mcp/*.json dist/mcp/",
26
26
  "prepublishOnly": "npm install && npm test && npm run build:mcp",
27
- "postinstall": "echo \"MyAIDev Method installed successfully! Run 'npx myaidev-method init --claude' to get started.\"",
27
+ "postinstall": "echo \"MyAIDev Method installed successfully! Run 'npx myaidev-method@latest init --claude' to get started.\"",
28
28
  "dev:architect": "node src/scripts/dev-architect.js",
29
29
  "dev:code": "node src/scripts/dev-code.js",
30
30
  "dev:test": "node src/scripts/dev-test.js",
@@ -53,7 +53,7 @@ async function troubleshootWordPress() {
53
53
  console.log(` - Configuration command: ${await fs.pathExists(wpConfigCommand) ? 'āœ…' : 'āŒ'}`);
54
54
  } else {
55
55
  console.log('āŒ .claude directory not found');
56
- console.log('šŸ’” Solution: Run npx myaidev-method init --claude');
56
+ console.log('šŸ’” Solution: Run npx myaidev-method@latest init --claude');
57
57
  }
58
58
 
59
59
  // 3. Test connection if credentials exist
@@ -126,7 +126,7 @@ async function troubleshootWordPress() {
126
126
 
127
127
  console.log('\nšŸ“‹ Next Steps:');
128
128
  console.log('1. If configuration is missing: /myai-configure wordpress');
129
- console.log('2. If Claude setup is missing: npx myaidev-method init --claude');
129
+ console.log('2. If Claude setup is missing: npx myaidev-method@latest init --claude');
130
130
  console.log('3. If connection fails: Check WordPress Application Password');
131
131
  console.log('4. For detailed help: Read WORDPRESS_INTEGRATION.md');
132
132