ai-flow-dev 2.5.1 → 2.5.3
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/README.md +9 -9
- package/package.json +1 -1
- package/prompts/backend/flow-commit.md +69 -3
- package/prompts/backend/flow-work-feature.md +13 -0
- package/prompts/backend/flow-work-fix.md +10 -0
- package/prompts/backend/flow-work-refactor.md +10 -0
- package/prompts/backend/flow-work.md +625 -115
- package/prompts/frontend/flow-commit.md +69 -3
- package/prompts/frontend/flow-work-feature.md +13 -0
- package/prompts/frontend/flow-work-fix.md +2 -0
- package/prompts/frontend/flow-work-refactor.md +10 -0
- package/prompts/frontend/flow-work.md +631 -117
- package/prompts/mobile/flow-commit.md +69 -3
- package/prompts/mobile/flow-work-feature.md +13 -0
- package/prompts/mobile/flow-work-fix.md +10 -0
- package/prompts/mobile/flow-work-refactor.md +10 -0
- package/prompts/mobile/flow-work.md +627 -117
- package/templates/AGENT.template.md +41 -23
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
> Universal AI Assistant Configuration
|
|
4
4
|
>
|
|
5
5
|
> This file provides context for ALL AI development tools (Claude, Copilot, Cursor, Gemini, etc.)
|
|
6
|
+
|
|
6
7
|
---
|
|
8
|
+
|
|
7
9
|
## 📋 About This Project
|
|
8
10
|
|
|
9
11
|
**Project Name:** {{PROJECT_NAME}}
|
|
@@ -31,7 +33,9 @@
|
|
|
31
33
|
|
|
32
34
|
> This project uses AI-assisted development with comprehensive documentation.
|
|
33
35
|
> All files below provide context to AI assistants for consistent, high-quality code generation.
|
|
36
|
+
|
|
34
37
|
---
|
|
38
|
+
|
|
35
39
|
## 🏗️ Documentation Architecture
|
|
36
40
|
|
|
37
41
|
This project follows **AI-assisted development** with comprehensive documentation.
|
|
@@ -109,7 +113,9 @@ All documentation is structured to guide AI assistants in understanding the proj
|
|
|
109
113
|
- Required environment variables
|
|
110
114
|
- Default/local values
|
|
111
115
|
- Secrets handling guidance
|
|
116
|
+
|
|
112
117
|
---
|
|
118
|
+
|
|
113
119
|
## ⚡ Quick Reference
|
|
114
120
|
|
|
115
121
|
### Tech Stack
|
|
@@ -136,7 +142,9 @@ All documentation is structured to guide AI assistants in understanding the proj
|
|
|
136
142
|
|
|
137
143
|
**✅ ALWAYS:**
|
|
138
144
|
{{ALWAYS_RULES}}
|
|
145
|
+
|
|
139
146
|
---
|
|
147
|
+
|
|
140
148
|
## 🤖 AI Assistant Workflow
|
|
141
149
|
|
|
142
150
|
When working on this project:
|
|
@@ -151,22 +159,24 @@ When working on this project:
|
|
|
151
159
|
- Check relevant documentation for the area you're working on
|
|
152
160
|
- Understand the business context from `project-brief.md`
|
|
153
161
|
|
|
154
|
-
|
|
162
|
+
3. **When implementing features:**
|
|
155
163
|
- Follow architecture patterns from `docs/architecture.md`
|
|
156
164
|
- Respect data models from `docs/data-model.md`
|
|
157
165
|
- Apply code standards from `docs/code-standards.md`
|
|
158
166
|
- Add tests according to `docs/testing.md`
|
|
159
167
|
|
|
160
|
-
|
|
168
|
+
4. **When handling security:**
|
|
161
169
|
- Consult `specs/security.md` for auth/authz
|
|
162
170
|
- Never hardcode secrets (use `specs/configuration.md`)
|
|
163
171
|
- Follow security headers and encryption requirements
|
|
164
172
|
|
|
165
|
-
|
|
173
|
+
5. **When deploying:**
|
|
166
174
|
- Follow procedures in `docs/operations.md`
|
|
167
175
|
- Update configuration per environment
|
|
168
176
|
- Check health endpoints
|
|
177
|
+
|
|
169
178
|
---
|
|
179
|
+
|
|
170
180
|
## 🛠️ Tool-Specific Configurations
|
|
171
181
|
|
|
172
182
|
Different AI tools have specific configuration files that extend this AGENT.md:
|
|
@@ -189,16 +199,16 @@ Different AI tools have specific configuration files that extend this AGENT.md:
|
|
|
189
199
|
- **Purpose:** Copilot workspace instructions
|
|
190
200
|
- **References:** This AGENT.md + project docs
|
|
191
201
|
|
|
192
|
-
**All tool-specific configs reference this AGENT.md as the source of truth.**
|
|
193
|
-
|
|
202
|
+
## **All tool-specific configs reference this AGENT.md as the source of truth.**
|
|
203
|
+
|
|
194
204
|
## 📊 Project Status
|
|
195
205
|
|
|
196
206
|
**Current Phase:** {{PROJECT_PHASE}}
|
|
197
207
|
|
|
198
208
|
**Architecture:** {{ARCHITECTURE_PATTERN}}
|
|
199
209
|
|
|
200
|
-
**Compliance:** {{COMPLIANCE_REQUIREMENTS}}
|
|
201
|
-
|
|
210
|
+
## **Compliance:** {{COMPLIANCE_REQUIREMENTS}}
|
|
211
|
+
|
|
202
212
|
## 🚀 Getting Started
|
|
203
213
|
|
|
204
214
|
### For AI Assistants
|
|
@@ -211,16 +221,16 @@ Different AI tools have specific configuration files that extend this AGENT.md:
|
|
|
211
221
|
|
|
212
222
|
### For Developers
|
|
213
223
|
|
|
214
|
-
See `README.md` for installation and setup instructions.
|
|
215
|
-
|
|
224
|
+
## See `README.md` for installation and setup instructions.
|
|
225
|
+
|
|
216
226
|
## 📝 Document Update Policy
|
|
217
227
|
|
|
218
228
|
- Documents are **living artifacts** - update as project evolves
|
|
219
229
|
- Breaking changes to architecture → Update `docs/architecture.md`
|
|
220
|
-
**Architecture:** {{ARCHITECTURE_PATTERN}}
|
|
221
|
-
**Primary Language:** {{LANGUAGE}} {{LANGUAGE_VERSION}}
|
|
222
|
-
**Framework:** {{FRAMEWORK}}
|
|
223
|
-
**Database:** {{DATABASE}} with {{ORM}}
|
|
230
|
+
**Architecture:** {{ARCHITECTURE_PATTERN}}
|
|
231
|
+
**Primary Language:** {{LANGUAGE}} {{LANGUAGE_VERSION}}
|
|
232
|
+
**Framework:** {{FRAMEWORK}}
|
|
233
|
+
**Database:** {{DATABASE}} with {{ORM}}
|
|
224
234
|
|
|
225
235
|
**Key Characteristics:**
|
|
226
236
|
|
|
@@ -231,7 +241,9 @@ See `README.md` for installation and setup instructions.
|
|
|
231
241
|
|
|
232
242
|
> This project uses AI-assisted development with comprehensive documentation.
|
|
233
243
|
> All files below provide context to AI assistants for consistent, high-quality code generation.
|
|
244
|
+
|
|
234
245
|
---
|
|
246
|
+
|
|
235
247
|
## 🏗️ Documentation Architecture
|
|
236
248
|
|
|
237
249
|
This project follows **AI-assisted development** with comprehensive documentation.
|
|
@@ -309,7 +321,9 @@ All documentation is structured to guide AI assistants in understanding the proj
|
|
|
309
321
|
- Required environment variables
|
|
310
322
|
- Default/local values
|
|
311
323
|
- Secrets handling guidance
|
|
324
|
+
|
|
312
325
|
---
|
|
326
|
+
|
|
313
327
|
## ⚡ Quick Reference
|
|
314
328
|
|
|
315
329
|
### Tech Stack
|
|
@@ -336,7 +350,9 @@ All documentation is structured to guide AI assistants in understanding the proj
|
|
|
336
350
|
|
|
337
351
|
**✅ ALWAYS:**
|
|
338
352
|
{{ALWAYS_RULES}}
|
|
353
|
+
|
|
339
354
|
---
|
|
355
|
+
|
|
340
356
|
## 🤖 AI Assistant Workflow
|
|
341
357
|
|
|
342
358
|
When working on this project:
|
|
@@ -351,22 +367,24 @@ When working on this project:
|
|
|
351
367
|
- Check relevant documentation for the area you're working on
|
|
352
368
|
- Understand the business context from `project-brief.md`
|
|
353
369
|
|
|
354
|
-
|
|
370
|
+
3. **When implementing features:**
|
|
355
371
|
- Follow architecture patterns from `docs/architecture.md`
|
|
356
372
|
- Respect data models from `docs/data-model.md`
|
|
357
373
|
- Apply code standards from `docs/code-standards.md`
|
|
358
374
|
- Add tests according to `docs/testing.md`
|
|
359
375
|
|
|
360
|
-
|
|
376
|
+
4. **When handling security:**
|
|
361
377
|
- Consult `specs/security.md` for auth/authz
|
|
362
378
|
- Never hardcode secrets (use `specs/configuration.md`)
|
|
363
379
|
- Follow security headers and encryption requirements
|
|
364
380
|
|
|
365
|
-
|
|
381
|
+
5. **When deploying:**
|
|
366
382
|
- Follow procedures in `docs/operations.md`
|
|
367
383
|
- Update configuration per environment
|
|
368
384
|
- Check health endpoints
|
|
385
|
+
|
|
369
386
|
---
|
|
387
|
+
|
|
370
388
|
## 🛠️ Tool-Specific Configurations
|
|
371
389
|
|
|
372
390
|
Different AI tools have specific configuration files that extend this AGENT.md:
|
|
@@ -389,16 +407,16 @@ Different AI tools have specific configuration files that extend this AGENT.md:
|
|
|
389
407
|
- **Purpose:** Copilot workspace instructions
|
|
390
408
|
- **References:** This AGENT.md + project docs
|
|
391
409
|
|
|
392
|
-
**All tool-specific configs reference this AGENT.md as the source of truth.**
|
|
393
|
-
|
|
410
|
+
## **All tool-specific configs reference this AGENT.md as the source of truth.**
|
|
411
|
+
|
|
394
412
|
## 📊 Project Status
|
|
395
413
|
|
|
396
414
|
**Current Phase:** {{PROJECT_PHASE}}
|
|
397
415
|
|
|
398
416
|
**Architecture:** {{ARCHITECTURE_PATTERN}}
|
|
399
417
|
|
|
400
|
-
**Compliance:** {{COMPLIANCE_REQUIREMENTS}}
|
|
401
|
-
|
|
418
|
+
## **Compliance:** {{COMPLIANCE_REQUIREMENTS}}
|
|
419
|
+
|
|
402
420
|
## 🚀 Getting Started
|
|
403
421
|
|
|
404
422
|
### For AI Assistants
|
|
@@ -411,8 +429,8 @@ Different AI tools have specific configuration files that extend this AGENT.md:
|
|
|
411
429
|
|
|
412
430
|
### For Developers
|
|
413
431
|
|
|
414
|
-
See `README.md` for installation and setup instructions.
|
|
415
|
-
|
|
432
|
+
## See `README.md` for installation and setup instructions.
|
|
433
|
+
|
|
416
434
|
## 📝 Document Update Policy
|
|
417
435
|
|
|
418
436
|
- Documents are **living artifacts** - update as project evolves
|
|
@@ -422,4 +440,4 @@ See `README.md` for installation and setup instructions.
|
|
|
422
440
|
|
|
423
441
|
**Last Updated:** {{GENERATION_DATE}}
|
|
424
442
|
|
|
425
|
-
**Generated by:** AI Flow v2.5.
|
|
443
|
+
**Generated by:** AI Flow v2.5.3
|