ai-scaffold-pro 1.1.1
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/bin/cli.js +86 -0
- package/hooks/check-review-needed.sh +28 -0
- package/hooks/post-edit-tracker.sh +21 -0
- package/i18n/en.json +536 -0
- package/i18n/index.js +27 -0
- package/i18n/zh.json +536 -0
- package/package.json +29 -0
- package/scripts/gen_references.py +877 -0
- package/src/detect.js +320 -0
- package/src/platforms/android.js +206 -0
- package/src/platforms/default.js +26 -0
- package/src/platforms/flutter.js +278 -0
- package/src/platforms/harmonyos.js +26 -0
- package/src/platforms/index.js +40 -0
- package/src/platforms/ios.js +252 -0
- package/src/platforms/react-native.js +26 -0
- package/src/prompts.js +191 -0
- package/src/render.js +459 -0
- package/templates/CHANGELOG.md +21 -0
- package/templates/agents/arch-review.md +78 -0
- package/templates/agents/cpp-memory-review.md +84 -0
- package/templates/agents/proactive-correction.md +204 -0
- package/templates/agents/resource-sync.md +34 -0
- package/templates/rules/conflict_resolution.md +39 -0
- package/templates/rules/project_rule.md +210 -0
- package/templates/settings.json +27 -0
- package/templates/settings.local.json +5 -0
- package/templates/skills/code_review/SKILL.md +117 -0
- package/templates/skills/plan_mode/SKILL.md +92 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plan_mode
|
|
3
|
+
description: {{t "plan_mode.description"}}
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# {{t "plan_mode.title"}}
|
|
7
|
+
|
|
8
|
+
> {{t "plan_mode.trigger_title"}}
|
|
9
|
+
> 1. {{t "plan_mode.trigger_1"}}
|
|
10
|
+
> 2. {{t "plan_mode.trigger_2"}}
|
|
11
|
+
> 3. {{t "plan_mode.trigger_3"}}
|
|
12
|
+
> 4. {{t "plan_mode.trigger_4"}}
|
|
13
|
+
>
|
|
14
|
+
> {{t "plan_mode.skip"}}
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 1 {{t "plan_mode.plan_output_title"}}
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
## 📋 {{t "plan_mode.plan_output_header"}}
|
|
22
|
+
|
|
23
|
+
**{{t "plan_mode.plan_output_task"}}**:[{{t "plan_mode.plan_output_task_desc"}}]
|
|
24
|
+
**{{t "plan_mode.plan_output_modules"}}**:[{{t "plan_mode.plan_output_modules_list"}}]
|
|
25
|
+
**{{t "plan_mode.plan_output_files"}}**:[N]
|
|
26
|
+
**{{t "plan_mode.plan_output_rules"}}**:[{{t "plan_mode.plan_output_rules_list"}}]
|
|
27
|
+
|
|
28
|
+
### {{t "plan_mode.plan_output_steps"}}
|
|
29
|
+
|
|
30
|
+
| # | {{t "plan_mode.plan_output_col_action"}} | {{t "plan_mode.plan_output_col_target"}} | {{t "plan_mode.plan_output_col_dep"}} | {{t "plan_mode.plan_output_col_check"}} |
|
|
31
|
+
|---|------|-------------|------|--------|
|
|
32
|
+
| 1 | ... | ... | — | ... |
|
|
33
|
+
|
|
34
|
+
### ⚠️ {{t "plan_mode.plan_output_risks"}}
|
|
35
|
+
|
|
36
|
+
### ✅ {{t "plan_mode.plan_output_done_criteria"}}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 2 {{t "plan_mode.task_templates_title"}}
|
|
42
|
+
|
|
43
|
+
{{PLATFORM_SPECIFIC_TASK_TEMPLATES}}
|
|
44
|
+
|
|
45
|
+
{{#if HAS_NDK}}
|
|
46
|
+
|
|
47
|
+
### 2.N {{t "plan_mode.ndk_templates_title"}}
|
|
48
|
+
|
|
49
|
+
#### 2.N.1 {{t "plan_mode.ndk_new_jni_title"}}
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
{{t "plan_mode.ndk_new_jni_content"}}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
#### 2.N.2 {{t "plan_mode.ndk_new_sign_title"}}
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
{{t "plan_mode.ndk_new_sign_content"}}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
#### 2.N.3 {{t "plan_mode.ndk_update_whitelist_title"}}
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
{{t "plan_mode.ndk_update_whitelist_content"}}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
{{/if}}
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## 3 {{t "plan_mode.principles_title"}}
|
|
72
|
+
|
|
73
|
+
{{t "plan_mode.principles"}}
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## 4 {{t "plan_mode.collab_title"}}
|
|
78
|
+
|
|
79
|
+
{{t "plan_mode.collab_table_header"}}
|
|
80
|
+
|---------|-----------|
|
|
81
|
+
{{t "plan_mode.collab_new_page"}}
|
|
82
|
+
{{t "plan_mode.collab_perf"}}
|
|
83
|
+
{{t "plan_mode.collab_cross_module"}}
|
|
84
|
+
{{t "plan_mode.collab_post_gen"}}
|
|
85
|
+
{{#if HAS_NDK}}
|
|
86
|
+
| {{t "plan_mode.collab_ndk_new_jni"}} |
|
|
87
|
+
| {{t "plan_mode.collab_ndk_new_sign"}} |
|
|
88
|
+
| {{t "plan_mode.collab_ndk_update_whitelist"}} |
|
|
89
|
+
| {{t "plan_mode.collab_ndk_memory_opt"}} |
|
|
90
|
+
{{/if}}
|
|
91
|
+
|
|
92
|
+
{{t "plan_mode.checkpoint_note"}}
|