@mind-fold/open-flow 0.2.8 → 0.2.10

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 +38 -1
  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,6 +26,44 @@ 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
 
29
+ 5. **Available slash commands**:
30
+
31
+ **Core Workflow**:
32
+ | Command | Purpose |
33
+ |---------|---------|
34
+ | `/init-agent` | Initialize AI session, read context |
35
+ | `/record-agent-flow` | Record work progress (after human commits) |
36
+ | `/onboard-developer` | Guide new developer through setup |
37
+
38
+ **Before Coding**:
39
+ | Command | Purpose |
40
+ |---------|---------|
41
+ | `/before-frontend-dev` | Read frontend guidelines first |
42
+ | `/before-backend-dev` | Read backend guidelines first |
43
+
44
+ **Code Checks**:
45
+ | Command | Purpose |
46
+ |---------|---------|
47
+ | `/check-frontend` | Check frontend code quality |
48
+ | `/check-backend` | Check backend code quality |
49
+ | `/check-cross-layer` | Verify cross-layer consistency |
50
+
51
+ **Work Completion**:
52
+ | Command | Purpose |
53
+ |---------|---------|
54
+ | `/finish-work` | Pre-commit checklist |
55
+ | `/break-loop` | End investigation loop |
56
+
57
+ **Utilities**:
58
+ | Command | Purpose |
59
+ |---------|---------|
60
+ | `/create-command` | Create new slash command |
61
+ | `/record-question` | Document solved problems |
62
+ | `/integrate-skill` | Integrate Claude skills into guidelines |
63
+ | `/extract-llm-docs` | Extract docs from LLM documentation |
64
+ | `/extract-to-rules` | Extract rules from source files |
65
+ | `/sync-from-runtime` | Sync knowledge from runtime docs |
66
+
30
67
  Key points to emphasize:
31
68
  - AI should NOT execute `git commit` - human is responsible for testing and committing
32
69
  - Each developer has their own progress directory
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mind-fold/open-flow",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
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"}