myaidev-method 0.3.0 → 0.3.1
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/CHANGELOG.md +6 -0
- package/bin/cli.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to the MyAIDev Method package will be documented in this fil
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.1] - 2026-02-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fix `init` command crash caused by unescaped backtick in CLAUDE.md template
|
|
12
|
+
- Update installation tests from legacy commands/agents to skills-based architecture
|
|
13
|
+
|
|
8
14
|
## [0.3.0] - 2026-02-03
|
|
9
15
|
|
|
10
16
|
### Added
|
package/bin/cli.js
CHANGED
|
@@ -433,7 +433,10 @@ program
|
|
|
433
433
|
console.log(chalk.gray(' Config: configure (interactive setup wizard)'));
|
|
434
434
|
|
|
435
435
|
console.log(chalk.cyan('\n⚙️ Get started:'));
|
|
436
|
-
console.log(chalk.
|
|
436
|
+
console.log(chalk.white(' 1. npx myaidev-method login') + chalk.gray(' — authenticate with the marketplace'));
|
|
437
|
+
console.log(chalk.white(' 2. npx myaidev-method addon list') + chalk.gray(' — browse available skills'));
|
|
438
|
+
console.log(chalk.white(' 3. npx myaidev-method addon install <name>') + chalk.gray(' — install a skill'));
|
|
439
|
+
console.log(chalk.gray('\n • Use the configure skill to set up platform credentials'));
|
|
437
440
|
console.log(chalk.gray(' • Skills are invoked naturally in conversation'));
|
|
438
441
|
console.log(chalk.gray(' • Visit: https://github.com/myaione/myaidev-method'));
|
|
439
442
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myaidev-method",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
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",
|