appiq-solution 1.3.0 β†’ 1.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appiq-solution",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "πŸš€ APPIQ SOLUTION: Flutter Mobile Development Extension - Eine spezialisierte Erweiterung der BMAD Method fΓΌr Flutter Mobile App Entwicklung",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -33,7 +33,20 @@ try {
33
33
 
34
34
  program
35
35
  .version(version)
36
- .description('BMad Method installer - Universal AI agent framework for any domain');
36
+ .description('BMad Method installer - Universal AI agent framework for any domain')
37
+ .action(async () => {
38
+ // Default action when no command is provided - start interactive installation
39
+ try {
40
+ const answers = await promptInstallation();
41
+ if (!answers._alreadyInstalled) {
42
+ await installer.install(answers);
43
+ process.exit(0);
44
+ }
45
+ } catch (error) {
46
+ console.error(chalk.red('Installation failed:'), error.message);
47
+ process.exit(1);
48
+ }
49
+ });
37
50
 
38
51
  program
39
52
  .command('install')
package/README.md ADDED
@@ -0,0 +1,139 @@
1
+ # BMad-Method: Universal AI Agent Framework
2
+
3
+ [![Version](https://img.shields.io/npm/v/bmad-method?color=blue&label=version)](https://www.npmjs.com/package/bmad-method)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen)](https://nodejs.org)
6
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Community-7289da?logo=discord&logoColor=white)](https://discord.gg/gk8jAdXWmj)
7
+
8
+ Foundations in Agentic Agile Driven Development, known as the Breakthrough Method of Agile AI-Driven Development, yet so much more. Transform any domain with specialized AI expertise: software development, entertainment, creative writing, business strategy to personal wellness just to name a few.
9
+
10
+ **[Subscribe to BMadCode on YouTube](https://www.youtube.com/@BMadCode?sub_confirmation=1)**
11
+
12
+ **[Join our Discord Community](https://discord.gg/gk8jAdXWmj)** - A growing community for AI enthusiasts! Get help, share ideas, explore AI agents & frameworks, collaborate on tech projects, enjoy hobbies, and help each other succeed. Whether you're stuck on BMad, building your own agents, or just want to chat about the latest in AI - we're here for you! **Some mobile and VPN may have issue joining the discord, this is a discord issue - if the invite does not work, try from your own internet or another network, or non-VPN.**
13
+
14
+ ⭐ **If you find this project helpful or useful, please give it a star in the upper right hand corner!** It helps others discover BMad-Method and you will be notified of updates!
15
+
16
+ ## Overview
17
+
18
+ **BMad Method's Two Key Innovations:**
19
+
20
+ **1. Agentic Planning:** Dedicated agents (Analyst, PM, Architect) collaborate with you to create detailed, consistent PRDs and Architecture documents. Through advanced prompt engineering and human-in-the-loop refinement, these planning agents produce comprehensive specifications that go far beyond generic AI task generation.
21
+
22
+ **2. Context-Engineered Development:** The Scrum Master agent then transforms these detailed plans into hyper-detailed development stories that contain everything the Dev agent needs - full context, implementation details, and architectural guidance embedded directly in story files.
23
+
24
+ This two-phase approach eliminates both **planning inconsistency** and **context loss** - the biggest problems in AI-assisted development. Your Dev agent opens a story file with complete understanding of what to build, how to build it, and why.
25
+
26
+ **πŸ“– [See the complete workflow in the User Guide](bmad-core/user-guide.md)** - Planning phase, development cycle, and all agent roles
27
+
28
+ ## Quick Navigation
29
+
30
+ ### Understanding the BMad Workflow
31
+
32
+ **Before diving in, review these critical workflow diagrams that explain how BMad works:**
33
+
34
+ 1. **[Planning Workflow (Web UI)](bmad-core/user-guide.md#the-planning-workflow-web-ui)** - How to create PRD and Architecture documents
35
+ 2. **[Core Development Cycle (IDE)](bmad-core/user-guide.md#the-core-development-cycle-ide)** - How SM, Dev, and QA agents collaborate through story files
36
+
37
+ > ⚠️ **These diagrams explain 90% of BMad Method Agentic Agile flow confusion** - Understanding the PRD+Architecture creation and the SM/Dev/QA workflow and how agents pass notes through story files is essential - and also explains why this is NOT taskmaster or just a simple task runner!
38
+
39
+ ### What would you like to do?
40
+
41
+ - **[Install and Build software with Full Stack Agile AI Team](#quick-start)** β†’ Quick Start Instruction
42
+ - **[Learn how to use BMad](bmad-core/user-guide.md)** β†’ Complete user guide and walkthrough
43
+ - **[See available AI agents](#available-agents)** β†’ Specialized roles for your team
44
+ - **[Explore non-technical uses](#-beyond-software-development---expansion-packs)** β†’ Creative writing, business, wellness, education
45
+ - **[Create my own AI agents](#creating-your-own-expansion-pack)** β†’ Build agents for your domain
46
+ - **[Browse ready-made expansion packs](expansion-packs/)** β†’ Game dev, DevOps, infrastructure and get inspired with ideas and examples
47
+ - **[Understand the architecture](docs/core-architecture.md)** β†’ Technical deep dive
48
+ - **[Join the community](https://discord.gg/gk8jAdXWmj)** β†’ Get help and share ideas
49
+
50
+ ## Important: Keep Your BMad Installation Updated
51
+
52
+ **Stay up-to-date effortlessly!** If you already have BMad-Method installed in your project, simply run:
53
+
54
+ ```bash
55
+ npx bmad-method install
56
+ # OR
57
+ git pull
58
+ npm run install:bmad
59
+ ```
60
+
61
+ This will:
62
+
63
+ - βœ… Automatically detect your existing v4 installation
64
+ - βœ… Update only the files that have changed and add new files
65
+ - βœ… Create `.bak` backup files for any custom modifications you've made
66
+ - βœ… Preserve your project-specific configurations
67
+
68
+ This makes it easy to benefit from the latest improvements, bug fixes, and new agents without losing your customizations!
69
+
70
+ ## Quick Start
71
+
72
+ ### One Command for Everything (IDE Installation)
73
+
74
+ **Just run one of these commands:**
75
+
76
+ ```bash
77
+ npx bmad-method install
78
+ # OR if you already have BMad installed:
79
+ git pull
80
+ npm run install:bmad
81
+ ```
82
+
83
+ This single command handles:
84
+
85
+ - **New installations** - Sets up BMad in your project
86
+ - **Upgrades** - Updates existing installations automatically
87
+ - **Expansion packs** - Installs any expansion packs you've added to package.json
88
+
89
+ > **That's it!** Whether you're installing for the first time, upgrading, or adding expansion packs - these commands do everything.
90
+
91
+ **Prerequisites**: [Node.js](https://nodejs.org) v20+ required
92
+
93
+ ### Fastest Start: Web UI Full Stack Team at your disposal (2 minutes)
94
+
95
+ 1. **Get the bundle**: Save or clone the [full stack team file](dist/teams/team-fullstack.txt) or choose another team
96
+ 2. **Create AI agent**: Create a new Gemini Gem or CustomGPT
97
+ 3. **Upload & configure**: Upload the file and set instructions: "Your critical operating instructions are attached, do not break character as directed"
98
+ 4. **Start Ideating and Planning**: Start chatting! Type `*help` to see available commands or pick an agent like `*analyst` to start right in on creating a brief.
99
+ 5. **CRITICAL**: Talk to BMad Orchestrator in the web at ANY TIME (#bmad-orchestrator command) and ask it questions about how this all works!
100
+ 6. **When to move to the IDE**: Once you have your PRD, Architecture, optional UX and Briefs - its time to switch over to the IDE to shard your docs, and start implementing the actual code! See the [User guide](bmad-core/user-guide.md) for more details
101
+
102
+ ### Alternative: Clone and Build
103
+
104
+ ```bash
105
+ git clone https://github.com/bmadcode/bmad-method.git
106
+ npm run install:bmad # build and install all to a destination folder
107
+ ```
108
+
109
+ ## 🌟 Beyond Software Development - Expansion Packs
110
+
111
+ BMad's natural language framework works in ANY domain. Expansion packs provide specialized AI agents for creative writing, business strategy, health & wellness, education, and more. Also expansion packs can expand the core BMad-Method with specific functionality that is not generic for all cases. [See the Expansion Packs Guide](docs/expansion-packs.md) and learn to create your own!
112
+
113
+ ## Documentation & Resources
114
+
115
+ ### Essential Guides
116
+
117
+ - πŸ“– **[User Guide](bmad-core/user-guide.md)** - Complete walkthrough from project inception to completion
118
+ - πŸ—οΈ **[Core Architecture](docs/core-architecture.md)** - Technical deep dive and system design
119
+ - πŸš€ **[Expansion Packs Guide](docs/expansion-packs.md)** - Extend BMad to any domain beyond software development
120
+
121
+ ## Support
122
+
123
+ - πŸ’¬ [Discord Community](https://discord.gg/gk8jAdXWmj)
124
+ - πŸ› [Issue Tracker](https://github.com/bmadcode/bmad-method/issues)
125
+ - πŸ’¬ [Discussions](https://github.com/bmadcode/bmad-method/discussions)
126
+
127
+ ## Contributing
128
+
129
+ **We're excited about contributions and welcome your ideas, improvements, and expansion packs!** πŸŽ‰
130
+
131
+ πŸ“‹ **[Read CONTRIBUTING.md](CONTRIBUTING.md)** - Complete guide to contributing, including guidelines, process, and requirements
132
+
133
+ ## License
134
+
135
+ MIT License - see [LICENSE](LICENSE) for details.
136
+
137
+ [![Contributors](https://contrib.rocks/image?repo=bmadcode/bmad-method)](https://github.com/bmadcode/bmad-method/graphs/contributors)
138
+
139
+ <sub>Built with ❀️ for the AI-assisted development community</sub>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appiq-solution",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "πŸš€ APPIQ SOLUTION: Flutter Mobile Development Extension - Eine spezialisierte Erweiterung der BMAD Method fΓΌr Flutter Mobile App Entwicklung",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "keywords": [
48
48
  "ai-agents",
49
- "development-workflow",
49
+ "development-workflow",
50
50
  "project-management",
51
51
  "flutter",
52
52
  "mobile-development",
@@ -70,7 +70,7 @@
70
70
  "author": "Brian (BMad) Madison",
71
71
  "license": "MIT",
72
72
  "repository": {
73
- "type": "git",
73
+ "type": "git",
74
74
  "url": "git+https://github.com/Viktor-Hermann/APPIQ-METHOD.git"
75
75
  },
76
76
  "engines": {
@@ -90,4 +90,4 @@
90
90
  "prettier --write"
91
91
  ]
92
92
  }
93
- }
93
+ }
@@ -33,7 +33,20 @@ try {
33
33
 
34
34
  program
35
35
  .version(version)
36
- .description('BMad Method installer - Universal AI agent framework for any domain');
36
+ .description('BMad Method installer - Universal AI agent framework for any domain')
37
+ .action(async () => {
38
+ // Default action when no command is provided - start interactive installation
39
+ try {
40
+ const answers = await promptInstallation();
41
+ if (!answers._alreadyInstalled) {
42
+ await installer.install(answers);
43
+ process.exit(0);
44
+ }
45
+ } catch (error) {
46
+ console.error(chalk.red('Installation failed:'), error.message);
47
+ process.exit(1);
48
+ }
49
+ });
37
50
 
38
51
  program
39
52
  .command('install')