myaidev-method 0.3.1 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myaidev-method",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
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",
@@ -123,7 +123,6 @@
123
123
  "inquirer": "^13.1.0",
124
124
  "jose": "^6.1.3",
125
125
  "marked": "^17.0.1",
126
- "node-fetch": "^3.3.2",
127
126
  "ora": "^9.0.0",
128
127
  "pptxgenjs": "^4.0.1",
129
128
  "puppeteer": "^24.35.0",
@@ -175,5 +174,12 @@
175
174
  ],
176
175
  "engines": {
177
176
  "node": ">=18.0.0"
177
+ },
178
+ "overrides": {
179
+ "glob": "^13.0.0",
180
+ "rimraf": "^6.0.0",
181
+ "gaxios": {
182
+ "node-fetch": "npm:node-fetch-native@^1.6.0"
183
+ }
178
184
  }
179
185
  }
@@ -88,7 +88,7 @@ export function registerAuthCommands(program) {
88
88
  if (success) {
89
89
  const data = await getAuthData();
90
90
  spinner.succeed(chalk.green(`Logged in as ${chalk.bold(data?.user?.name || data?.user?.email)}`));
91
- console.log(chalk.gray('\nYou can now install and publish skills from the marketplace.\n'));
91
+ console.log(chalk.gray('\nWelcome! Enjoy the full MyAIDev ecosystem skills, tools, and cloud services included with your plan.\n'));
92
92
  } else {
93
93
  spinner.fail(chalk.red('Login timed out'));
94
94
  console.log(chalk.gray('Try again with: myaidev-method login\n'));
@@ -4,7 +4,6 @@
4
4
  * Optimized for Claude Code 2.0 agent integration
5
5
  */
6
6
 
7
- import fetch from 'node-fetch';
8
7
  import { readFileSync } from 'fs';
9
8
  import { parse } from 'dotenv';
10
9
 
@@ -4,7 +4,6 @@
4
4
  * Optimized for Claude Code 2.0 agent integration
5
5
  */
6
6
 
7
- import fetch from 'node-fetch';
8
7
  import { readFileSync } from 'fs';
9
8
  import { parse } from 'dotenv';
10
9
  import { marked } from 'marked';
@@ -19,7 +19,6 @@
19
19
  * @module visual-generation-utils
20
20
  */
21
21
 
22
- import fetch from "node-fetch";
23
22
  import fs from "fs-extra";
24
23
  import path from "path";
25
24
  import dotenv from "dotenv";
@@ -4,7 +4,6 @@
4
4
  * Supports scriptable operations with predictable JSON output
5
5
  */
6
6
 
7
- import fetch from 'node-fetch';
8
7
  import { readFileSync } from 'fs';
9
8
  import { parse } from 'dotenv';
10
9
 
@@ -1,4 +1,3 @@
1
- import fetch from 'node-fetch';
2
1
  import { WordPressMCP } from './wordpress-integration.js';
3
2
 
4
3
  export class WordPressAdminMCP extends WordPressMCP {
@@ -1,4 +1,3 @@
1
- import fetch from 'node-fetch';
2
1
  import { GutenbergConverter } from './gutenberg-converter.js';
3
2
 
4
3
  export class WordPressMCP {
@@ -3,7 +3,6 @@
3
3
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
4
4
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
5
5
  import { z } from "zod";
6
- import fetch from "node-fetch";
7
6
  import dotenv from "dotenv";
8
7
  import { GutenbergConverter } from "./gutenberg-converter.js";
9
8
 
@@ -1,4 +1,3 @@
1
- import fetch from 'node-fetch';
2
1
  import { readFileSync } from 'fs';
3
2
  import { parse } from 'dotenv';
4
3