@appiq/flutter-workflow 1.4.1 โ 1.4.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,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# feature-manager
|
|
2
2
|
|
|
3
3
|
ACTIVATION-NOTICE: This file contains your complete orchestrator agent operating guidelines. DO NOT load any external agent files as the complete configuration is below.
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@ CRITICAL: Read the full AGENT DEFINITION to understand your orchestration respon
|
|
|
8
8
|
|
|
9
9
|
```yaml
|
|
10
10
|
---
|
|
11
|
-
name:
|
|
11
|
+
name: feature-manager
|
|
12
12
|
description: Use this agent as the primary feature development controller for Flutter projects. Manages complete feature lifecycles, coordinates all specialized agents, tracks development progress, and ensures quality delivery from conception to deployment.
|
|
13
13
|
model: sonnet
|
|
14
14
|
color: gold
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# integration-validator
|
|
2
2
|
|
|
3
3
|
ACTIVATION-NOTICE: This file contains your complete Integration Validator agent operating guidelines. DO NOT load any external agent files as the complete configuration is below.
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@ CRITICAL: Read the full AGENT DEFINITION to understand your feature integration
|
|
|
8
8
|
|
|
9
9
|
```yaml
|
|
10
10
|
---
|
|
11
|
-
name:
|
|
11
|
+
name: integration-validator
|
|
12
12
|
description: Use this agent for Flutter feature integration validation, system setup verification, dependency injection validation, and final integration testing after feature implementation. Ensures all components are properly integrated and ready for deployment.
|
|
13
13
|
model: sonnet
|
|
14
14
|
color: orange
|
package/bin/cli.js
CHANGED
|
@@ -47,7 +47,7 @@ const IDE_CONFIGS = {
|
|
|
47
47
|
|
|
48
48
|
// Available Agents
|
|
49
49
|
const AGENTS = [
|
|
50
|
-
'
|
|
50
|
+
'feature-manager',
|
|
51
51
|
'po-agent',
|
|
52
52
|
'ui-agent',
|
|
53
53
|
'cubit-agent',
|
|
@@ -55,7 +55,7 @@ const AGENTS = [
|
|
|
55
55
|
'data-agent',
|
|
56
56
|
'security-agent',
|
|
57
57
|
'test-agent',
|
|
58
|
-
'
|
|
58
|
+
'integration-validator'
|
|
59
59
|
];
|
|
60
60
|
|
|
61
61
|
program
|
|
@@ -234,7 +234,7 @@ Use the Initial Flow Agent for:
|
|
|
234
234
|
console.log(chalk.gray('3. Begin feature development with: "Start new feature workflow"'));
|
|
235
235
|
|
|
236
236
|
console.log(chalk.bold.cyan('\\n๐ค Available Agents:'));
|
|
237
|
-
console.log(chalk.gray('
|
|
237
|
+
console.log(chalk.gray(' ๐ฏ Feature Manager - Master workflow controller'));
|
|
238
238
|
console.log(chalk.gray(' ๐ PO Agent - Product Owner and task planning'));
|
|
239
239
|
console.log(chalk.gray(' ๐จ UI Agent - Flutter UI/UX specialist'));
|
|
240
240
|
console.log(chalk.gray(' ๐ง Cubit Agent - State management expert'));
|
|
@@ -242,7 +242,7 @@ Use the Initial Flow Agent for:
|
|
|
242
242
|
console.log(chalk.gray(' ๐๏ธ Data Agent - Backend integration specialist'));
|
|
243
243
|
console.log(chalk.gray(' ๐ Security Agent - Security and compliance expert'));
|
|
244
244
|
console.log(chalk.gray(' ๐งช Test Agent - Testing pyramid implementation'));
|
|
245
|
-
console.log(chalk.gray('
|
|
245
|
+
console.log(chalk.gray(' โ
Integration Validator - Provider setup and integration specialist'));
|
|
246
246
|
|
|
247
247
|
} catch (error) {
|
|
248
248
|
console.error(chalk.red('โ Installation failed:'), error.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appiq/flutter-workflow",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "๐ [BETA] Professional Flutter development with AI-powered agents following Clean Architecture principles - Automated agent-based feature development system by AppIQ Solutions",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|