maxsim-flutter 1.28.0 → 1.30.0
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/dist/plan/brief-template-generator.d.ts.map +1 -1
- package/dist/plan/brief-template-generator.js +40 -22
- package/dist/plan/brief-template-generator.js.map +1 -1
- package/dist/plan/index.d.ts +12 -0
- package/dist/plan/index.d.ts.map +1 -0
- package/dist/plan/index.js +7 -0
- package/dist/plan/index.js.map +1 -0
- package/dist/plan/plan-orchestrator.js +1 -1
- package/dist/plan/plan-orchestrator.js.map +1 -1
- package/dist/plan/skill-generator.d.ts +5 -1
- package/dist/plan/skill-generator.d.ts.map +1 -1
- package/dist/plan/skill-generator.js +102 -31
- package/dist/plan/skill-generator.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brief-template-generator.d.ts","sourceRoot":"","sources":["../../src/plan/brief-template-generator.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,kBAAkB,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"brief-template-generator.d.ts","sourceRoot":"","sources":["../../src/plan/brief-template-generator.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,kBAAkB,GAAG,MAAM,CA+DvE"}
|
|
@@ -1,47 +1,65 @@
|
|
|
1
1
|
export function generateBriefTemplate(input) {
|
|
2
2
|
return `# Project Brief — ${input.name}
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
## App Description
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
${input.description}
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## Problem Statement
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
<!-- What specific problem does this app solve? Why does it need to exist? -->
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## Target Users
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
2.
|
|
16
|
-
3.
|
|
14
|
+
<!-- Who are the primary users of this app? -->
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
### Persona: [Primary User Type]
|
|
19
17
|
|
|
20
|
-
|
|
18
|
+
- **Role**: (e.g., freelancer, student, team manager)
|
|
19
|
+
- **Goal**: What they want to accomplish
|
|
20
|
+
- **Pain point**: What frustrates them today
|
|
21
|
+
- **Tech comfort**: Low / Medium / High
|
|
21
22
|
|
|
22
|
-
###
|
|
23
|
+
### Persona: [Secondary User Type] (optional)
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
25
|
+
- **Role**:
|
|
26
|
+
- **Goal**:
|
|
27
|
+
- **Pain point**:
|
|
26
28
|
|
|
27
|
-
##
|
|
29
|
+
## Core User Journeys
|
|
28
30
|
|
|
29
|
-
<!--
|
|
31
|
+
<!-- Describe the 3-5 most important flows a user will complete. -->
|
|
30
32
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
1. **[Journey 1]**: (e.g., Sign up → complete profile → create first item)
|
|
34
|
+
2. **[Journey 2]**:
|
|
35
|
+
3. **[Journey 3]**:
|
|
36
|
+
4.
|
|
37
|
+
5.
|
|
38
|
+
|
|
39
|
+
## Explicit Non-Goals
|
|
40
|
+
|
|
41
|
+
<!-- What are you NOT building in v1? Be specific to avoid scope creep. -->
|
|
42
|
+
|
|
43
|
+
- Not building:
|
|
44
|
+
- Not supporting:
|
|
45
|
+
- Deferred to v2:
|
|
33
46
|
|
|
34
47
|
## Success Metrics
|
|
35
48
|
|
|
36
|
-
<!-- How will you
|
|
49
|
+
<!-- How will you know the app is successful? -->
|
|
37
50
|
|
|
38
|
-
-
|
|
51
|
+
- Activation: (e.g., X% of users complete onboarding)
|
|
52
|
+
- Engagement: (e.g., DAU/MAU ratio)
|
|
53
|
+
- Retention: (e.g., 30-day retention rate)
|
|
39
54
|
|
|
40
|
-
##
|
|
55
|
+
## Technical Constraints
|
|
41
56
|
|
|
42
|
-
<!--
|
|
57
|
+
<!-- Platform targets, integrations, performance requirements. -->
|
|
43
58
|
|
|
44
|
-
-
|
|
59
|
+
- Platforms: iOS, Android
|
|
60
|
+
- Authentication:
|
|
61
|
+
- Backend / API:
|
|
62
|
+
- Offline support: Yes / No
|
|
45
63
|
`;
|
|
46
64
|
}
|
|
47
65
|
//# sourceMappingURL=brief-template-generator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brief-template-generator.js","sourceRoot":"","sources":["../../src/plan/brief-template-generator.ts"],"names":[],"mappings":"AAKA,MAAM,UAAU,qBAAqB,CAAC,KAAyB;IAC7D,OAAO,qBAAqB,KAAK,CAAC,IAAI
|
|
1
|
+
{"version":3,"file":"brief-template-generator.js","sourceRoot":"","sources":["../../src/plan/brief-template-generator.ts"],"names":[],"mappings":"AAKA,MAAM,UAAU,qBAAqB,CAAC,KAAyB;IAC7D,OAAO,qBAAqB,KAAK,CAAC,IAAI;;;;EAItC,KAAK,CAAC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyDlB,CAAC;AACF,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { isValidSnakeCase } from './types.js';
|
|
2
|
+
export type { PlanInput, PlanResult } from './types.js';
|
|
3
|
+
export { writePartialConfig } from './config-writer.js';
|
|
4
|
+
export type { PartialConfigInput } from './config-writer.js';
|
|
5
|
+
export { generateBriefTemplate } from './brief-template-generator.js';
|
|
6
|
+
export type { BriefTemplateInput } from './brief-template-generator.js';
|
|
7
|
+
export { generatePlanAppSkill } from './skill-generator.js';
|
|
8
|
+
export type { SkillInput } from './skill-generator.js';
|
|
9
|
+
export { runPlan } from './plan-orchestrator.js';
|
|
10
|
+
export { classifyAppType } from './app-type-classifier.js';
|
|
11
|
+
export type { AppType, AppTypeResult, ModuleSuggestion } from './app-type-classifier.js';
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/plan/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,YAAY,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,YAAY,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACxE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,YAAY,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,YAAY,EAAE,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { isValidSnakeCase } from './types.js';
|
|
2
|
+
export { writePartialConfig } from './config-writer.js';
|
|
3
|
+
export { generateBriefTemplate } from './brief-template-generator.js';
|
|
4
|
+
export { generatePlanAppSkill } from './skill-generator.js';
|
|
5
|
+
export { runPlan } from './plan-orchestrator.js';
|
|
6
|
+
export { classifyAppType } from './app-type-classifier.js';
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/plan/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAE9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAExD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAEtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAE5D,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -15,7 +15,7 @@ export async function runPlan(input) {
|
|
|
15
15
|
const skillsDir = join(outputDir, '.claude', 'skills');
|
|
16
16
|
await mkdir(skillsDir, { recursive: true });
|
|
17
17
|
const skillPath = join(skillsDir, 'plan-app.md');
|
|
18
|
-
await writeFile(skillPath, generatePlanAppSkill(), 'utf-8');
|
|
18
|
+
await writeFile(skillPath, generatePlanAppSkill({ name, description }), 'utf-8');
|
|
19
19
|
filesCreated.push(skillPath);
|
|
20
20
|
// Write docs/project-brief-template.md
|
|
21
21
|
const docsDir = join(outputDir, 'docs');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plan-orchestrator.js","sourceRoot":"","sources":["../../src/plan/plan-orchestrator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAEpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAE5D,MAAM,CAAC,KAAK,UAAU,OAAO,CAAC,KAAgB;IAC5C,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,KAAK,CAAC;IAC/C,MAAM,YAAY,GAAa,EAAE,CAAC;IAElC,2BAA2B;IAC3B,MAAM,KAAK,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAE5C,mCAAmC;IACnC,MAAM,UAAU,GAAG,MAAM,kBAAkB,CAAC,SAAS,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC,CAAC;IAC9E,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAE9B,mCAAmC;IACnC,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;IACvD,MAAM,KAAK,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC5C,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;IACjD,MAAM,SAAS,CAAC,SAAS,EAAE,oBAAoB,EAAE,EAAE,OAAO,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"plan-orchestrator.js","sourceRoot":"","sources":["../../src/plan/plan-orchestrator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAEpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAE5D,MAAM,CAAC,KAAK,UAAU,OAAO,CAAC,KAAgB;IAC5C,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,KAAK,CAAC;IAC/C,MAAM,YAAY,GAAa,EAAE,CAAC;IAElC,2BAA2B;IAC3B,MAAM,KAAK,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAE5C,mCAAmC;IACnC,MAAM,UAAU,GAAG,MAAM,kBAAkB,CAAC,SAAS,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC,CAAC;IAC9E,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAE9B,mCAAmC;IACnC,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;IACvD,MAAM,KAAK,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC5C,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;IACjD,MAAM,SAAS,CAAC,SAAS,EAAE,oBAAoB,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC;IACjF,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAE7B,uCAAuC;IACvC,MAAM,OAAO,GAAG,IAAI,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;IACxC,MAAM,KAAK,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC1C,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,EAAE,2BAA2B,CAAC,CAAC;IAC7D,MAAM,SAAS,CAAC,SAAS,EAAE,qBAAqB,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC;IAClF,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAE7B,OAAO;QACL,UAAU,EAAE,SAAS;QACrB,YAAY;KACb,CAAC;AACJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-generator.d.ts","sourceRoot":"","sources":["../../src/plan/skill-generator.ts"],"names":[],"mappings":"AAAA,wBAAgB,oBAAoB,
|
|
1
|
+
{"version":3,"file":"skill-generator.d.ts","sourceRoot":"","sources":["../../src/plan/skill-generator.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,oBAAoB,CAAC,KAAK,CAAC,EAAE,UAAU,GAAG,MAAM,CA2H/D"}
|
|
@@ -1,50 +1,121 @@
|
|
|
1
|
-
export function generatePlanAppSkill() {
|
|
1
|
+
export function generatePlanAppSkill(input) {
|
|
2
|
+
const name = input?.name ?? 'your_app';
|
|
3
|
+
const description = input?.description ?? 'A Flutter app';
|
|
2
4
|
return `---
|
|
3
|
-
description: AI-guided planning for
|
|
5
|
+
description: AI-guided planning for ${name}. Leads through vision, features, technical decisions, and PRD generation. Ask questions one at a time.
|
|
4
6
|
model: claude-opus-4-6
|
|
5
7
|
---
|
|
6
8
|
|
|
7
|
-
# /plan-app
|
|
9
|
+
# /plan-app — ${name}
|
|
8
10
|
|
|
9
|
-
You are helping
|
|
11
|
+
You are a product planning expert helping design a Flutter app using maxsim-flutter.
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
**Project**: ${name}
|
|
14
|
+
**Description**: ${description}
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
> **Important**: Ask questions one at a time. Wait for the user's answer before asking the next question.
|
|
14
17
|
|
|
15
|
-
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Step 1: Understand Vision
|
|
21
|
+
|
|
22
|
+
Start by understanding the core problem this app solves.
|
|
23
|
+
|
|
24
|
+
**Question 1.1** — What specific problem does **${name}** solve, and for whom?
|
|
25
|
+
*(Understanding the problem before building ensures you build the right thing.)*
|
|
26
|
+
|
|
27
|
+
**Question 1.2** — Walk me through the most important user journey: what does the user do from the moment they open the app to achieving their goal?
|
|
28
|
+
*(This reveals the critical path and core feature set.)*
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Step 2: Define Core Features
|
|
33
|
+
|
|
34
|
+
Narrow down what the app will actually build.
|
|
35
|
+
|
|
36
|
+
**Question 2.1** — What are the top 3 features that **must** exist in v1? (Ignore "nice to haves" for now.)
|
|
37
|
+
*(Focused scope prevents the most common cause of project failure.)*
|
|
38
|
+
|
|
39
|
+
**Question 2.2** — What are the explicit **non-goals** — features you are intentionally NOT building in v1?
|
|
40
|
+
*(Saying "no" early saves months of scope creep.)*
|
|
41
|
+
|
|
42
|
+
**Question 2.3** — Is this a solo project or will you work with a team?
|
|
43
|
+
*(This affects architecture complexity, auth requirements, and CI/CD needs.)*
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Step 3: Technical Decisions
|
|
16
48
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
49
|
+
Use this decision tree to guide module selection. Ask each sub-question only if relevant.
|
|
50
|
+
|
|
51
|
+
### Auth Decision
|
|
52
|
+
**Question 3.1** — Does the app require user accounts?
|
|
53
|
+
- **Yes** → Which provider? Firebase Auth / Supabase / Custom backend
|
|
54
|
+
- **No** → Skip auth module
|
|
55
|
+
|
|
56
|
+
### Backend & Database Decision
|
|
57
|
+
**Question 3.2** — Does the app need to store or sync data across devices?
|
|
58
|
+
- **Cloud sync** → Which backend? Firebase Firestore / Supabase / REST API
|
|
59
|
+
- **Local only** → Use the \`database\` module (SQLite/Hive)
|
|
60
|
+
- **No persistence** → Skip database module
|
|
61
|
+
|
|
62
|
+
### Platform Decision
|
|
63
|
+
**Question 3.3** — Which platforms must ship in v1?
|
|
64
|
+
- iOS and Android (default)
|
|
65
|
+
- Web app as well?
|
|
66
|
+
- Desktop (macOS / Windows / Linux)?
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Step 4: Module Suggestions
|
|
71
|
+
|
|
72
|
+
Based on the app description and answers collected, suggest modules using this decision matrix.
|
|
73
|
+
|
|
74
|
+
**Classify the app type** from the description, then apply the relevant row:
|
|
75
|
+
|
|
76
|
+
| App Type | REQUIRED | RECOMMENDED | NICE-TO-HAVE |
|
|
77
|
+
|---|---|---|---|
|
|
78
|
+
| **team-collaboration** | auth, push, database | analytics, deep-linking | i18n, theme |
|
|
79
|
+
| **e-commerce** | auth, database, api | push, analytics, deep-linking | theme, i18n |
|
|
80
|
+
| **content-social** | auth, analytics, database | push, deep-linking | i18n, theme |
|
|
81
|
+
| **utility-tool** | theme | i18n, analytics | — |
|
|
82
|
+
| **fitness-health** | auth, database, push | analytics, theme | — |
|
|
83
|
+
| **education** | auth, database, api | push, i18n | analytics |
|
|
84
|
+
| **general** | auth, api | theme | — |
|
|
85
|
+
|
|
86
|
+
**For each suggested module, explain the rationale** (why it is needed for this specific app):
|
|
87
|
+
|
|
88
|
+
Example format:
|
|
89
|
+
- \`auth\` ✅ REQUIRED — *Because ${name} needs user accounts to save personal data*
|
|
90
|
+
- \`push\` ⭐ RECOMMENDED — *Because users benefit from timely notifications*
|
|
91
|
+
- \`i18n\` 💡 NICE-TO-HAVE — *If you plan to target non-English markets in the future*
|
|
92
|
+
|
|
93
|
+
Present the suggestions clearly, then ask:
|
|
94
|
+
|
|
95
|
+
**Question 4.1** — Do these module suggestions match your vision, or would you add/remove anything?
|
|
96
|
+
|
|
97
|
+
---
|
|
21
98
|
|
|
22
|
-
|
|
99
|
+
## Step 5: Confirm Selections & Approve
|
|
23
100
|
|
|
24
|
-
|
|
25
|
-
- \`auth\` — User authentication
|
|
26
|
-
- \`api\` — Backend API integration
|
|
27
|
-
- \`database\` — Local data persistence
|
|
28
|
-
- \`theme\` — Custom branding & dark mode
|
|
29
|
-
- \`push\` — Push notifications
|
|
30
|
-
- \`analytics\` — Usage analytics
|
|
31
|
-
- \`i18n\` — Internationalization
|
|
32
|
-
- \`deep-linking\` — Deep links & universal links
|
|
101
|
+
Summarize all decisions collected in Steps 1-4:
|
|
33
102
|
|
|
34
|
-
|
|
103
|
+
**Summary of choices:**
|
|
104
|
+
- App type: [detected type]
|
|
105
|
+
- Platforms: [selected]
|
|
106
|
+
- Auth: [yes/no, provider if yes]
|
|
107
|
+
- Database: [local/cloud/none]
|
|
108
|
+
- Modules: [final list with priorities]
|
|
35
109
|
|
|
36
|
-
1
|
|
37
|
-
2. Identify key screens and navigation flows
|
|
38
|
-
3. Define the Clean Architecture layers needed
|
|
110
|
+
**Question 5.1** — Does this summary accurately reflect your app? Should we proceed with generating the config and PRD, or would you like to adjust anything?
|
|
39
111
|
|
|
40
|
-
|
|
112
|
+
Once the user confirms and approves, generate:
|
|
41
113
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
3. \`docs/architecture.md\` with system design
|
|
114
|
+
1. **Complete \`maxsim.config.yaml\`** with all selected modules configured
|
|
115
|
+
2. **\`prd.json\`** with user stories organized by phase
|
|
116
|
+
3. **\`docs/architecture.md\`** with system design overview
|
|
46
117
|
|
|
47
|
-
|
|
118
|
+
Then tell the user:
|
|
48
119
|
\`\`\`
|
|
49
120
|
maxsim-flutter create --config maxsim.config.yaml
|
|
50
121
|
\`\`\`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-generator.js","sourceRoot":"","sources":["../../src/plan/skill-generator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"skill-generator.js","sourceRoot":"","sources":["../../src/plan/skill-generator.ts"],"names":[],"mappings":"AAKA,MAAM,UAAU,oBAAoB,CAAC,KAAkB;IACrD,MAAM,IAAI,GAAG,KAAK,EAAE,IAAI,IAAI,UAAU,CAAC;IACvC,MAAM,WAAW,GAAG,KAAK,EAAE,WAAW,IAAI,eAAe,CAAC;IAE1D,OAAO;sCAC6B,IAAI;;;;gBAI1B,IAAI;;;;eAIL,IAAI;mBACA,WAAW;;;;;;;;;;kDAUoB,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAiEnB,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCtC,CAAC;AACF,CAAC"}
|