@uoyo/mvtt 2.0.0-beta.0 → 2.0.0-beta.2
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/LICENSE +21 -21
- package/README.md +194 -209
- package/dist/build/assembler.d.ts.map +1 -1
- package/dist/build/assembler.js +2 -0
- package/dist/build/assembler.js.map +1 -1
- package/dist/build/plan-validator.d.ts +26 -0
- package/dist/build/plan-validator.d.ts.map +1 -0
- package/dist/build/plan-validator.js +225 -0
- package/dist/build/plan-validator.js.map +1 -0
- package/dist/build/section-loader.d.ts.map +1 -1
- package/dist/build/section-loader.js +45 -9
- package/dist/build/section-loader.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +2 -11
- package/dist/cli.js.map +1 -1
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +0 -1
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/install.d.ts +1 -4
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/install.js +18 -14
- package/dist/commands/install.js.map +1 -1
- package/dist/commands/migrate.d.ts +16 -0
- package/dist/commands/migrate.d.ts.map +1 -0
- package/dist/commands/migrate.js +118 -0
- package/dist/commands/migrate.js.map +1 -0
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/commands/update.js +35 -2
- package/dist/commands/update.js.map +1 -1
- package/dist/fs/core-manifest.d.ts +17 -0
- package/dist/fs/core-manifest.d.ts.map +1 -0
- package/dist/fs/core-manifest.js +76 -0
- package/dist/fs/core-manifest.js.map +1 -0
- package/dist/fs/install-manifest.d.ts +1 -2
- package/dist/fs/install-manifest.d.ts.map +1 -1
- package/dist/fs/install-manifest.js +1 -2
- package/dist/fs/install-manifest.js.map +1 -1
- package/dist/fs/materialize.d.ts.map +1 -1
- package/dist/fs/materialize.js +23 -3
- package/dist/fs/materialize.js.map +1 -1
- package/dist/types/core-manifest.d.ts +12 -0
- package/dist/types/core-manifest.d.ts.map +1 -0
- package/dist/types/core-manifest.js +2 -0
- package/dist/types/core-manifest.js.map +1 -0
- package/dist/types/registry.d.ts +13 -5
- package/dist/types/registry.d.ts.map +1 -1
- package/install-manifest.yaml +31 -27
- package/package.json +57 -57
- package/registry.yaml +198 -209
- package/sources/defaults/config.yaml +27 -30
- package/sources/defaults/project-context.yaml +15 -26
- package/sources/defaults/session.yaml +31 -23
- package/sources/knowledge/core/manifest.yaml +4 -45
- package/sources/sections/activation-load-config.md +11 -5
- package/sources/sections/activation-load-context.md +26 -11
- package/sources/sections/activation-preflight.md +14 -4
- package/sources/sections/footer-next-steps.md +35 -9
- package/sources/sections/output-language-constraint.md +11 -0
- package/sources/sections/role-header.md +13 -13
- package/sources/sections/session-update.md +47 -0
- package/sources/skills/mvt-analyze/business.md +69 -33
- package/sources/skills/mvt-analyze/manifest.yaml +90 -89
- package/sources/skills/mvt-analyze-code/business.md +82 -35
- package/sources/skills/mvt-analyze-code/manifest.yaml +96 -88
- package/sources/skills/mvt-bug-detect/business.md +101 -0
- package/sources/skills/mvt-bug-detect/manifest.yaml +84 -0
- package/sources/skills/mvt-check-context/business.md +89 -42
- package/sources/skills/mvt-check-context/manifest.yaml +63 -74
- package/sources/skills/mvt-cleanup/business.md +80 -31
- package/sources/skills/mvt-cleanup/manifest.yaml +85 -93
- package/sources/skills/mvt-config/business.md +94 -26
- package/sources/skills/mvt-config/manifest.yaml +96 -108
- package/sources/skills/mvt-create-skill/business.md +231 -111
- package/sources/skills/mvt-create-skill/manifest.yaml +91 -79
- package/sources/skills/mvt-design/business.md +116 -34
- package/sources/skills/mvt-design/manifest.yaml +96 -105
- package/sources/skills/mvt-fix/business.md +132 -28
- package/sources/skills/mvt-fix/manifest.yaml +85 -86
- package/sources/skills/mvt-help/business.md +74 -70
- package/sources/skills/mvt-help/manifest.yaml +67 -61
- package/sources/skills/mvt-implement/business.md +91 -32
- package/sources/skills/mvt-implement/manifest.yaml +80 -96
- package/sources/skills/mvt-init/business.md +164 -49
- package/sources/skills/mvt-init/manifest.yaml +101 -93
- package/sources/skills/mvt-manage-context/business.md +175 -0
- package/sources/skills/mvt-manage-context/manifest.yaml +123 -0
- package/sources/skills/mvt-plan-dev/business.md +75 -0
- package/sources/skills/mvt-plan-dev/manifest.yaml +91 -0
- package/sources/skills/mvt-quick-dev/business.md +99 -0
- package/sources/skills/mvt-quick-dev/manifest.yaml +69 -0
- package/sources/skills/mvt-refactor/business.md +104 -33
- package/sources/skills/mvt-refactor/manifest.yaml +86 -101
- package/sources/skills/mvt-resume/business.md +137 -0
- package/sources/skills/mvt-resume/manifest.yaml +71 -0
- package/sources/skills/mvt-review/business.md +112 -49
- package/sources/skills/mvt-review/manifest.yaml +87 -106
- package/sources/skills/mvt-status/business.md +71 -24
- package/sources/skills/mvt-status/manifest.yaml +66 -74
- package/sources/skills/mvt-sync-context/business.md +150 -25
- package/sources/skills/mvt-sync-context/manifest.yaml +96 -84
- package/sources/skills/mvt-template/business.md +96 -49
- package/sources/skills/mvt-template/manifest.yaml +63 -71
- package/sources/skills/mvt-test/business.md +104 -36
- package/sources/skills/mvt-test/manifest.yaml +102 -111
- package/sources/skills/mvt-update-plan/business.md +72 -0
- package/sources/skills/mvt-update-plan/manifest.yaml +132 -0
- package/sources/templates/analyze-output/body.md +15 -38
- package/sources/templates/analyze-output/manifest.yaml +11 -11
- package/sources/templates/design-output/body.md +17 -50
- package/sources/templates/design-output/manifest.yaml +11 -11
- package/sources/templates/implement-output/body.md +11 -32
- package/sources/templates/implement-output/manifest.yaml +11 -11
- package/sources/templates/project-context/body.md +13 -0
- package/sources/templates/project-context/manifest.yaml +12 -0
- package/sources/templates/review-output/body.md +11 -45
- package/sources/templates/review-output/manifest.yaml +11 -11
- package/sources/templates/test-output/body.md +7 -31
- package/sources/templates/test-output/manifest.yaml +11 -11
- package/dist/fs/protection.d.ts +0 -15
- package/dist/fs/protection.d.ts.map +0 -1
- package/dist/fs/protection.js +0 -16
- package/dist/fs/protection.js.map +0 -1
- package/sources/knowledge/core/review-principles.md +0 -51
- package/sources/knowledge/patterns/clean-architecture/manifest.yaml +0 -66
- package/sources/knowledge/patterns/clean-architecture/review-checklist.md +0 -230
- package/sources/knowledge/patterns/ddd/manifest.yaml +0 -83
- package/sources/knowledge/patterns/ddd/review-checklist.md +0 -226
- package/sources/knowledge/patterns/ddd/tactical-patterns.md +0 -12
- package/sources/knowledge/patterns/frontend-react/manifest.yaml +0 -44
- package/sources/knowledge/patterns/frontend-react/review-checklist.md +0 -78
- package/sources/knowledge/patterns/manifest.yaml +0 -113
- package/sources/skills/mvt-add-context/business.md +0 -47
- package/sources/skills/mvt-add-context/manifest.yaml +0 -83
- package/sources/templates/analyze-code-output/body.md +0 -44
- package/sources/templates/analyze-code-output/manifest.yaml +0 -11
- package/sources/templates/cleanup-output/body.md +0 -9
- package/sources/templates/cleanup-output/manifest.yaml +0 -11
- package/sources/templates/config-output/body.md +0 -11
- package/sources/templates/config-output/manifest.yaml +0 -11
- package/sources/templates/context-check-output/body.md +0 -32
- package/sources/templates/context-check-output/manifest.yaml +0 -11
- package/sources/templates/fix-output/body.md +0 -30
- package/sources/templates/fix-output/manifest.yaml +0 -11
- package/sources/templates/init-output/body.md +0 -34
- package/sources/templates/init-output/manifest.yaml +0 -11
- package/sources/templates/refactor-output/body.md +0 -32
- package/sources/templates/refactor-output/manifest.yaml +0 -11
- package/sources/templates/status-output/body.md +0 -36
- package/sources/templates/status-output/manifest.yaml +0 -11
- package/sources/templates/sync-context-output/body.md +0 -16
- package/sources/templates/sync-context-output/manifest.yaml +0 -11
package/package.json
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@uoyo/mvtt",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
4
|
-
"description": "My Virtual Tech Team - AI-guided prompt orchestration framework",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"mvtt": "
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist/",
|
|
11
|
-
"sources/",
|
|
12
|
-
"registry.yaml",
|
|
13
|
-
"install-manifest.yaml"
|
|
14
|
-
],
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=18.0.0"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"ai",
|
|
20
|
-
"agents",
|
|
21
|
-
"prompt-engineering",
|
|
22
|
-
"claude-code",
|
|
23
|
-
"cli",
|
|
24
|
-
"orchestration"
|
|
25
|
-
],
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "git+https://github.com/uoyoCsharp/My-Virtual-TechTeam.git"
|
|
29
|
-
},
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/uoyoCsharp/My-Virtual-TechTeam/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/uoyoCsharp/My-Virtual-TechTeam#readme",
|
|
34
|
-
"publishConfig": {
|
|
35
|
-
"access": "public"
|
|
36
|
-
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "tsc -p tsconfig.build.json",
|
|
39
|
-
"test": "vitest run",
|
|
40
|
-
"test:watch": "vitest",
|
|
41
|
-
"test:coverage": "vitest run --coverage",
|
|
42
|
-
"prepublishOnly": "npm run build && npm test"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@types/node": "^25.6.0",
|
|
46
|
-
"@types/prompts": "^2.4.9",
|
|
47
|
-
"@vitest/coverage-v8": "^2.1.9",
|
|
48
|
-
"typescript": "^5.4.0",
|
|
49
|
-
"vitest": "^2.0.0"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"commander": "^14.0.3",
|
|
53
|
-
"prompts": "^2.4.2",
|
|
54
|
-
"yaml": "^2.4.0"
|
|
55
|
-
},
|
|
56
|
-
"license": "MIT"
|
|
57
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@uoyo/mvtt",
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
|
+
"description": "My Virtual Tech Team - AI-guided prompt orchestration framework",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mvtt": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/",
|
|
11
|
+
"sources/",
|
|
12
|
+
"registry.yaml",
|
|
13
|
+
"install-manifest.yaml"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18.0.0"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"ai",
|
|
20
|
+
"agents",
|
|
21
|
+
"prompt-engineering",
|
|
22
|
+
"claude-code",
|
|
23
|
+
"cli",
|
|
24
|
+
"orchestration"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/uoyoCsharp/My-Virtual-TechTeam.git"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/uoyoCsharp/My-Virtual-TechTeam/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/uoyoCsharp/My-Virtual-TechTeam#readme",
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc -p tsconfig.build.json",
|
|
39
|
+
"test": "vitest run",
|
|
40
|
+
"test:watch": "vitest",
|
|
41
|
+
"test:coverage": "vitest run --coverage",
|
|
42
|
+
"prepublishOnly": "npm run build && npm test"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^25.6.0",
|
|
46
|
+
"@types/prompts": "^2.4.9",
|
|
47
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
48
|
+
"typescript": "^5.4.0",
|
|
49
|
+
"vitest": "^2.0.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"commander": "^14.0.3",
|
|
53
|
+
"prompts": "^2.4.2",
|
|
54
|
+
"yaml": "^2.4.0"
|
|
55
|
+
},
|
|
56
|
+
"license": "MIT"
|
|
57
|
+
}
|
package/registry.yaml
CHANGED
|
@@ -1,209 +1,198 @@
|
|
|
1
|
-
# MVTT Framework Registry (v2)
|
|
2
|
-
# Single source of truth for skill metadata
|
|
3
|
-
# and at runtime by /mvt-status and /mvt-help.
|
|
4
|
-
|
|
5
|
-
version: "2.0"
|
|
6
|
-
last_updated: "2026-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
# --- Analyst Skills ---
|
|
64
|
-
mvt-analyze:
|
|
65
|
-
agent: analyst
|
|
66
|
-
description: "Analyze requirements documents and extract domain concepts"
|
|
67
|
-
path: .claude/skills/mvt-analyze/SKILL.md
|
|
68
|
-
template: .ai-agents/skills/_templates/analyze-output.md
|
|
69
|
-
category: workflow
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
depends_on: []
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
depends_on: []
|
|
200
|
-
|
|
201
|
-
mvt-template:
|
|
202
|
-
agent: conductor
|
|
203
|
-
description: "View, customize, and manage output templates for MVTT skills"
|
|
204
|
-
path: .claude/skills/mvt-template/SKILL.md
|
|
205
|
-
template: null
|
|
206
|
-
category: utility
|
|
207
|
-
mode: independent
|
|
208
|
-
phase: null
|
|
209
|
-
depends_on: []
|
|
1
|
+
# MVTT Framework Registry (v2)
|
|
2
|
+
# Single source of truth for skill metadata and knowledge declarations.
|
|
3
|
+
# Consumed at build-time by mvtt CLI and at runtime by /mvt-status and /mvt-help.
|
|
4
|
+
|
|
5
|
+
version: "2.0"
|
|
6
|
+
last_updated: "2026-05-23"
|
|
7
|
+
|
|
8
|
+
# ============================================================
|
|
9
|
+
# Shared Knowledge
|
|
10
|
+
# Loaded by ALL skills at execution time.
|
|
11
|
+
# Managed by /mvt-manage-context (user selects "shared") and /mvt-init (project-context).
|
|
12
|
+
# Reviewed by /mvt-config and /mvt-check-context.
|
|
13
|
+
# ============================================================
|
|
14
|
+
knowledge:
|
|
15
|
+
shared:
|
|
16
|
+
- id: "core"
|
|
17
|
+
source: "knowledge/core/"
|
|
18
|
+
files_from_manifest: true
|
|
19
|
+
- id: "project-context"
|
|
20
|
+
source: "knowledge/project/_generated/"
|
|
21
|
+
files: ["project-context.md"]
|
|
22
|
+
|
|
23
|
+
# ============================================================
|
|
24
|
+
# Skills
|
|
25
|
+
# ============================================================
|
|
26
|
+
skills:
|
|
27
|
+
# --- Conductor Skills ---
|
|
28
|
+
mvt-init:
|
|
29
|
+
agent: conductor
|
|
30
|
+
description: "Initialize or refresh a project by scanning its structure, detecting tech stack, and inferring project type. This skill should be used when starting a new project, re-initializing after structural changes, or setting up the MVTT workspace."
|
|
31
|
+
path: .claude/skills/mvt-init/SKILL.md
|
|
32
|
+
template: null
|
|
33
|
+
category: project
|
|
34
|
+
|
|
35
|
+
mvt-status:
|
|
36
|
+
agent: conductor
|
|
37
|
+
description: "Display current project and workflow status including skill history, active changes, and session state. This skill should be used when user wants to check project status, review workflow progress, or see where they are in the development cycle."
|
|
38
|
+
path: .claude/skills/mvt-status/SKILL.md
|
|
39
|
+
template: null
|
|
40
|
+
category: project
|
|
41
|
+
|
|
42
|
+
mvt-config:
|
|
43
|
+
agent: conductor
|
|
44
|
+
description: "Manage MVTT framework configuration interactively. This skill should be used when user wants to change language, output format, or other framework settings."
|
|
45
|
+
path: .claude/skills/mvt-config/SKILL.md
|
|
46
|
+
template: null
|
|
47
|
+
category: project
|
|
48
|
+
|
|
49
|
+
mvt-sync-context:
|
|
50
|
+
agent: conductor
|
|
51
|
+
description: "Synchronize workspace context with code changes after manual modifications or git operations. This skill should be used when context appears out of sync with code, after manual edits outside the workflow, or after git merge/rebase."
|
|
52
|
+
path: .claude/skills/mvt-sync-context/SKILL.md
|
|
53
|
+
template: null
|
|
54
|
+
category: project
|
|
55
|
+
|
|
56
|
+
mvt-cleanup:
|
|
57
|
+
agent: conductor
|
|
58
|
+
description: "Clean up workspace artifacts, summarize completed changes, and maintain workspace health. This skill should be used when workspace has accumulated old artifacts, token footprint needs reduction, or to archive completed change records."
|
|
59
|
+
path: .claude/skills/mvt-cleanup/SKILL.md
|
|
60
|
+
template: null
|
|
61
|
+
category: project
|
|
62
|
+
|
|
63
|
+
# --- Analyst Skills ---
|
|
64
|
+
mvt-analyze:
|
|
65
|
+
agent: analyst
|
|
66
|
+
description: "Analyze requirements documents and extract domain concepts. This skill should be used when user wants to analyze requirements, extract features and business rules, or start the analysis phase of a development workflow."
|
|
67
|
+
path: .claude/skills/mvt-analyze/SKILL.md
|
|
68
|
+
template: .ai-agents/skills/_templates/analyze-output.md
|
|
69
|
+
category: workflow
|
|
70
|
+
|
|
71
|
+
mvt-analyze-code:
|
|
72
|
+
agent: analyst
|
|
73
|
+
description: "Analyze existing code to generate project-context.md with terms, modules, layers, and business rules. This skill should be used when user wants to understand an existing codebase, generate documentation for legacy code, onboard to a new project, or extract requirements from source code."
|
|
74
|
+
path: .claude/skills/mvt-analyze-code/SKILL.md
|
|
75
|
+
template: .ai-agents/skills/_templates/project-context.md
|
|
76
|
+
category: workflow
|
|
77
|
+
|
|
78
|
+
# --- Architect Skills ---
|
|
79
|
+
mvt-design:
|
|
80
|
+
agent: architect
|
|
81
|
+
description: "Create architecture design based on analyzed requirements. This skill should be used when user wants to design system architecture, define module structure, or create technical blueprints for implementation."
|
|
82
|
+
path: .claude/skills/mvt-design/SKILL.md
|
|
83
|
+
template: .ai-agents/skills/_templates/design-output.md
|
|
84
|
+
category: workflow
|
|
85
|
+
depends_on: [mvt-analyze]
|
|
86
|
+
|
|
87
|
+
mvt-plan-dev:
|
|
88
|
+
agent: architect
|
|
89
|
+
description: "Generate a structured development plan (plan.yaml) for a large change so progress can be tracked across sessions. This skill should be used after /mvt-design when a change is too big to implement in one pass and needs task-level tracking."
|
|
90
|
+
path: .claude/skills/mvt-plan-dev/SKILL.md
|
|
91
|
+
template: null
|
|
92
|
+
category: workflow
|
|
93
|
+
depends_on: [mvt-analyze]
|
|
94
|
+
|
|
95
|
+
mvt-update-plan:
|
|
96
|
+
agent: architect
|
|
97
|
+
description: "Update a single task in the active change's plan.yaml: change status, attach artifacts, leave notes, and auto-advance current_task. This skill should be used after a workflow skill finishes work that maps to a plan task."
|
|
98
|
+
path: .claude/skills/mvt-update-plan/SKILL.md
|
|
99
|
+
template: null
|
|
100
|
+
category: project
|
|
101
|
+
|
|
102
|
+
# --- Developer Skills ---
|
|
103
|
+
mvt-bug-detect:
|
|
104
|
+
agent: analyst
|
|
105
|
+
description: "Analyze and detect bugs by investigating root cause, assessing severity and impact scope. Produces a structured diagnosis in conversation without applying fixes. This skill should be used when user suspects a bug, wants to understand a problem before fixing, or needs impact analysis."
|
|
106
|
+
path: .claude/skills/mvt-bug-detect/SKILL.md
|
|
107
|
+
template: null
|
|
108
|
+
category: shortcut
|
|
109
|
+
mvt-implement:
|
|
110
|
+
agent: developer
|
|
111
|
+
description: "Implement features based on architecture design. This skill should be used when user wants to implement a feature, write production code, or translate design blueprints into working code."
|
|
112
|
+
path: .claude/skills/mvt-implement/SKILL.md
|
|
113
|
+
template: .ai-agents/skills/_templates/implement-output.md
|
|
114
|
+
category: workflow
|
|
115
|
+
depends_on: [mvt-design]
|
|
116
|
+
|
|
117
|
+
mvt-fix:
|
|
118
|
+
agent: developer
|
|
119
|
+
description: "Diagnose and fix bugs or issues in the codebase. This skill should be used when user reports a bug, encounters an error, or wants to diagnose and resolve an issue."
|
|
120
|
+
path: .claude/skills/mvt-fix/SKILL.md
|
|
121
|
+
template: null
|
|
122
|
+
category: shortcut
|
|
123
|
+
|
|
124
|
+
mvt-refactor:
|
|
125
|
+
agent: developer
|
|
126
|
+
description: "Refactor existing code while preserving behavior. This skill should be used when user wants to improve code structure, rename symbols, extract methods or classes, or reorganize code without changing functionality."
|
|
127
|
+
path: .claude/skills/mvt-refactor/SKILL.md
|
|
128
|
+
template: null
|
|
129
|
+
category: shortcut
|
|
130
|
+
|
|
131
|
+
mvt-quick-dev:
|
|
132
|
+
agent: developer
|
|
133
|
+
description: "Quickly implement simple, well-scoped changes without the full analyze-design-implement workflow. This skill should be used when the change is small (1-3 files), architecturally neutral, and clearly specified — such as adding a field, fixing a label, adjusting config, or making a targeted enhancement."
|
|
134
|
+
path: .claude/skills/mvt-quick-dev/SKILL.md
|
|
135
|
+
template: null
|
|
136
|
+
category: shortcut
|
|
137
|
+
|
|
138
|
+
# --- Reviewer Skills ---
|
|
139
|
+
mvt-review:
|
|
140
|
+
agent: reviewer
|
|
141
|
+
description: "Perform code review for quality, standards compliance, and best practices. This skill should be used when user wants code reviewed, quality checked, or to identify issues before merging."
|
|
142
|
+
path: .claude/skills/mvt-review/SKILL.md
|
|
143
|
+
template: .ai-agents/skills/_templates/review-output.md
|
|
144
|
+
category: workflow
|
|
145
|
+
depends_on: [mvt-implement]
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
# --- Tester Skills ---
|
|
149
|
+
mvt-test:
|
|
150
|
+
agent: tester
|
|
151
|
+
description: "Generate and design tests to validate implementations. This skill should be used when user wants to write tests, validate code, generate test cases, or analyze test coverage."
|
|
152
|
+
path: .claude/skills/mvt-test/SKILL.md
|
|
153
|
+
template: .ai-agents/skills/_templates/test-output.md
|
|
154
|
+
category: workflow
|
|
155
|
+
depends_on: [mvt-implement]
|
|
156
|
+
|
|
157
|
+
# --- Utility Skills ---
|
|
158
|
+
mvt-help:
|
|
159
|
+
agent: conductor
|
|
160
|
+
description: "Show available skills, current project status, and workflow guidance. This skill should be used when user is new to MVTT, wants to discover available commands, or needs guidance on what to do next."
|
|
161
|
+
path: .claude/skills/mvt-help/SKILL.md
|
|
162
|
+
template: null
|
|
163
|
+
category: utility
|
|
164
|
+
|
|
165
|
+
mvt-resume:
|
|
166
|
+
agent: conductor
|
|
167
|
+
description: "Resume an in-progress development task in a new conversation. Reads session.yaml (active_change, skill_history, recent_actions) and recent artifacts to reconstruct context. Does not read git state."
|
|
168
|
+
path: .claude/skills/mvt-resume/SKILL.md
|
|
169
|
+
template: null
|
|
170
|
+
category: utility
|
|
171
|
+
|
|
172
|
+
mvt-create-skill:
|
|
173
|
+
agent: conductor
|
|
174
|
+
description: "Create custom MVTT skills through interactive guided workflow. This skill should be used when user wants to create a new skill, extend the framework with custom functionality, or build project-specific automation."
|
|
175
|
+
path: .claude/skills/mvt-create-skill/SKILL.md
|
|
176
|
+
template: null
|
|
177
|
+
category: utility
|
|
178
|
+
|
|
179
|
+
mvt-manage-context:
|
|
180
|
+
agent: conductor
|
|
181
|
+
description: "Unified entry point for managing knowledge and registry. Supports subcommands: add (with AI routing), remove, move, rename, list. Use this skill instead of mvt-add-context."
|
|
182
|
+
path: .claude/skills/mvt-manage-context/SKILL.md
|
|
183
|
+
template: null
|
|
184
|
+
category: utility
|
|
185
|
+
|
|
186
|
+
mvt-check-context:
|
|
187
|
+
agent: conductor
|
|
188
|
+
description: "Analyze context token load and provide optimization recommendations. This skill should be used when user wants to check how much context MVTT loads, identify large files, or optimize workspace size for better performance."
|
|
189
|
+
path: .claude/skills/mvt-check-context/SKILL.md
|
|
190
|
+
template: null
|
|
191
|
+
category: utility
|
|
192
|
+
|
|
193
|
+
mvt-template:
|
|
194
|
+
agent: conductor
|
|
195
|
+
description: "View, customize, and manage output templates for MVTT skills. This skill should be used when user wants to inspect available templates, create custom template versions, reset customizations, or export templates."
|
|
196
|
+
path: .claude/skills/mvt-template/SKILL.md
|
|
197
|
+
template: null
|
|
198
|
+
category: utility
|
|
@@ -1,30 +1,27 @@
|
|
|
1
|
-
# MVTT Framework - User Configuration
|
|
2
|
-
# Unified config center: all skills read and enforce these settings via Activation Protocol
|
|
3
|
-
# Modify via: /mvt-config or edit directly
|
|
4
|
-
|
|
5
|
-
version: "2.0"
|
|
6
|
-
|
|
7
|
-
# ============================================================
|
|
8
|
-
# User Preferences (enforced by Activation Protocol Step 2)
|
|
9
|
-
# ============================================================
|
|
10
|
-
preferences:
|
|
11
|
-
#
|
|
12
|
-
# Options: en-US, zh-CN
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
#
|
|
21
|
-
|
|
22
|
-
#
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
#
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
selection:
|
|
29
|
-
auto_detect: true
|
|
30
|
-
confirm_with_user: true
|
|
1
|
+
# MVTT Framework - User Configuration
|
|
2
|
+
# Unified config center: all skills read and enforce these settings via Activation Protocol
|
|
3
|
+
# Modify via: /mvt-config or edit directly
|
|
4
|
+
|
|
5
|
+
version: "2.0"
|
|
6
|
+
|
|
7
|
+
# ============================================================
|
|
8
|
+
# User Preferences (enforced by Activation Protocol Step 2)
|
|
9
|
+
# ============================================================
|
|
10
|
+
preferences:
|
|
11
|
+
# Language used for interactive responses (chat replies, prompts, tables shown to the user)
|
|
12
|
+
# Options: en-US, zh-CN
|
|
13
|
+
interaction_language: en-US
|
|
14
|
+
|
|
15
|
+
# Language used for persistent document output (artifacts, project-context.md, generated reports)
|
|
16
|
+
# If absent, falls back to interaction_language.
|
|
17
|
+
# Options: en-US, zh-CN
|
|
18
|
+
document_output_language: en-US
|
|
19
|
+
|
|
20
|
+
# Output style
|
|
21
|
+
output:
|
|
22
|
+
no_emojis: true # Disable emojis in output
|
|
23
|
+
data_format: yaml # Data output format: yaml | json
|
|
24
|
+
|
|
25
|
+
# AI routing for /mvt-manage-context add
|
|
26
|
+
context_routing:
|
|
27
|
+
relevance_threshold: 70 # Skills scored >= this are pre-checked; below are folded
|
|
@@ -1,26 +1,15 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
|
|
4
|
-
project:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
features: []
|
|
17
|
-
actors: []
|
|
18
|
-
business_rules: []
|
|
19
|
-
clarifications: []
|
|
20
|
-
|
|
21
|
-
# Architecture design (written by #design)
|
|
22
|
-
architecture:
|
|
23
|
-
overview: ""
|
|
24
|
-
modules: []
|
|
25
|
-
components: []
|
|
26
|
-
decisions: [] # ADR list (merged from former decisions.yaml)
|
|
1
|
+
# Project Context Index
|
|
2
|
+
# Lean index: structural info only. Semantic data lives in project-context.md.
|
|
3
|
+
# Single project: one entry with name="default", path="."
|
|
4
|
+
# Multi-project: one entry per detected sub-project.
|
|
5
|
+
|
|
6
|
+
projects:
|
|
7
|
+
- name: "default" # Project identifier (unique within workspace)
|
|
8
|
+
path: "." # Relative path from repo root
|
|
9
|
+
type: "" # web-frontend | api-service | cli-tool | library | monorepo | data-pipeline | mobile-app | generic
|
|
10
|
+
tech_stack:
|
|
11
|
+
primary_language: ""
|
|
12
|
+
secondary_languages: []
|
|
13
|
+
framework: ""
|
|
14
|
+
build_tool: ""
|
|
15
|
+
test_framework: ""
|