@mind-fold/open-flow 0.2.9 → 0.2.11

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.
Files changed (58) hide show
  1. package/dist/templates/commands/onboard-developer.txt +487 -2
  2. package/package.json +1 -1
  3. package/dist/templates/markdown/agent-progress-index.d.ts +0 -2
  4. package/dist/templates/markdown/agent-progress-index.d.ts.map +0 -1
  5. package/dist/templates/markdown/agent-progress-index.js +0 -5
  6. package/dist/templates/markdown/agent-progress-index.js.map +0 -1
  7. package/dist/templates/markdown/backend-doc.d.ts +0 -2
  8. package/dist/templates/markdown/backend-doc.d.ts.map +0 -1
  9. package/dist/templates/markdown/backend-doc.js +0 -5
  10. package/dist/templates/markdown/backend-doc.js.map +0 -1
  11. package/dist/templates/markdown/backend-index.d.ts +0 -2
  12. package/dist/templates/markdown/backend-index.d.ts.map +0 -1
  13. package/dist/templates/markdown/backend-index.js +0 -5
  14. package/dist/templates/markdown/backend-index.js.map +0 -1
  15. package/dist/templates/markdown/flow.d.ts +0 -2
  16. package/dist/templates/markdown/flow.d.ts.map +0 -1
  17. package/dist/templates/markdown/flow.js +0 -5
  18. package/dist/templates/markdown/flow.js.map +0 -1
  19. package/dist/templates/markdown/frontend-doc.d.ts +0 -2
  20. package/dist/templates/markdown/frontend-doc.d.ts.map +0 -1
  21. package/dist/templates/markdown/frontend-doc.js +0 -5
  22. package/dist/templates/markdown/frontend-doc.js.map +0 -1
  23. package/dist/templates/markdown/frontend-index.d.ts +0 -2
  24. package/dist/templates/markdown/frontend-index.d.ts.map +0 -1
  25. package/dist/templates/markdown/frontend-index.js +0 -5
  26. package/dist/templates/markdown/frontend-index.js.map +0 -1
  27. package/dist/templates/markdown/gitignore.d.ts +0 -2
  28. package/dist/templates/markdown/gitignore.d.ts.map +0 -1
  29. package/dist/templates/markdown/gitignore.js +0 -5
  30. package/dist/templates/markdown/gitignore.js.map +0 -1
  31. package/dist/templates/scripts/add-session.d.ts +0 -2
  32. package/dist/templates/scripts/add-session.d.ts.map +0 -1
  33. package/dist/templates/scripts/add-session.js +0 -5
  34. package/dist/templates/scripts/add-session.js.map +0 -1
  35. package/dist/templates/scripts/extract-md-headings.d.ts +0 -2
  36. package/dist/templates/scripts/extract-md-headings.d.ts.map +0 -1
  37. package/dist/templates/scripts/extract-md-headings.js +0 -5
  38. package/dist/templates/scripts/extract-md-headings.js.map +0 -1
  39. package/dist/templates/scripts/feature.d.ts +0 -2
  40. package/dist/templates/scripts/feature.d.ts.map +0 -1
  41. package/dist/templates/scripts/feature.js +0 -5
  42. package/dist/templates/scripts/feature.js.map +0 -1
  43. package/dist/templates/scripts/get-context.d.ts +0 -2
  44. package/dist/templates/scripts/get-context.d.ts.map +0 -1
  45. package/dist/templates/scripts/get-context.js +0 -5
  46. package/dist/templates/scripts/get-context.js.map +0 -1
  47. package/dist/templates/scripts/get-developer.d.ts +0 -2
  48. package/dist/templates/scripts/get-developer.d.ts.map +0 -1
  49. package/dist/templates/scripts/get-developer.js +0 -5
  50. package/dist/templates/scripts/get-developer.js.map +0 -1
  51. package/dist/templates/scripts/init-developer.d.ts +0 -2
  52. package/dist/templates/scripts/init-developer.d.ts.map +0 -1
  53. package/dist/templates/scripts/init-developer.js +0 -5
  54. package/dist/templates/scripts/init-developer.js.map +0 -1
  55. package/dist/templates/scripts/update-index.d.ts +0 -2
  56. package/dist/templates/scripts/update-index.d.ts.map +0 -1
  57. package/dist/templates/scripts/update-index.js +0 -5
  58. package/dist/templates/scripts/update-index.js.map +0 -1
@@ -4,7 +4,6 @@ Execute these steps in order:
4
4
 
5
5
  1. **Explain the workflow system** - Describe how open-flow works:
6
6
  - `workflow/` directory structure
7
- - Short commands available (/init-agent, /check-frontend, /check-backend, /record-agent-flow)
8
7
  - Guidelines in `workflow/structure/`
9
8
  - Progress tracking in `workflow/agent-progress/`
10
9
 
@@ -27,8 +26,494 @@ Execute these steps in order:
27
26
  | `add-session.sh` | One-click session recording |
28
27
  | `update-index.sh` | Auto-update index.md |
29
28
 
30
- Key points to emphasize:
29
+ ---
30
+
31
+ ## Slash Commands Detailed Guide
32
+
33
+ ### Core Workflow Commands
34
+
35
+ #### `/init-agent` - Initialize AI Session
36
+
37
+ **What it does**:
38
+ Reads project context and prepares AI for development work. This is the FIRST command to run at the start of every session.
39
+
40
+ **What AI will do**:
41
+ 1. Run `./workflow/scripts/get-context.sh` to get:
42
+ - Developer identity (who am I?)
43
+ - Git status (which branch? uncommitted changes?)
44
+ - Recent commits (what happened recently?)
45
+ - Active features (what's in progress?)
46
+ - Progress file status (where to record work?)
47
+ 2. Check if developer identity exists, guide initialization if not
48
+ 3. Read relevant structure guidelines based on upcoming task
49
+ 4. Report ready status with a summary table
50
+
51
+ **Benefits**:
52
+ - AI understands the current state before making changes
53
+ - Avoids conflicts with ongoing work from other developers
54
+ - Knows which guidelines to follow for this project
55
+ - Can continue previous work seamlessly
56
+
57
+ **If skipped**:
58
+ - AI may work on wrong branch or conflict with others' work
59
+ - AI doesn't know project conventions, writes inconsistent code
60
+ - AI can't find previous context, asks redundant questions
61
+ - Progress tracking breaks, work history is lost
62
+
63
+ ---
64
+
65
+ #### `/record-agent-flow` - Record Work Progress
66
+
67
+ **What it does**:
68
+ Records completed work to progress files AFTER human has tested and committed code.
69
+
70
+ **What AI will do**:
71
+ 1. Get current context with `get-context.sh`
72
+ 2. Run `add-session.sh` with session details:
73
+ - Title: Brief description of work done
74
+ - Commit: Git commit hash(es)
75
+ - Summary/Content: Detailed changes, lessons learned
76
+ 3. Auto-update index.md with new session count and history
77
+
78
+ **Benefits**:
79
+ - Creates searchable history for future sessions
80
+ - Next AI session can understand what was done before
81
+ - Tracks lessons learned and patterns discovered
82
+ - Enables multi-developer collaboration without conflicts
83
+
84
+ **If skipped**:
85
+ - Next session starts from zero, no context
86
+ - Same bugs may be re-investigated
87
+ - Lessons learned are forgotten
88
+ - Team loses visibility into AI-assisted work
89
+
90
+ ---
91
+
92
+ #### `/onboard-developer` - Guide New Developer
93
+
94
+ **What it does**:
95
+ Walks a new developer (human or AI) through the complete setup process.
96
+
97
+ **What AI will do**:
98
+ 1. Explain workflow system structure
99
+ 2. Run `init-developer.sh` to create identity
100
+ 3. Demonstrate key scripts and commands
101
+ 4. Guide through first task with examples
102
+
103
+ ---
104
+
105
+ ### Before Coding Commands
106
+
107
+ #### `/before-frontend-dev` - Read Frontend Guidelines
108
+
109
+ **What it does**:
110
+ Reads frontend development guidelines BEFORE writing any frontend code.
111
+
112
+ **What AI will do**:
113
+ 1. Read `workflow/structure/frontend/index.md` to find relevant sections
114
+ 2. Extract specific guideline sections based on task type:
115
+ - Component guidelines for UI work
116
+ - Hook guidelines for data fetching
117
+ - State management for complex state
118
+ 3. Understand coding standards and patterns to follow
119
+ 4. Identify reference examples to learn from
120
+
121
+ **Benefits**:
122
+ - Code follows project conventions from the start
123
+ - Avoids common mistakes documented in guidelines
124
+ - Uses established patterns instead of inventing new ones
125
+ - Reduces review cycles and rework
126
+
127
+ **If skipped**:
128
+ - Code style inconsistent with rest of codebase
129
+ - Reinvents patterns that already exist
130
+ - Makes mistakes that guidelines warn against
131
+ - Requires significant refactoring after review
132
+
133
+ ---
134
+
135
+ #### `/before-backend-dev` - Read Backend Guidelines
136
+
137
+ **What it does**:
138
+ Reads backend development guidelines BEFORE writing any backend code.
139
+
140
+ **What AI will do**:
141
+ 1. Read `workflow/structure/backend/index.md` to find relevant sections
142
+ 2. Extract specific guideline sections:
143
+ - Database operations for DB work
144
+ - Type safety for API contracts
145
+ - Error handling patterns
146
+ - Logging standards
147
+ 3. Understand project-specific conventions
148
+
149
+ **Benefits**:
150
+ - Database queries follow established patterns
151
+ - Error handling is consistent across codebase
152
+ - Logging provides useful debugging information
153
+ - API contracts are type-safe
154
+
155
+ **If skipped**:
156
+ - N+1 query problems in database code
157
+ - Inconsistent error handling
158
+ - Missing or unhelpful logs
159
+ - Type safety holes in APIs
160
+
161
+ ---
162
+
163
+ ### Code Check Commands
164
+
165
+ #### `/check-frontend` - Check Frontend Code
166
+
167
+ **What it does**:
168
+ Verifies frontend code against guidelines AFTER writing code, BEFORE committing.
169
+
170
+ **What AI will do**:
171
+ 1. Run type check (`tsc --noEmit`)
172
+ 2. Run linter and check for errors
173
+ 3. Review code against frontend guidelines
174
+ 4. Check for common issues:
175
+ - Semantic HTML usage
176
+ - Accessibility compliance
177
+ - Performance patterns
178
+ 5. Report violations and suggest fixes
179
+
180
+ **Benefits**:
181
+ - Catches errors before human review
182
+ - Ensures consistent code quality
183
+ - Documents what was checked for transparency
184
+
185
+ **If skipped**:
186
+ - Type errors slip into codebase
187
+ - Lint errors accumulate
188
+ - Accessibility issues go unnoticed
189
+ - Review cycles increase
190
+
191
+ ---
192
+
193
+ #### `/check-backend` - Check Backend Code
194
+
195
+ **What it does**:
196
+ Verifies backend code against guidelines AFTER writing code, BEFORE committing.
197
+
198
+ **What AI will do**:
199
+ 1. Run type check
200
+ 2. Run linter
201
+ 3. Review against backend guidelines:
202
+ - No non-null assertions (`!`)
203
+ - All inputs/outputs have Zod schemas
204
+ - Structured logging (no console.log)
205
+ - No await in loops
206
+ 4. Check API documentation is updated
207
+ 5. Report issues and fixes
208
+
209
+ **Benefits**:
210
+ - Catches type safety issues early
211
+ - Ensures API documentation stays in sync
212
+ - Validates database operation patterns
213
+
214
+ **If skipped**:
215
+ - Runtime errors from type mismatches
216
+ - API docs become outdated
217
+ - Performance issues from N+1 queries
218
+
219
+ ---
220
+
221
+ #### `/check-cross-layer` - Cross-Layer Verification
222
+
223
+ **What it does**:
224
+ Verifies consistency between frontend and backend when changes span multiple layers.
225
+
226
+ **What AI will do**:
227
+ 1. Identify all layers touched by the change
228
+ 2. Verify type contracts match across layers
229
+ 3. Check data flow consistency
230
+ 4. Validate API request/response alignment
231
+
232
+ **Benefits**:
233
+ - Catches integration issues early
234
+ - Ensures frontend and backend stay in sync
235
+ - Prevents runtime type mismatches
236
+
237
+ **If skipped**:
238
+ - Frontend expects data backend doesn't provide
239
+ - Type mismatches cause runtime errors
240
+ - Integration bugs found late in testing
241
+
242
+ ---
243
+
244
+ ### Work Completion Commands
245
+
246
+ #### `/finish-work` - Pre-Commit Checklist
247
+
248
+ **What it does**:
249
+ Final verification before human commits. Ensures nothing is forgotten.
250
+
251
+ **What AI will do**:
252
+ 1. Run all relevant checks (type, lint)
253
+ 2. Verify all changes are intentional
254
+ 3. Check documentation is updated
255
+ 4. Prepare commit message suggestion
256
+ 5. List files to be committed
257
+ 6. Confirm ready for human review
258
+
259
+ **Benefits**:
260
+ - Nothing is forgotten before commit
261
+ - Clean commit history
262
+ - Documentation stays in sync
263
+ - Human knows exactly what to review
264
+
265
+ **If skipped**:
266
+ - Partial commits with missing files
267
+ - Documentation drift
268
+ - Unclear what changed for reviewer
269
+
270
+ ---
271
+
272
+ #### `/break-loop` - End Investigation Loop
273
+
274
+ **What it does**:
275
+ Stops an investigation/debugging loop and summarizes findings. Use when debugging or researching, BEFORE `/finish-work`.
276
+
277
+ **What AI will do**:
278
+ 1. Summarize what was investigated
279
+ 2. Document root cause (if found)
280
+ 3. List temporary vs permanent fixes
281
+ 4. Record lessons learned
282
+ 5. Suggest next steps or follow-up tasks
283
+ 6. Prepare knowledge for `/record-question` if applicable
284
+
285
+ **Benefits**:
286
+ - Prevents endless investigation loops
287
+ - Captures debugging knowledge
288
+ - Creates actionable next steps
289
+ - Knowledge is preserved for future
290
+
291
+ **If skipped**:
292
+ - Investigation goes in circles
293
+ - Findings are lost when session ends
294
+ - Same debugging repeated later
295
+ - No clear resolution or next steps
296
+
297
+ ---
298
+
299
+ ### Utility Commands
300
+
301
+ #### `/create-command` - Create New Slash Command
302
+
303
+ **What it does**:
304
+ Creates a new slash command when a repeated workflow pattern is identified.
305
+
306
+ **What AI will do**:
307
+ 1. Analyze the workflow pattern
308
+ 2. Design command structure
309
+ 3. Create command file in `.cursor/commands/` or `.claude/commands/`
310
+ 4. Document usage and examples
311
+
312
+ ---
313
+
314
+ #### `/record-question` - Document Solved Problems
315
+
316
+ **What it does**:
317
+ Documents a solved problem for future reference when a tricky issue is resolved.
318
+
319
+ **What AI will do**:
320
+ 1. Summarize the problem
321
+ 2. Document the root cause
322
+ 3. Record the solution
323
+ 4. Add to appropriate location (big-question/ or guidelines)
324
+
325
+ **Benefits**:
326
+ - Knowledge is preserved
327
+ - Same problem won't need re-investigation
328
+ - Team learns from each other's discoveries
329
+
330
+ ---
331
+
332
+ #### `/integrate-skill` - Integrate Claude Skills
333
+
334
+ **What it does**:
335
+ Integrates external Claude skills into project guidelines.
336
+
337
+ ---
338
+
339
+ #### `/extract-llm-docs` - Extract from LLM Documentation
340
+
341
+ **What it does**:
342
+ Extracts useful patterns from LLM documentation (like llms.txt files) into project guidelines.
343
+
344
+ ---
345
+
346
+ #### `/extract-to-rules` - Extract Rules from Source
347
+
348
+ **What it does**:
349
+ Extracts coding rules and patterns from existing source code into guidelines.
350
+
351
+ ---
352
+
353
+ #### `/sync-from-runtime` - Sync Knowledge
354
+
355
+ **What it does**:
356
+ Syncs knowledge and patterns from runtime documentation.
357
+
358
+ ---
359
+
360
+ ## Real-World Workflow Examples
361
+
362
+ ### Example 1: Bug Fix Session
363
+
364
+ **Scenario**: UI component missing after refactor
365
+
366
+ ```
367
+ 1. /init-agent
368
+ → See context: Branch "main", 2 uncommitted files
369
+ → Active feature: none
370
+
371
+ 2. Create feature:
372
+ ./workflow/scripts/feature.sh create fix-sync-indicator
373
+
374
+ 3. /before-frontend-dev
375
+ → Read component guidelines
376
+
377
+ 4. Investigate and fix:
378
+ - Analyze old vs new architecture
379
+ - Import missing component
380
+ - Add CSS styles
381
+
382
+ 5. /check-frontend
383
+ → Type check: ✅ passed
384
+ → Lint: ✅ 0 errors
385
+
386
+ 6. /finish-work
387
+ → Pre-commit checklist
388
+ → Confirm all changes are ready
389
+
390
+ 7. Human tests and commits:
391
+ git commit -m "fix(ui): restore SyncIndicator to TabBar"
392
+
393
+ 8. /record-agent-flow
394
+ → ./workflow/scripts/add-session.sh --title "Fix SyncIndicator" --commit "abc123"
395
+
396
+ 9. Archive feature:
397
+ ./workflow/scripts/feature.sh archive fix-sync-indicator
398
+ ```
399
+
400
+ ### Example 2: Planning Session (No Code)
401
+
402
+ **Scenario**: Audit migration docs and plan consolidation
403
+
404
+ ```
405
+ 1. /init-agent
406
+ → Understand current state
407
+
408
+ 2. Create feature:
409
+ ./workflow/scripts/feature.sh create migration-docs-consolidation
410
+
411
+ 3. Review docs, compare with existing guidelines
412
+
413
+ 4. Create subtask list in feature.json:
414
+ - Critical: Update outdated timestamp format
415
+ - High: Add missing validation rules
416
+ - Medium: Consolidate scattered docs
417
+
418
+ 5. /record-agent-flow (no commit)
419
+ → ./workflow/scripts/add-session.sh --title "Migration Docs Planning" --summary "Created 14 subtasks"
420
+ ```
421
+
422
+ ### Example 3: Code Review Fixes
423
+
424
+ **Scenario**: Fix issues from CR round 2
425
+
426
+ ```
427
+ 1. /init-agent
428
+ → Continue feature: entity-filesystem-refactor
429
+
430
+ 2. /before-backend-dev
431
+ → Read database and error handling guidelines
432
+
433
+ 3. Fix each CR issue:
434
+ - Add missing workspaceId filter (data isolation)
435
+ - Fix meta double-stringify bug
436
+ - Add LWW conflict resolution
437
+
438
+ 4. /check-backend
439
+ → All checks passed
440
+
441
+ 5. /finish-work
442
+ → Pre-commit checklist
443
+ → Document lessons learned:
444
+ - "All queries with workspaceId column must include WHERE clause"
445
+ - "buildXxxValues must match *DataSchema types"
446
+
447
+ 6. Human commits, then /record-agent-flow
448
+ ```
449
+
450
+ ### Example 4: Large Refactoring
451
+
452
+ **Scenario**: Adapt workflow system for monorepo
453
+
454
+ ```
455
+ 1. /init-agent
456
+ → Create feature: workflow-monorepo-adaptation
457
+
458
+ 2. Plan phases:
459
+ - Phase 1: Root directory restructure
460
+ - Phase 2: Sub-project workflow cleanup
461
+ - Phase 3: Slash commands rewrite
462
+ - Phase 4: Core docs update
463
+
464
+ 3. Execute phase by phase, running /check-* after each
465
+
466
+ 4. /finish-work
467
+ → Final verification checklist
468
+
469
+ 5. Human commits multiple times, record with multiple commit hashes:
470
+ ./workflow/scripts/add-session.sh --title "Monorepo Adaptation" --commit "hash1,hash2,hash3"
471
+ ```
472
+
473
+ ### Example 5: Debug Session with Break Loop
474
+
475
+ **Scenario**: Investigating a complex sync bug
476
+
477
+ ```
478
+ 1. /init-agent
479
+ → Continue feature: fix-sync-data-inconsistency
480
+
481
+ 2. /before-backend-dev
482
+ → Read sync and database guidelines
483
+
484
+ 3. Investigation loop:
485
+ - Analyze cloud vs local data
486
+ - Check sync event timestamps
487
+ - Review applyEvent logic
488
+ - Add debug logging
489
+
490
+ 4. /check-backend
491
+ → All checks passed
492
+
493
+ 5. /break-loop (when investigation is complete)
494
+ → Summarize findings:
495
+ - Root cause: Transaction failure without error logging
496
+ - Temporary fix: Manual SQL update
497
+ - Permanent fix: Add detailed logging in applyEvent
498
+ → Document for future reference
499
+
500
+ 6. /finish-work
501
+ → Pre-commit checklist
502
+
503
+ 7. Human tests and commits
504
+
505
+ 8. /record-agent-flow
506
+ → Include lessons learned in session record
507
+ ```
508
+
509
+ ---
510
+
511
+ ## Key Points to Emphasize
512
+
31
513
  - AI should NOT execute `git commit` - human is responsible for testing and committing
32
514
  - Each developer has their own progress directory
33
515
  - Read guidelines before coding (mandatory)
516
+ - Use `/record-question` to document solved problems for future reference
517
+ - Planning sessions (no code) are valid - record with `--summary` instead of `--commit`
518
+ - `/break-loop` is for ending debug/investigation loops, use BEFORE `/finish-work`
34
519
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mind-fold/open-flow",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "AI-assisted development workflow initializer for Cursor, Claude Code and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,2 +0,0 @@
1
- export declare const agentProgressIndexContent: string;
2
- //# sourceMappingURL=agent-progress-index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"agent-progress-index.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/agent-progress-index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,yBAAyB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "agent-progress-index.md.txt");
4
- export const agentProgressIndexContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=agent-progress-index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"agent-progress-index.js","sourceRoot":"","sources":["../../../src/templates/markdown/agent-progress-index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,6BAA6B,CAAC,CAAC;AACzE,MAAM,CAAC,MAAM,yBAAyB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const backendDocContent: string;
2
- //# sourceMappingURL=backend-doc.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"backend-doc.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/backend-doc.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,iBAAiB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "backend-doc.md.txt");
4
- export const backendDocContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=backend-doc.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"backend-doc.js","sourceRoot":"","sources":["../../../src/templates/markdown/backend-doc.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAChE,MAAM,CAAC,MAAM,iBAAiB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const backendIndexContent: string;
2
- //# sourceMappingURL=backend-index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"backend-index.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/backend-index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "backend-index.md.txt");
4
- export const backendIndexContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=backend-index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"backend-index.js","sourceRoot":"","sources":["../../../src/templates/markdown/backend-index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,sBAAsB,CAAC,CAAC;AAClE,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const flowMdContent: string;
2
- //# sourceMappingURL=flow.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"flow.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/flow.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "flow.md.txt");
4
- export const flowMdContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=flow.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"flow.js","sourceRoot":"","sources":["../../../src/templates/markdown/flow.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;AACzD,MAAM,CAAC,MAAM,aAAa,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const frontendDocContent: string;
2
- //# sourceMappingURL=frontend-doc.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"frontend-doc.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/frontend-doc.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,kBAAkB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "frontend-doc.md.txt");
4
- export const frontendDocContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=frontend-doc.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"frontend-doc.js","sourceRoot":"","sources":["../../../src/templates/markdown/frontend-doc.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,qBAAqB,CAAC,CAAC;AACjE,MAAM,CAAC,MAAM,kBAAkB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const frontendIndexContent: string;
2
- //# sourceMappingURL=frontend-index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"frontend-index.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/frontend-index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,oBAAoB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "frontend-index.md.txt");
4
- export const frontendIndexContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=frontend-index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"frontend-index.js","sourceRoot":"","sources":["../../../src/templates/markdown/frontend-index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uBAAuB,CAAC,CAAC;AACnE,MAAM,CAAC,MAAM,oBAAoB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const workflowGitignoreContent: string;
2
- //# sourceMappingURL=gitignore.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gitignore.d.ts","sourceRoot":"","sources":["../../../src/templates/markdown/gitignore.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,wBAAwB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "gitignore.txt");
4
- export const workflowGitignoreContent = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=gitignore.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gitignore.js","sourceRoot":"","sources":["../../../src/templates/markdown/gitignore.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;AAC3D,MAAM,CAAC,MAAM,wBAAwB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const addSessionScript: string;
2
- //# sourceMappingURL=add-session.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"add-session.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/add-session.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,gBAAgB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "add-session.sh.txt");
4
- export const addSessionScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=add-session.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"add-session.js","sourceRoot":"","sources":["../../../src/templates/scripts/add-session.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAChE,MAAM,CAAC,MAAM,gBAAgB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const extractMdHeadingsScript: string;
2
- //# sourceMappingURL=extract-md-headings.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"extract-md-headings.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/extract-md-headings.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,uBAAuB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "extract-md-headings.sh.txt");
4
- export const extractMdHeadingsScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=extract-md-headings.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"extract-md-headings.js","sourceRoot":"","sources":["../../../src/templates/scripts/extract-md-headings.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,4BAA4B,CAAC,CAAC;AACxE,MAAM,CAAC,MAAM,uBAAuB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const featureScript: string;
2
- //# sourceMappingURL=feature.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"feature.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/feature.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "feature.sh.txt");
4
- export const featureScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=feature.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"feature.js","sourceRoot":"","sources":["../../../src/templates/scripts/feature.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAC;AAC5D,MAAM,CAAC,MAAM,aAAa,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const getContextScript: string;
2
- //# sourceMappingURL=get-context.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-context.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/get-context.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,gBAAgB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "get-context.sh.txt");
4
- export const getContextScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=get-context.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-context.js","sourceRoot":"","sources":["../../../src/templates/scripts/get-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAChE,MAAM,CAAC,MAAM,gBAAgB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const getDeveloperScript: string;
2
- //# sourceMappingURL=get-developer.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-developer.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/get-developer.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,kBAAkB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "get-developer.sh.txt");
4
- export const getDeveloperScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=get-developer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-developer.js","sourceRoot":"","sources":["../../../src/templates/scripts/get-developer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,sBAAsB,CAAC,CAAC;AAClE,MAAM,CAAC,MAAM,kBAAkB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const initDeveloperScript: string;
2
- //# sourceMappingURL=init-developer.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"init-developer.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/init-developer.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "init-developer.sh.txt");
4
- export const initDeveloperScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=init-developer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"init-developer.js","sourceRoot":"","sources":["../../../src/templates/scripts/init-developer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,uBAAuB,CAAC,CAAC;AACnE,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const updateIndexScript: string;
2
- //# sourceMappingURL=update-index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"update-index.d.ts","sourceRoot":"","sources":["../../../src/templates/scripts/update-index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,iBAAiB,QAAyC,CAAC"}
@@ -1,5 +0,0 @@
1
- import * as fs from "node:fs";
2
- import * as path from "node:path";
3
- const templatePath = path.join(__dirname, "update-index.sh.txt");
4
- export const updateIndexScript = fs.readFileSync(templatePath, "utf-8");
5
- //# sourceMappingURL=update-index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"update-index.js","sourceRoot":"","sources":["../../../src/templates/scripts/update-index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,qBAAqB,CAAC,CAAC;AACjE,MAAM,CAAC,MAAM,iBAAiB,GAAG,EAAE,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC"}