You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/create-project/SKILL.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Scaffold a new Dart or Flutter project using Very Good CLI templates.
13
13
14
14
## Core Standards
15
15
16
-
-**Use the Very Good CLI MCP server**— use `mcp__very-good-cli__create` and `mcp__very-good-cli__packages_get`to scaffold projects and install dependencies
16
+
-**Use the Very Good CLI MCP server** to scaffold projects and install dependencies
17
17
-**Infer the template from context** — determine the right template based on what the user wants to build, not by asking them to pick a subcommand name
18
18
-**Use `AskUserQuestion` only for information you cannot infer** — project name and organization are the most common missing pieces
19
19
-**Install dependencies after creation**
@@ -24,7 +24,7 @@ Scaffold a new Dart or Flutter project using Very Good CLI templates.
24
24
25
25
### Step 1: Understand What the User Wants to Build
26
26
27
-
Infer the subcommand from the user's description — the available subcommands and their descriptions are defined by the `mcp__very-good-cli__create` tool. Do NOT ask users to pick a subcommand name — figure it out from context.
27
+
Infer the subcommand from the user's description — the available subcommands and their descriptions are defined by the Very Good CLI MCP server. Do NOT ask users to pick a subcommand name — figure it out from context.
28
28
29
29
If the intent is ambiguous, use `AskUserQuestion` to clarify with a high-level question about what they're building — not which subcommand they want.
30
30
@@ -34,8 +34,8 @@ Use `AskUserQuestion` to collect only what you cannot infer. Batch questions int
34
34
35
35
### Step 3: Create and Set Up
36
36
37
-
1. Create the project using `mcp__very-good-cli__create`
38
-
2. Install dependencies using `mcp__very-good-cli__packages_get`
37
+
1. Create the project using the Very Good CLI MCP server
38
+
2. Install dependencies using the Very Good CLI MCP server
0 commit comments