appiq-solution 1.4.4 → 1.4.6
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/#Tools/APPIQ-METHOD/activate-appiq.js +1 -1
- package/#Tools/APPIQ-METHOD/package.json +1 -1
- package/#Tools/APPIQ-METHOD/tools/appiq-installer.js +31 -34
- package/#Tools/APPIQ-METHOD/tools/epic-solution-installer.js +47 -49
- package/package.json +1 -1
- package/tools/appiq-installer.js +31 -34
- package/tools/epic-solution-installer.js +47 -49
@@ -28,7 +28,7 @@ console.log('✅ APPIQ installation detected');
|
|
28
28
|
console.log('📁 Location:', bmadPath);
|
29
29
|
|
30
30
|
// Load smart launcher agent
|
31
|
-
const smartLauncherPath = path.join(bmadPath,
|
31
|
+
const smartLauncherPath = path.join(bmadPath, "agents", "init-flow-po.md");
|
32
32
|
if (fs.existsSync(smartLauncherPath)) {
|
33
33
|
console.log('🤖 Smart Launcher Agent available');
|
34
34
|
} else {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "appiq-solution",
|
3
|
-
"version": "1.4.
|
3
|
+
"version": "1.4.6",
|
4
4
|
"description": "🚀 Super einfache KI-Agent Installation mit One-Click Workflows für Web, Mobile (Flutter) & Backend - Built with ❤️ based on Bmad-Method",
|
5
5
|
"main": "tools/appiq-installer.js",
|
6
6
|
"bin": {
|
@@ -2112,14 +2112,7 @@ devLoadAlwaysFiles:
|
|
2112
2112
|
}
|
2113
2113
|
|
2114
2114
|
// Core optimized agents
|
2115
|
-
const agents = [
|
2116
|
-
"smart-launcher",
|
2117
|
-
"project-manager",
|
2118
|
-
"architect",
|
2119
|
-
"story-master",
|
2120
|
-
"developer",
|
2121
|
-
"qa-expert",
|
2122
|
-
];
|
2115
|
+
const agents = ["init-flow-po", "architect", "pm", "sm", "dev", "qa"];
|
2123
2116
|
|
2124
2117
|
for (const agent of agents) {
|
2125
2118
|
await this.createOptimizedAgent(agent);
|
@@ -2134,42 +2127,47 @@ devLoadAlwaysFiles:
|
|
2134
2127
|
|
2135
2128
|
generateOptimizedAgentContent(agentName) {
|
2136
2129
|
const agentConfigs = {
|
2137
|
-
"
|
2138
|
-
name: "
|
2139
|
-
role: "
|
2140
|
-
commands: [
|
2130
|
+
"init-flow-po": {
|
2131
|
+
name: "Product Owner & Workflow Initiator",
|
2132
|
+
role: "Intelligent Project Starter & Business Requirements",
|
2133
|
+
commands: [
|
2134
|
+
"/init-flow",
|
2135
|
+
"/analyze-project",
|
2136
|
+
"/create-epic",
|
2137
|
+
"/start-story",
|
2138
|
+
],
|
2141
2139
|
description:
|
2142
|
-
"
|
2143
|
-
},
|
2144
|
-
"project-manager": {
|
2145
|
-
name: "Project Manager",
|
2146
|
-
role: "PRD & Projekt-Planung",
|
2147
|
-
commands: ["/prd", "/plan", "/epic"],
|
2148
|
-
description: "Erstellt PRD und Projekt-Dokumentation",
|
2140
|
+
"Initiates optimal workflow based on project type and handles business requirements",
|
2149
2141
|
},
|
2150
2142
|
architect: {
|
2151
2143
|
name: "System Architect",
|
2152
|
-
role: "
|
2144
|
+
role: "Technical Architecture",
|
2153
2145
|
commands: ["/architecture", "/tech-stack", "/design"],
|
2154
|
-
description: "
|
2146
|
+
description: "Develops system architecture and tech stack",
|
2147
|
+
},
|
2148
|
+
pm: {
|
2149
|
+
name: "Product Manager",
|
2150
|
+
role: "PRD & Project Planning",
|
2151
|
+
commands: ["/prd", "/plan", "/epic"],
|
2152
|
+
description: "Creates PRD and project documentation",
|
2155
2153
|
},
|
2156
|
-
|
2157
|
-
name: "
|
2154
|
+
sm: {
|
2155
|
+
name: "Scrum Master",
|
2158
2156
|
role: "User Stories & Sprint Planning",
|
2159
2157
|
commands: ["/story", "/sprint", "/tasks"],
|
2160
|
-
description: "
|
2158
|
+
description: "Creates user stories and sprint planning",
|
2161
2159
|
},
|
2162
|
-
|
2160
|
+
dev: {
|
2163
2161
|
name: "Senior Developer",
|
2164
2162
|
role: "Code Implementation",
|
2165
2163
|
commands: ["/code", "/implement", "/fix"],
|
2166
|
-
description: "
|
2164
|
+
description: "Implements features and fixes bugs",
|
2167
2165
|
},
|
2168
|
-
|
2166
|
+
qa: {
|
2169
2167
|
name: "QA Expert",
|
2170
|
-
role: "Testing &
|
2168
|
+
role: "Testing & Quality",
|
2171
2169
|
commands: ["/test", "/review", "/validate"],
|
2172
|
-
description: "
|
2170
|
+
description: "Performs tests and validates code quality",
|
2173
2171
|
},
|
2174
2172
|
};
|
2175
2173
|
|
@@ -2675,12 +2673,11 @@ workflows:
|
|
2675
2673
|
this.config.projectType === "greenfield" ? "/start" : "/analyze"
|
2676
2674
|
}"
|
2677
2675
|
agents_sequence:
|
2678
|
-
-
|
2679
|
-
- project-manager
|
2676
|
+
- init-flow-po
|
2680
2677
|
- architect
|
2681
|
-
-
|
2682
|
-
-
|
2683
|
-
- qa
|
2678
|
+
- pm
|
2679
|
+
- dev
|
2680
|
+
- qa
|
2684
2681
|
|
2685
2682
|
# IDE Integration (Mehrere IDEs)
|
2686
2683
|
ides:
|
@@ -153,14 +153,7 @@ class AppiqInstaller {
|
|
153
153
|
}
|
154
154
|
|
155
155
|
// Core optimized agents
|
156
|
-
const agents = [
|
157
|
-
'smart-launcher',
|
158
|
-
'project-manager',
|
159
|
-
'architect',
|
160
|
-
'story-master',
|
161
|
-
'developer',
|
162
|
-
'qa-expert'
|
163
|
-
];
|
156
|
+
const agents = ["init-flow-po", "architect", "pm", "sm", "dev", "qa"];
|
164
157
|
|
165
158
|
for (const agent of agents) {
|
166
159
|
await this.createOptimizedAgent(agent);
|
@@ -175,42 +168,48 @@ class AppiqInstaller {
|
|
175
168
|
|
176
169
|
generateOptimizedAgentContent(agentName) {
|
177
170
|
const agentConfigs = {
|
178
|
-
|
179
|
-
name:
|
180
|
-
role:
|
181
|
-
commands: [
|
182
|
-
|
171
|
+
"init-flow-po": {
|
172
|
+
name: "Product Owner & Workflow Initiator",
|
173
|
+
role: "Intelligent Project Starter & Business Requirements",
|
174
|
+
commands: [
|
175
|
+
"/init-flow",
|
176
|
+
"/analyze-project",
|
177
|
+
"/create-epic",
|
178
|
+
"/start-story",
|
179
|
+
],
|
180
|
+
description:
|
181
|
+
"Initiates optimal workflow based on project type and handles business requirements",
|
183
182
|
},
|
184
|
-
|
185
|
-
name:
|
186
|
-
role:
|
187
|
-
commands: [
|
188
|
-
description:
|
183
|
+
architect: {
|
184
|
+
name: "System Architect",
|
185
|
+
role: "Technical Architecture",
|
186
|
+
commands: ["/architecture", "/tech-stack", "/design"],
|
187
|
+
description: "Develops system architecture and tech stack",
|
189
188
|
},
|
190
|
-
|
191
|
-
name:
|
192
|
-
role:
|
193
|
-
commands: [
|
194
|
-
description:
|
189
|
+
pm: {
|
190
|
+
name: "Product Manager",
|
191
|
+
role: "PRD & Project Planning",
|
192
|
+
commands: ["/prd", "/plan", "/epic"],
|
193
|
+
description: "Creates PRD and project documentation",
|
195
194
|
},
|
196
|
-
|
197
|
-
name:
|
198
|
-
role:
|
199
|
-
commands: [
|
200
|
-
description:
|
195
|
+
sm: {
|
196
|
+
name: "Scrum Master",
|
197
|
+
role: "User Stories & Sprint Planning",
|
198
|
+
commands: ["/story", "/sprint", "/tasks"],
|
199
|
+
description: "Creates user stories and sprint planning",
|
201
200
|
},
|
202
|
-
|
203
|
-
name:
|
204
|
-
role:
|
205
|
-
commands: [
|
206
|
-
description:
|
201
|
+
dev: {
|
202
|
+
name: "Senior Developer",
|
203
|
+
role: "Code Implementation",
|
204
|
+
commands: ["/code", "/implement", "/fix"],
|
205
|
+
description: "Implements features and fixes bugs",
|
206
|
+
},
|
207
|
+
qa: {
|
208
|
+
name: "QA Expert",
|
209
|
+
role: "Testing & Quality",
|
210
|
+
commands: ["/test", "/review", "/validate"],
|
211
|
+
description: "Performs tests and validates code quality",
|
207
212
|
},
|
208
|
-
'qa-expert': {
|
209
|
-
name: 'QA Expert',
|
210
|
-
role: 'Testing & Qualität',
|
211
|
-
commands: ['/test', '/review', '/validate'],
|
212
|
-
description: 'Führt Tests durch und validiert Code-Qualität'
|
213
|
-
}
|
214
213
|
};
|
215
214
|
|
216
215
|
const config = agentConfigs[agentName];
|
@@ -450,12 +449,12 @@ ${this.config.projectType === 'greenfield' ? `
|
|
450
449
|
console.log(chalk.gray(` → Agents sind bereits installiert!\n`));
|
451
450
|
}
|
452
451
|
|
453
|
-
console.log(chalk.yellow('2.
|
454
|
-
console.log(chalk.white(` → Kopieren Sie: ${chalk.bold('appiq/agents/
|
452
|
+
console.log(chalk.yellow('2. Product Owner & Workflow Initiator laden:'));
|
453
|
+
console.log(chalk.white(` → Kopieren Sie: ${chalk.bold('appiq/agents/init-flow-po.md')}`));
|
455
454
|
console.log(chalk.gray(` → In Ihre IDE einfügen\n`));
|
456
455
|
|
457
456
|
console.log(chalk.yellow('3. Sagen Sie Ihrer IDE:'));
|
458
|
-
console.log(chalk.white(` → ${chalk.bold('"Agiere als
|
457
|
+
console.log(chalk.white(` → ${chalk.bold('"Agiere als Product Owner & Workflow Initiator"')}\n`));
|
459
458
|
|
460
459
|
console.log(chalk.yellow('4. One-Command Start:'));
|
461
460
|
console.log(chalk.white(chalk.bold(` → ${this.config.projectType === 'greenfield' ? '/start' : '/analyze'}`)));
|
@@ -510,15 +509,14 @@ paths:
|
|
510
509
|
|
511
510
|
# One-Click Workflows
|
512
511
|
workflows:
|
513
|
-
${this.config.projectType ===
|
514
|
-
start_command: "${this.config.projectType ===
|
512
|
+
${this.config.projectType === "greenfield" ? "greenfield" : "brownfield"}:
|
513
|
+
start_command: "${this.config.projectType === "greenfield" ? "/start" : "/analyze"}"
|
515
514
|
agents_sequence:
|
516
|
-
-
|
517
|
-
- project-manager
|
515
|
+
- init-flow-po
|
518
516
|
- architect
|
519
|
-
-
|
520
|
-
-
|
521
|
-
- qa
|
517
|
+
- pm
|
518
|
+
- dev
|
519
|
+
- qa
|
522
520
|
|
523
521
|
# IDE Integration
|
524
522
|
ide:
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "appiq-solution",
|
3
|
-
"version": "1.4.
|
3
|
+
"version": "1.4.6",
|
4
4
|
"description": "🚀 Super einfache KI-Agent Installation mit One-Click Workflows für Web, Mobile (Flutter) & Backend - Built with ❤️ based on Bmad-Method",
|
5
5
|
"main": "tools/appiq-installer.js",
|
6
6
|
"bin": {
|
package/tools/appiq-installer.js
CHANGED
@@ -2112,14 +2112,7 @@ devLoadAlwaysFiles:
|
|
2112
2112
|
}
|
2113
2113
|
|
2114
2114
|
// Core optimized agents
|
2115
|
-
const agents = [
|
2116
|
-
"smart-launcher",
|
2117
|
-
"project-manager",
|
2118
|
-
"architect",
|
2119
|
-
"story-master",
|
2120
|
-
"developer",
|
2121
|
-
"qa-expert",
|
2122
|
-
];
|
2115
|
+
const agents = ["init-flow-po", "architect", "pm", "sm", "dev", "qa"];
|
2123
2116
|
|
2124
2117
|
for (const agent of agents) {
|
2125
2118
|
await this.createOptimizedAgent(agent);
|
@@ -2134,42 +2127,47 @@ devLoadAlwaysFiles:
|
|
2134
2127
|
|
2135
2128
|
generateOptimizedAgentContent(agentName) {
|
2136
2129
|
const agentConfigs = {
|
2137
|
-
"
|
2138
|
-
name: "
|
2139
|
-
role: "
|
2140
|
-
commands: [
|
2130
|
+
"init-flow-po": {
|
2131
|
+
name: "Product Owner & Workflow Initiator",
|
2132
|
+
role: "Intelligent Project Starter & Business Requirements",
|
2133
|
+
commands: [
|
2134
|
+
"/init-flow",
|
2135
|
+
"/analyze-project",
|
2136
|
+
"/create-epic",
|
2137
|
+
"/start-story",
|
2138
|
+
],
|
2141
2139
|
description:
|
2142
|
-
"
|
2143
|
-
},
|
2144
|
-
"project-manager": {
|
2145
|
-
name: "Project Manager",
|
2146
|
-
role: "PRD & Projekt-Planung",
|
2147
|
-
commands: ["/prd", "/plan", "/epic"],
|
2148
|
-
description: "Erstellt PRD und Projekt-Dokumentation",
|
2140
|
+
"Initiates optimal workflow based on project type and handles business requirements",
|
2149
2141
|
},
|
2150
2142
|
architect: {
|
2151
2143
|
name: "System Architect",
|
2152
|
-
role: "
|
2144
|
+
role: "Technical Architecture",
|
2153
2145
|
commands: ["/architecture", "/tech-stack", "/design"],
|
2154
|
-
description: "
|
2146
|
+
description: "Develops system architecture and tech stack",
|
2147
|
+
},
|
2148
|
+
pm: {
|
2149
|
+
name: "Product Manager",
|
2150
|
+
role: "PRD & Project Planning",
|
2151
|
+
commands: ["/prd", "/plan", "/epic"],
|
2152
|
+
description: "Creates PRD and project documentation",
|
2155
2153
|
},
|
2156
|
-
|
2157
|
-
name: "
|
2154
|
+
sm: {
|
2155
|
+
name: "Scrum Master",
|
2158
2156
|
role: "User Stories & Sprint Planning",
|
2159
2157
|
commands: ["/story", "/sprint", "/tasks"],
|
2160
|
-
description: "
|
2158
|
+
description: "Creates user stories and sprint planning",
|
2161
2159
|
},
|
2162
|
-
|
2160
|
+
dev: {
|
2163
2161
|
name: "Senior Developer",
|
2164
2162
|
role: "Code Implementation",
|
2165
2163
|
commands: ["/code", "/implement", "/fix"],
|
2166
|
-
description: "
|
2164
|
+
description: "Implements features and fixes bugs",
|
2167
2165
|
},
|
2168
|
-
|
2166
|
+
qa: {
|
2169
2167
|
name: "QA Expert",
|
2170
|
-
role: "Testing &
|
2168
|
+
role: "Testing & Quality",
|
2171
2169
|
commands: ["/test", "/review", "/validate"],
|
2172
|
-
description: "
|
2170
|
+
description: "Performs tests and validates code quality",
|
2173
2171
|
},
|
2174
2172
|
};
|
2175
2173
|
|
@@ -2675,12 +2673,11 @@ workflows:
|
|
2675
2673
|
this.config.projectType === "greenfield" ? "/start" : "/analyze"
|
2676
2674
|
}"
|
2677
2675
|
agents_sequence:
|
2678
|
-
-
|
2679
|
-
- project-manager
|
2676
|
+
- init-flow-po
|
2680
2677
|
- architect
|
2681
|
-
-
|
2682
|
-
-
|
2683
|
-
- qa
|
2678
|
+
- pm
|
2679
|
+
- dev
|
2680
|
+
- qa
|
2684
2681
|
|
2685
2682
|
# IDE Integration (Mehrere IDEs)
|
2686
2683
|
ides:
|
@@ -153,14 +153,7 @@ class AppiqInstaller {
|
|
153
153
|
}
|
154
154
|
|
155
155
|
// Core optimized agents
|
156
|
-
const agents = [
|
157
|
-
'smart-launcher',
|
158
|
-
'project-manager',
|
159
|
-
'architect',
|
160
|
-
'story-master',
|
161
|
-
'developer',
|
162
|
-
'qa-expert'
|
163
|
-
];
|
156
|
+
const agents = ["init-flow-po", "architect", "pm", "sm", "dev", "qa"];
|
164
157
|
|
165
158
|
for (const agent of agents) {
|
166
159
|
await this.createOptimizedAgent(agent);
|
@@ -175,42 +168,48 @@ class AppiqInstaller {
|
|
175
168
|
|
176
169
|
generateOptimizedAgentContent(agentName) {
|
177
170
|
const agentConfigs = {
|
178
|
-
|
179
|
-
name:
|
180
|
-
role:
|
181
|
-
commands: [
|
182
|
-
|
171
|
+
"init-flow-po": {
|
172
|
+
name: "Product Owner & Workflow Initiator",
|
173
|
+
role: "Intelligent Project Starter & Business Requirements",
|
174
|
+
commands: [
|
175
|
+
"/init-flow",
|
176
|
+
"/analyze-project",
|
177
|
+
"/create-epic",
|
178
|
+
"/start-story",
|
179
|
+
],
|
180
|
+
description:
|
181
|
+
"Initiates optimal workflow based on project type and handles business requirements",
|
183
182
|
},
|
184
|
-
|
185
|
-
name:
|
186
|
-
role:
|
187
|
-
commands: [
|
188
|
-
description:
|
183
|
+
architect: {
|
184
|
+
name: "System Architect",
|
185
|
+
role: "Technical Architecture",
|
186
|
+
commands: ["/architecture", "/tech-stack", "/design"],
|
187
|
+
description: "Develops system architecture and tech stack",
|
189
188
|
},
|
190
|
-
|
191
|
-
name:
|
192
|
-
role:
|
193
|
-
commands: [
|
194
|
-
description:
|
189
|
+
pm: {
|
190
|
+
name: "Product Manager",
|
191
|
+
role: "PRD & Project Planning",
|
192
|
+
commands: ["/prd", "/plan", "/epic"],
|
193
|
+
description: "Creates PRD and project documentation",
|
195
194
|
},
|
196
|
-
|
197
|
-
name:
|
198
|
-
role:
|
199
|
-
commands: [
|
200
|
-
description:
|
195
|
+
sm: {
|
196
|
+
name: "Scrum Master",
|
197
|
+
role: "User Stories & Sprint Planning",
|
198
|
+
commands: ["/story", "/sprint", "/tasks"],
|
199
|
+
description: "Creates user stories and sprint planning",
|
201
200
|
},
|
202
|
-
|
203
|
-
name:
|
204
|
-
role:
|
205
|
-
commands: [
|
206
|
-
description:
|
201
|
+
dev: {
|
202
|
+
name: "Senior Developer",
|
203
|
+
role: "Code Implementation",
|
204
|
+
commands: ["/code", "/implement", "/fix"],
|
205
|
+
description: "Implements features and fixes bugs",
|
206
|
+
},
|
207
|
+
qa: {
|
208
|
+
name: "QA Expert",
|
209
|
+
role: "Testing & Quality",
|
210
|
+
commands: ["/test", "/review", "/validate"],
|
211
|
+
description: "Performs tests and validates code quality",
|
207
212
|
},
|
208
|
-
'qa-expert': {
|
209
|
-
name: 'QA Expert',
|
210
|
-
role: 'Testing & Qualität',
|
211
|
-
commands: ['/test', '/review', '/validate'],
|
212
|
-
description: 'Führt Tests durch und validiert Code-Qualität'
|
213
|
-
}
|
214
213
|
};
|
215
214
|
|
216
215
|
const config = agentConfigs[agentName];
|
@@ -450,12 +449,12 @@ ${this.config.projectType === 'greenfield' ? `
|
|
450
449
|
console.log(chalk.gray(` → Agents sind bereits installiert!\n`));
|
451
450
|
}
|
452
451
|
|
453
|
-
console.log(chalk.yellow('2.
|
454
|
-
console.log(chalk.white(` → Kopieren Sie: ${chalk.bold('appiq/agents/
|
452
|
+
console.log(chalk.yellow('2. Product Owner & Workflow Initiator laden:'));
|
453
|
+
console.log(chalk.white(` → Kopieren Sie: ${chalk.bold('appiq/agents/init-flow-po.md')}`));
|
455
454
|
console.log(chalk.gray(` → In Ihre IDE einfügen\n`));
|
456
455
|
|
457
456
|
console.log(chalk.yellow('3. Sagen Sie Ihrer IDE:'));
|
458
|
-
console.log(chalk.white(` → ${chalk.bold('"Agiere als
|
457
|
+
console.log(chalk.white(` → ${chalk.bold('"Agiere als Product Owner & Workflow Initiator"')}\n`));
|
459
458
|
|
460
459
|
console.log(chalk.yellow('4. One-Command Start:'));
|
461
460
|
console.log(chalk.white(chalk.bold(` → ${this.config.projectType === 'greenfield' ? '/start' : '/analyze'}`)));
|
@@ -510,15 +509,14 @@ paths:
|
|
510
509
|
|
511
510
|
# One-Click Workflows
|
512
511
|
workflows:
|
513
|
-
${this.config.projectType ===
|
514
|
-
start_command: "${this.config.projectType ===
|
512
|
+
${this.config.projectType === "greenfield" ? "greenfield" : "brownfield"}:
|
513
|
+
start_command: "${this.config.projectType === "greenfield" ? "/start" : "/analyze"}"
|
515
514
|
agents_sequence:
|
516
|
-
-
|
517
|
-
- project-manager
|
515
|
+
- init-flow-po
|
518
516
|
- architect
|
519
|
-
-
|
520
|
-
-
|
521
|
-
- qa
|
517
|
+
- pm
|
518
|
+
- dev
|
519
|
+
- qa
|
522
520
|
|
523
521
|
# IDE Integration
|
524
522
|
ide:
|