@leejungkiin/awkit 1.5.5 → 1.6.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.
Files changed (129) hide show
  1. package/README.md +6 -4
  2. package/bin/awk.js +196 -8
  3. package/core/GEMINI.md +24 -8
  4. package/core/work-modes.json +45 -0
  5. package/package.json +3 -3
  6. package/skill-packs/cocos2d/pack.json +8 -0
  7. package/skill-packs/cocos2d/skills/cocos2d-x/LICENSE.txt +8 -0
  8. package/skill-packs/cocos2d/skills/cocos2d-x/SKILL.md +168 -0
  9. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/action.md +278 -0
  10. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/animation.md +220 -0
  11. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/event.md +133 -0
  12. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/input.md +291 -0
  13. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/label.md +184 -0
  14. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/node-scene.md +212 -0
  15. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/scene.md +228 -0
  16. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/sprite.md +206 -0
  17. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/texture.md +186 -0
  18. package/skill-packs/cocos2d/skills/cocos2d-x/examples/getting-started/about-engine.md +53 -0
  19. package/skill-packs/cocos2d/skills/cocos2d-x/examples/getting-started/installation.md +203 -0
  20. package/skill-packs/cocos2d/skills/cocos2d-x/examples/getting-started/quick-start.md +134 -0
  21. package/skill-packs/electron/pack.json +9 -0
  22. package/skill-packs/electron/skills/electron/LICENSE.txt +202 -0
  23. package/skill-packs/electron/skills/electron/SKILL.md +160 -0
  24. package/skill-packs/electron/skills/electron/api/app.md +83 -0
  25. package/skill-packs/electron/skills/electron/api/browser-window.md +84 -0
  26. package/skill-packs/electron/skills/electron/examples/advanced/packaging.md +140 -0
  27. package/skill-packs/electron/skills/electron/examples/api/browser-window.md +182 -0
  28. package/skill-packs/electron/skills/electron/examples/api/menu.md +187 -0
  29. package/skill-packs/electron/skills/electron/examples/getting-started/installation.md +88 -0
  30. package/skill-packs/electron/skills/electron/examples/getting-started/quick-start.md +104 -0
  31. package/skill-packs/electron/skills/electron/examples/processes/ipc-communication.md +140 -0
  32. package/skill-packs/electron/skills/electron/examples/processes/main-process.md +121 -0
  33. package/skill-packs/electron/skills/electron/templates/main-process.md +105 -0
  34. package/skill-packs/electron/skills/electron/templates/preload-script.md +84 -0
  35. package/skill-packs/electron/skills/electron-egg/LICENSE.txt +202 -0
  36. package/skill-packs/electron/skills/electron-egg/SKILL.md +154 -0
  37. package/skill-packs/electron/skills/electron-egg/api/config-api.md +62 -0
  38. package/skill-packs/electron/skills/electron-egg/api/ipc-api.md +55 -0
  39. package/skill-packs/electron/skills/electron-egg/api/main-api.md +54 -0
  40. package/skill-packs/electron/skills/electron-egg/api/renderer-api.md +62 -0
  41. package/skill-packs/electron/skills/electron-egg/api/window-api.md +64 -0
  42. package/skill-packs/electron/skills/electron-egg/examples/features/ipc-communication.md +84 -0
  43. package/skill-packs/electron/skills/electron-egg/examples/features/main-process.md +89 -0
  44. package/skill-packs/electron/skills/electron-egg/examples/features/renderer-process.md +74 -0
  45. package/skill-packs/electron/skills/electron-egg/examples/guide/build.md +77 -0
  46. package/skill-packs/electron/skills/electron-egg/examples/guide/configuration.md +88 -0
  47. package/skill-packs/electron/skills/electron-egg/examples/guide/installation.md +66 -0
  48. package/skill-packs/electron/skills/electron-egg/examples/guide/intro.md +47 -0
  49. package/skill-packs/electron/skills/electron-egg/examples/guide/project-structure.md +73 -0
  50. package/skill-packs/electron/skills/electron-egg/examples/guide/quick-start.md +78 -0
  51. package/skill-packs/electron/skills/electron-egg/templates/configuration.md +63 -0
  52. package/skill-packs/electron/skills/electron-egg/templates/installation.md +42 -0
  53. package/skill-packs/electron/skills/electron-egg/templates/project-setup.md +75 -0
  54. package/skill-packs/flutter/pack.json +9 -0
  55. package/skill-packs/flutter/skills/flutter/LICENSE.txt +202 -0
  56. package/skill-packs/flutter/skills/flutter/SKILL.md +127 -0
  57. package/skill-packs/flutter/skills/flutter-project-creater/LICENSE.txt +202 -0
  58. package/skill-packs/flutter/skills/flutter-project-creater/SKILL.md +106 -0
  59. package/skill-packs/threejs/pack.json +25 -0
  60. package/skill-packs/threejs/skills/README.md +95 -0
  61. package/skill-packs/threejs/skills/threejs-animation/SKILL.md +86 -0
  62. package/skill-packs/threejs/skills/threejs-animation/examples/workflow-mixer-action.md +20 -0
  63. package/skill-packs/threejs/skills/threejs-animation/references/official-sections.md +19 -0
  64. package/skill-packs/threejs/skills/threejs-audio/SKILL.md +112 -0
  65. package/skill-packs/threejs/skills/threejs-audio/examples/workflow-positional-audio.md +15 -0
  66. package/skill-packs/threejs/skills/threejs-audio/references/official-sections.md +16 -0
  67. package/skill-packs/threejs/skills/threejs-camera/SKILL.md +96 -0
  68. package/skill-packs/threejs/skills/threejs-camera/examples/workflow-perspective-resize.md +13 -0
  69. package/skill-packs/threejs/skills/threejs-controls/SKILL.md +101 -0
  70. package/skill-packs/threejs/skills/threejs-controls/examples/workflow-orbit-damping.md +15 -0
  71. package/skill-packs/threejs/skills/threejs-dev-setup/SKILL.md +102 -0
  72. package/skill-packs/threejs/skills/threejs-dev-setup/examples/workflow-scaffold.md +24 -0
  73. package/skill-packs/threejs/skills/threejs-geometries/SKILL.md +108 -0
  74. package/skill-packs/threejs/skills/threejs-geometries/examples/workflow-extrude-shape.md +13 -0
  75. package/skill-packs/threejs/skills/threejs-helpers/SKILL.md +103 -0
  76. package/skill-packs/threejs/skills/threejs-helpers/examples/workflow-light-camera-helpers.md +13 -0
  77. package/skill-packs/threejs/skills/threejs-lights/SKILL.md +103 -0
  78. package/skill-packs/threejs/skills/threejs-lights/examples/workflow-directional-shadow.md +17 -0
  79. package/skill-packs/threejs/skills/threejs-loaders/SKILL.md +89 -0
  80. package/skill-packs/threejs/skills/threejs-loaders/examples/workflow-gltf-draco.md +22 -0
  81. package/skill-packs/threejs/skills/threejs-loaders/references/official-sections.md +27 -0
  82. package/skill-packs/threejs/skills/threejs-materials/SKILL.md +102 -0
  83. package/skill-packs/threejs/skills/threejs-materials/examples/workflow-pbr-transparent.md +15 -0
  84. package/skill-packs/threejs/skills/threejs-math/SKILL.md +102 -0
  85. package/skill-packs/threejs/skills/threejs-math/examples/workflow-ray-aabb.md +11 -0
  86. package/skill-packs/threejs/skills/threejs-node-tsl/SKILL.md +83 -0
  87. package/skill-packs/threejs/skills/threejs-node-tsl/examples/workflow-tsl-entry.md +13 -0
  88. package/skill-packs/threejs/skills/threejs-node-tsl/references/official-links.md +8 -0
  89. package/skill-packs/threejs/skills/threejs-node-tsl/references/tsl-vs-classic.md +23 -0
  90. package/skill-packs/threejs/skills/threejs-objects/SKILL.md +111 -0
  91. package/skill-packs/threejs/skills/threejs-objects/examples/workflow-raycaster-pick.md +17 -0
  92. package/skill-packs/threejs/skills/threejs-postprocessing/SKILL.md +116 -0
  93. package/skill-packs/threejs/skills/threejs-postprocessing/examples/workflow-composer-bloom.md +15 -0
  94. package/skill-packs/threejs/skills/threejs-renderers/SKILL.md +91 -0
  95. package/skill-packs/threejs/skills/threejs-renderers/examples/workflow-renderer-resize.md +21 -0
  96. package/skill-packs/threejs/skills/threejs-renderers/references/official-sections.md +14 -0
  97. package/skill-packs/threejs/skills/threejs-scenes/SKILL.md +90 -0
  98. package/skill-packs/threejs/skills/threejs-scenes/examples/workflow-fog-background.md +13 -0
  99. package/skill-packs/threejs/skills/threejs-textures/SKILL.md +83 -0
  100. package/skill-packs/threejs/skills/threejs-textures/examples/workflow-pmrem-env.md +19 -0
  101. package/skill-packs/threejs/skills/threejs-webxr/SKILL.md +104 -0
  102. package/skill-packs/threejs/skills/threejs-webxr/examples/workflow-xr-button.md +15 -0
  103. package/skills/CATALOG.md +44 -49
  104. package/skills/TRIGGER_INDEX.md +30 -0
  105. package/skills/awf-session-restore/SKILL.md +19 -2
  106. package/skills/brainstorm-agent/SKILL.md +2 -0
  107. package/skills/code-review/SKILL.md +2 -0
  108. package/skills/code-review-system-principles/SKILL.md +154 -0
  109. package/skills/codex-conductor/SKILL.md +6 -4
  110. package/skills/gemini-conductor/SKILL.md +4 -3
  111. package/skills/gitnexus-intelligence/SKILL.md +2 -0
  112. package/skills/module-spec-writer/SKILL.md +2 -0
  113. package/skills/nm-memory-sync/SKILL.md +10 -0
  114. package/skills/skill-creator/SKILL.md +2 -0
  115. package/skills/spec-gate/SKILL.md +2 -0
  116. package/skills/symphony-enforcer/SKILL.md +9 -0
  117. package/skills/symphony-enforcer/examples/mindful-stop.md +141 -0
  118. package/skills/symphony-enforcer/examples/task-completion.md +11 -2
  119. package/skills/symphony-enforcer/examples/trigger-points.md +7 -0
  120. package/skills/symphony-orchestrator/SKILL.md +2 -0
  121. package/skills/telegram-notify/SKILL.md +1 -0
  122. package/skills/trello-sync/SKILL.md +7 -0
  123. package/skills/verification-gate/SKILL.md +2 -0
  124. package/skills/visual-design-gate/SKILL.md +2 -0
  125. package/templates/project-identity/android.json +26 -1
  126. package/templates/project-identity/backend-nestjs.json +26 -1
  127. package/templates/project-identity/expo.json +26 -1
  128. package/templates/project-identity/ios.json +26 -1
  129. package/templates/project-identity/web-nextjs.json +26 -1
@@ -0,0 +1,141 @@
1
+ # Mindful Stop Protocol — Detailed Logic
2
+
3
+ > **Purpose:** Chống vòng xoáy tối ưu không hồi kết ("AI brain fry").
4
+ > **Design:** Default-ON trong GEMINI.md, enforcement gắn vào TP1/TP2/TP4.
5
+ > **Opt-out:** `.project-identity` → `mindfulCheckpoint: false`.
6
+
7
+ ## Gate Check (Init Chain Cache)
8
+
9
+ ```
10
+ Trong awf-session-restore, khi đọc .project-identity:
11
+ → Cache mindful config vào session state:
12
+ mindful_enabled = .mindfulCheckpoint ?? true
13
+ iteration_threshold = .mindfulCheckpointConfig?.iterationThreshold ?? 3
14
+ scope_guard = .mindfulCheckpointConfig?.scopeGuard ?? true
15
+ milestone_rest = .mindfulCheckpointConfig?.milestoneRest ?? true
16
+
17
+ Nếu .project-identity không tồn tại → dùng defaults (tất cả ON)
18
+ ```
19
+
20
+ ---
21
+
22
+ ## Session State Tracking
23
+
24
+ ```
25
+ AI duy trì state xuyên suốt session:
26
+ iteration_map = {} # feature_name → count
27
+ tasks_completed = 0 # count tasks done trong session
28
+ last_gate_completed = "" # "phase_c" | "gate_5" | ""
29
+ ```
30
+
31
+ ---
32
+
33
+ ## TP-ITER: Iteration Counter
34
+
35
+ **Gắn vào:** TP1 (Progress Milestone) — mỗi lần report progress
36
+
37
+ **Trigger:** User request chứa keywords refactor/polish/optimize TRÊN feature đã hoàn thành
38
+
39
+ ```
40
+ IF NOT mindful_enabled → SKIP
41
+
42
+ Khi nhận request iterate trên feature X:
43
+ iteration_map[X] = (iteration_map[X] ?? 0) + 1
44
+
45
+ IF iteration_map[X] >= iteration_threshold:
46
+ ⏸️ MINDFUL PAUSE
47
+ ──────────────────────────────────────
48
+ Cảnh báo: "⏸️ Đã iterate {N} lần trên [{feature}].
49
+ Code đang hoạt động ổn định. Đề xuất:
50
+ 1. Commit code hiện tại
51
+ 2. Trải nghiệm thực tế trên device/production
52
+ 3. Quay lại sau nếu phát hiện vấn đề cụ thể"
53
+ ──────────────────────────────────────
54
+
55
+ User response:
56
+ "tiếp tục" / "tôi hiểu, tiếp" / "override" → reset iteration_map[X] = 0, proceed
57
+ Bất kỳ response khác → commit + dừng feature đó
58
+ ```
59
+
60
+ ---
61
+
62
+ ## TP-SCOPE: Scope Guard
63
+
64
+ **Gắn vào:** Trước khi bắt đầu EXECUTION — khi nhận request mới
65
+
66
+ **Trigger keywords:** `[polish, optimize, refine, tối ưu, cải thiện, tweak, mượt hơn, đẹp hơn, smooth, better]`
67
+
68
+ ```
69
+ IF NOT mindful_enabled OR NOT scope_guard → SKIP
70
+
71
+ Khi nhận request chứa trigger keyword:
72
+ Hỏi: "Thay đổi này giải quyết vấn đề cụ thể nào đang gặp trên device/production?
73
+ Hay đây là tối ưu phòng ngừa?"
74
+
75
+ User response:
76
+ Nêu vấn đề cụ thể (lỗi, lag, UX problem) → proceed bình thường
77
+ Không rõ / "muốn đẹp hơn thôi" → Đề xuất:
78
+ "📋 Bookmark vào Symphony backlog (P2):
79
+ symphony task create 'Optimize: {description}' --priority 2
80
+ Quay lại khi có feedback từ real users."
81
+ ```
82
+
83
+ ---
84
+
85
+ ## TP-REST: Milestone Rest Gate
86
+
87
+ **Gắn vào:** TP4 (Auto-Next Suggestion) — sau khi task complete
88
+
89
+ **Trigger conditions (BẤT KỲ 1):**
90
+ 1. `tasks_completed >= 3` trong session hiện tại
91
+ 2. `last_gate_completed` = "phase_c" hoặc "gate_5"
92
+
93
+ ```
94
+ IF NOT mindful_enabled OR NOT milestone_rest → SKIP (TP4 chạy như cũ)
95
+
96
+ Khi trigger:
97
+ TP4 output THAY ĐỔI thành:
98
+
99
+ ➡️ NEXT STEPS ({projectName})
100
+ ──────────────────────────────────────
101
+ 🧘 Đề xuất: Dừng phiên tại đây.
102
+ Bạn đã hoàn thành {tasks_completed} tasks hôm nay.
103
+ Tiến độ project: {X}% → {Y}%
104
+ Commit, nghỉ ngơi, quay lại phiên mới sau.
105
+ ──────────────────────────────────────
106
+ Hoặc tiếp tục:
107
+ 📋 #sym-A1 — Task Name (P0, ready)
108
+ 📋 #sym-A2 — Task Name (P1, ready)
109
+
110
+ → 🧘 REST option hiển thị TRƯỚC danh sách tasks
111
+ → User vẫn có thể chọn task để tiếp tục
112
+ ```
113
+
114
+ ---
115
+
116
+ ## Enforcement Matrix
117
+
118
+ | Mechanism | Gắn vào TP | Mandatory? | Opt-out key |
119
+ |:---|:---|:---|:---|
120
+ | Iteration Counter | TP1 | ✅ (khi enabled) | `mindfulCheckpoint: false` |
121
+ | Scope Guard | Pre-EXECUTION | ✅ (khi enabled) | `scopeGuard: false` |
122
+ | Milestone Rest | TP4 | ✅ (khi enabled) | `milestoneRest: false` |
123
+
124
+ ## .project-identity Config
125
+
126
+ ```json
127
+ {
128
+ "mindfulCheckpoint": true,
129
+ "mindfulCheckpointConfig": {
130
+ "iterationThreshold": 3,
131
+ "scopeGuard": true,
132
+ "milestoneRest": true
133
+ }
134
+ }
135
+ ```
136
+
137
+ | Giá trị | Hành vi |
138
+ |:---|:---|
139
+ | Không khai báo | = `true` (an toàn mặc định) |
140
+ | `true` | Bật toàn bộ, dùng defaults hoặc sub-config |
141
+ | `false` | Tắt hoàn toàn, AI chạy full speed |
@@ -88,13 +88,22 @@ NEEDS_CONTEXT:
88
88
  2. symphony task list -P <projectId> -s ready (CHỈ tasks cùng project)
89
89
  ⚠️ TUYỆT ĐỐI KHÔNG dùng filter="ready" không có project filter
90
90
  3. Lọc top 2-3 ready tasks theo priority
91
- 4. Present cho user:
91
+ 4. Kiểm tra Mindful Rest trigger:
92
+ IF mindful_enabled VÀ milestone_rest VÀ (tasks_completed >= 3 OR vừa xong Phase C / Gate 5):
93
+ → Hiển thị REST option TRƯỚC danh sách tasks:
94
+ 🧘 Đề xuất: Dừng phiên tại đây.
95
+ Bạn đã hoàn thành {tasks_completed} tasks hôm nay.
96
+ Commit, nghỉ ngơi, quay lại phiên mới sau.
97
+ ─────────────
98
+ Hoặc tiếp tục:
99
+ 5. Present cho user:
92
100
  ➡️ NEXT STEPS ({projectName})
93
101
  📋 #sym-A1 — Auth Module (P0, ready)
94
102
  📋 #sym-A2 — Dashboard UI (P1, ready)
95
- 5. Nếu KHÔNG CÓ ready tasks → "✨ Không còn task ready! Tạo task mới hoặc chuyển phase."
103
+ 6. Nếu KHÔNG CÓ ready tasks → "✨ Không còn task ready! Tạo task mới hoặc chuyển phase."
96
104
  ```
97
105
 
98
106
  **Enforcement:**
99
107
  - ❌ KHÔNG kết thúc conversation mà KHÔNG present next suggestion
100
108
  - ❌ KHÔNG show tasks từ project khác
109
+ - ❌ KHÔNG bỏ qua Mindful Rest khi trigger conditions đạt (nếu enabled)
@@ -35,6 +35,13 @@ symphony_report_progress(
35
35
  - ❌ KHÔNG được gọi `notify_user` mà chưa `report_progress` trước đó
36
36
  - ❌ KHÔNG được chuyển mode (task_boundary) mà chưa report
37
37
 
38
+ **Mindful Check (gắn vào TP1):**
39
+ ```
40
+ Nếu mindful_enabled VÀ request là iterate/polish trên feature đã done:
41
+ iteration_map[feature]++
42
+ IF >= iteration_threshold → ⏸️ MINDFUL PAUSE (xem mindful-stop.md)
43
+ ```
44
+
38
45
  ---
39
46
 
40
47
  ## TP1.5: Design Compliance Check (Gate 4 Enforcement)
@@ -20,6 +20,8 @@ invocation-type: auto
20
20
  priority: 0
21
21
  ---
22
22
 
23
+ <!-- ⚠️ GATE 0 — Preflight checklist PHẢI hiển thị. Bỏ qua = VI PHẠM. DB centralized = cross-project. -->
24
+
23
25
  # Symphony Orchestrator Skill — Multi-Project & Agent Orchestration
24
26
 
25
27
  > **Purpose:** Đảm bảo Symphony server luôn sẵn sàng cho mọi session.
@@ -55,3 +55,4 @@ awkit tg send --chat -100xxx --topic 456 --parse-mode md "**Done!**"
55
55
  3. **Use Markdown** for formatted messages (`--parse-mode md`)
56
56
  4. **Config location**: `~/.gemini/antigravity/.tg_config.json`
57
57
  5. If `awkit tg send` returns error about config, tell user to run `awkit tg setup`
58
+ 6. **Per-Project Automation**: AWKit CLI automatically reads `.project-identity` > `automation.telegram` to override `chatId`/`topicId` per project, or completely skip sending if `enabled: false`.
@@ -90,6 +90,13 @@ Lần 3 (vẫn lỗi): báo user "Trello chưa được cấu hình. Vui lòng c
90
90
  ### Tự Động Hóa Qua `awkit trello` (BẮT BUỘC)
91
91
 
92
92
  AI không cần tự inject ENV hay tìm kiếm cấu hình. Công cụ lệnh `awkit trello` v1.3.0+ sẽ TỰ ĐỘNG đọc từ env vars và `.project-identity`. MỌI thao tác Trello phải đi qua `awkit trello`.
93
+
94
+ > **Proactive Auto-Sync Rule:** Nếu `.project-identity` có `automation.trello.autoSync: true`, AI **BẮT BUỘC** tự động gọi lệnh Trello tại các trigger points mà không cần user yêu cầu:
95
+ > - Từng task complete → `awkit trello complete "<tên>"` + comment progress.
96
+ > - Đạt milestone (chuyển Gate, đạt 40/60/80%) → `awkit trello comment`.
97
+ > - Gặp lỗi Blocked → `awkit trello block`.
98
+ > *(Nếu `autoSync: false` hoặc không có config, AI tiếp tục chế độ bị động).*
99
+
93
100
  ---
94
101
 
95
102
  ## 📚 Command Reference
@@ -3,6 +3,8 @@ name: verification-gate
3
3
  description: Use BEFORE claiming any work is complete, fixed, or passing. Requires running verification commands and confirming output before making success claims. Evidence before assertions, always. Auto-triggers on task completion, commit, deploy, or any positive status claim.
4
4
  ---
5
5
 
6
+ <!-- ⚠️ IRON LAW — NO completion claims without FRESH verification evidence. Non-negotiable. -->
7
+
6
8
  # Verification Before Completion
7
9
 
8
10
  ## Overview
@@ -22,6 +22,8 @@ activation_keywords:
22
22
  - "pencil"
23
23
  ---
24
24
 
25
+ <!-- ⚠️ GATE 2.5 — Không code UI khi chưa có design approval. Backend-only tasks SKIP gate này. -->
26
+
25
27
  # Visual Design Gate v1.0 (Gate 2.5) — UI/UX Sync Gate
26
28
 
27
29
  > **Purpose:** Giúp AI và người dùng đồng bộ cách hiểu về ý tưởng giao diện (UI/UX)
@@ -24,5 +24,30 @@
24
24
  "lineLength": 120
25
25
  },
26
26
  "createdDate": "{{DATE}}",
27
- "lastUpdated": "{{DATE}}"
27
+ "lastUpdated": "{{DATE}}",
28
+ "automation": {
29
+ "telegram": {
30
+ "enabled": true,
31
+ "chatId": "",
32
+ "topicId": "",
33
+ "triggers": {
34
+ "git_push": true,
35
+ "task_complete": false,
36
+ "deploy": true
37
+ }
38
+ },
39
+ "trello": {
40
+ "enabled": true,
41
+ "autoSync": true,
42
+ "triggers": {
43
+ "task_complete": true,
44
+ "milestone": true,
45
+ "blocked": true
46
+ }
47
+ },
48
+ "git": {
49
+ "autoCommit": true,
50
+ "autoPush": true
51
+ }
52
+ }
28
53
  }
@@ -20,5 +20,30 @@
20
20
  "lineLength": 100
21
21
  },
22
22
  "createdDate": "{{DATE}}",
23
- "lastUpdated": "{{DATE}}"
23
+ "lastUpdated": "{{DATE}}",
24
+ "automation": {
25
+ "telegram": {
26
+ "enabled": true,
27
+ "chatId": "",
28
+ "topicId": "",
29
+ "triggers": {
30
+ "git_push": true,
31
+ "task_complete": false,
32
+ "deploy": true
33
+ }
34
+ },
35
+ "trello": {
36
+ "enabled": true,
37
+ "autoSync": true,
38
+ "triggers": {
39
+ "task_complete": true,
40
+ "milestone": true,
41
+ "blocked": true
42
+ }
43
+ },
44
+ "git": {
45
+ "autoCommit": true,
46
+ "autoPush": true
47
+ }
48
+ }
24
49
  }
@@ -23,5 +23,30 @@
23
23
  "lineLength": 100
24
24
  },
25
25
  "createdDate": "{{DATE}}",
26
- "lastUpdated": "{{DATE}}"
26
+ "lastUpdated": "{{DATE}}",
27
+ "automation": {
28
+ "telegram": {
29
+ "enabled": true,
30
+ "chatId": "",
31
+ "topicId": "",
32
+ "triggers": {
33
+ "git_push": true,
34
+ "task_complete": false,
35
+ "deploy": true
36
+ }
37
+ },
38
+ "trello": {
39
+ "enabled": true,
40
+ "autoSync": true,
41
+ "triggers": {
42
+ "task_complete": true,
43
+ "milestone": true,
44
+ "blocked": true
45
+ }
46
+ },
47
+ "git": {
48
+ "autoCommit": true,
49
+ "autoPush": true
50
+ }
51
+ }
27
52
  }
@@ -23,5 +23,30 @@
23
23
  "lineLength": 120
24
24
  },
25
25
  "createdDate": "{{DATE}}",
26
- "lastUpdated": "{{DATE}}"
26
+ "lastUpdated": "{{DATE}}",
27
+ "automation": {
28
+ "telegram": {
29
+ "enabled": true,
30
+ "chatId": "",
31
+ "topicId": "",
32
+ "triggers": {
33
+ "git_push": true,
34
+ "task_complete": false,
35
+ "deploy": true
36
+ }
37
+ },
38
+ "trello": {
39
+ "enabled": true,
40
+ "autoSync": true,
41
+ "triggers": {
42
+ "task_complete": true,
43
+ "milestone": true,
44
+ "blocked": true
45
+ }
46
+ },
47
+ "git": {
48
+ "autoCommit": true,
49
+ "autoPush": true
50
+ }
51
+ }
27
52
  }
@@ -20,5 +20,30 @@
20
20
  "lineLength": 100
21
21
  },
22
22
  "createdDate": "{{DATE}}",
23
- "lastUpdated": "{{DATE}}"
23
+ "lastUpdated": "{{DATE}}",
24
+ "automation": {
25
+ "telegram": {
26
+ "enabled": true,
27
+ "chatId": "",
28
+ "topicId": "",
29
+ "triggers": {
30
+ "git_push": true,
31
+ "task_complete": false,
32
+ "deploy": true
33
+ }
34
+ },
35
+ "trello": {
36
+ "enabled": true,
37
+ "autoSync": true,
38
+ "triggers": {
39
+ "task_complete": true,
40
+ "milestone": true,
41
+ "blocked": true
42
+ }
43
+ },
44
+ "git": {
45
+ "autoCommit": true,
46
+ "autoPush": true
47
+ }
48
+ }
24
49
  }