myaidev-method 0.3.7 → 0.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.
Files changed (2) hide show
  1. package/bin/cli.js +4 -4
  2. package/package.json +2 -1
package/bin/cli.js CHANGED
@@ -128,7 +128,7 @@ async function loadWorkflowSystem() {
128
128
  }
129
129
 
130
130
  program
131
- .version("0.3.7")
131
+ .version("0.3.8")
132
132
  .enablePositionalOptions()
133
133
  .description(
134
134
  "MyAIDev Method - Comprehensive development framework with SPARC methodology",
@@ -143,7 +143,7 @@ async function selectCLIType(options) {
143
143
  // Interactive selection if no flag provided
144
144
  const answer = await inquirer.prompt([
145
145
  {
146
- type: "list",
146
+ type: "select",
147
147
  name: "cliType",
148
148
  message: "Which AI CLI are you configuring for?",
149
149
  choices: [
@@ -554,7 +554,7 @@ program
554
554
  } else {
555
555
  const answer = await inquirer.prompt([
556
556
  {
557
- type: "list",
557
+ type: "select",
558
558
  name: "cliType",
559
559
  message: "Which AI CLI are you using?",
560
560
  choices: [
@@ -606,7 +606,7 @@ program
606
606
  const packMap = { "1": "content", "2": "design", "3": "dev", "4": "full" };
607
607
  const answer = await inquirer.prompt([
608
608
  {
609
- type: "list",
609
+ type: "select",
610
610
  name: "pack",
611
611
  message: "Select a pack to install:",
612
612
  choices: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myaidev-method",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Comprehensive development framework with SPARC methodology for AI-assisted software development, security testing (PTES, OWASP, penetration testing, compliance auditing), AI visual content generation (Gemini, OpenAI GPT Image 1.5, Imagen, FLUX 2, Veo 3), OpenStack VM management, 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",
@@ -14,6 +14,7 @@
14
14
  "test": "node test/run-tests.js",
15
15
  "test:gutenberg": "node test/test-gutenberg-converter.js",
16
16
  "test:install": "node test/test-installation.js",
17
+ "test:cli": "node test/test-cli-e2e.js",
17
18
  "test:workflows": "node test/test-workflow-installer.js",
18
19
  "test:mcp": "node test/test-enhanced-mcp-server.js",
19
20
  "test:mcp:simple": "node test/test-simple-mcp.js",