aigroup-workflow 1.1.4 → 1.1.5
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/cli/utils/scaffold.mjs +5 -1
- package/package.json +1 -1
package/cli/utils/scaffold.mjs
CHANGED
|
@@ -42,9 +42,11 @@ export const BASE_DIRS = [
|
|
|
42
42
|
'skills/max/workflow/entropy-management',
|
|
43
43
|
]
|
|
44
44
|
|
|
45
|
-
/** Hooks
|
|
45
|
+
/** Hooks 和通用命令(必装) */
|
|
46
46
|
export const HOOKS_FILES = [
|
|
47
47
|
'.claude/hooks.json',
|
|
48
|
+
'.claude/commands/init-project.md',
|
|
49
|
+
'.claude/commands/git-commit.md',
|
|
48
50
|
]
|
|
49
51
|
|
|
50
52
|
/** 角色资产 */
|
|
@@ -80,6 +82,8 @@ export const UPDATABLE_FILES = [
|
|
|
80
82
|
'.claude/commands/jarvis.md',
|
|
81
83
|
'.claude/commands/ella.md',
|
|
82
84
|
'.claude/commands/kyle.md',
|
|
85
|
+
'.claude/commands/init-project.md',
|
|
86
|
+
'.claude/commands/git-commit.md',
|
|
83
87
|
]
|
|
84
88
|
|
|
85
89
|
// ─── 文件操作 ───
|