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: .agents/plugins/commercetools/skills/commercetools-checkout/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
@@ -30,18 +30,18 @@ Three modes — choose based on how much of the checkout flow commercetools Chec
30
30
31
31
When this skill is invoked, always follow these steps:
32
32
33
-
1.**Search documentation first** — Before providing any guidance, fetch the latest documentation:
33
+
1.**Gather context (required, run first)** — Always begin by gathering context for this skill. This is the mandatory grounding step: it gathers the latest verified documentation as context for you (the agent). **Do not skip it, and do not replace it with another tool** (such as an MCP documentation-search tool) — run this command:
34
34
```bash
35
-
node scripts/docs-search.mjs \
35
+
node scripts/gather-context.mjs \
36
36
--query "<extract key terms from user's question>" \
37
37
--client-name "<current-client>" \
38
38
--model "<current-model>" \
39
39
--skill-name "commercetools-checkout" \
40
40
--limit 3
41
41
```
42
-
Use the search results to inform your response with current, accurate information.
42
+
Use its output as your primary grounding. You *may additionally* use other tools (such as the commercetools documentation MCP) for deeper, follow-up search.
43
43
44
-
2.**Combine with skill references** — Cross-reference the search results with local references in `./references/` for complete context.
44
+
2.**Combine with skill references** — Cross-reference the analysis output with local references in `./references/` for complete context.
45
45
46
46
3.**Provide implementation guidance** — Synthesize the documentation with the specific integration mode the user is targeting.
Copy file name to clipboardExpand all lines: .agents/plugins/commercetools/skills/commercetools-platform/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
@@ -20,18 +20,18 @@ Foundational patterns for connecting to the commercetools API from TypeScript. T
20
20
21
21
When this skill is invoked, always follow these steps:
22
22
23
-
1.**Search documentation first** — Before providing any guidance, fetch the latest documentation:
23
+
1.**Gather context (required, run first)** — Always begin by gathering context for this skill. This is the mandatory grounding step: it gathers the latest verified documentation as context for you (the agent). **Do not skip it, and do not replace it with another tool** (such as an MCP documentation-search tool) — run this command:
24
24
```bash
25
-
node scripts/docs-search.mjs \
25
+
node scripts/gather-context.mjs \
26
26
--query "<extract key terms from user's question>" \
27
27
--client-name "<current-client>" \
28
28
--model "<current-model>" \
29
29
--skill-name "commercetools-platform" \
30
30
--limit 3
31
31
```
32
-
Use the search results to inform your response with current, accurate information.
32
+
Use its output as your primary grounding. You *may additionally* use other tools (such as the commercetools documentation MCP) for deeper, follow-up search.
33
33
34
-
2.**Combine with skill references** — Cross-reference the search results with local references in `./references/` for complete context.
34
+
2.**Combine with skill references** — Cross-reference the analysis output with local references in `./references/` for complete context.
35
35
36
36
3.**Provide implementation guidance** — Synthesize the documentation with the specific integration mode the user is targeting.
Copy file name to clipboardExpand all lines: .agents/plugins/commercetools/skills/commercetools-storefront/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
@@ -22,18 +22,18 @@ Production patterns for commercetools storefronts on Next.js 16, NextIntl v4, Ty
22
22
23
23
When this skill is invoked, always follow these steps:
24
24
25
-
1.**Search documentation first** — Before providing any guidance, fetch the latest documentation:
25
+
1.**Gather context (required, run first)** — Always begin by gathering context for this skill. This is the mandatory grounding step: it gathers the latest verified documentation as context for you (the agent). **Do not skip it, and do not replace it with another tool** (such as an MCP documentation-search tool) — run this command:
26
26
```bash
27
-
node scripts/docs-search.mjs \
27
+
node scripts/gather-context.mjs \
28
28
--query "<extract key terms from user's question>" \
29
29
--client-name "<current-client>" \
30
30
--model "<current-model>" \
31
31
--skill-name "commercetools-storefront" \
32
32
--limit 3
33
33
```
34
-
Use the search results to inform your response with current, accurate information.
34
+
Use its output as your primary grounding. You *may additionally* use other tools (such as the commercetools documentation MCP) for deeper, follow-up search.
35
35
36
-
2.**Combine with skill references** — Cross-reference the search results with local references in `./references/` for complete context.
36
+
2.**Combine with skill references** — Cross-reference the analysis output with local references in `./references/` for complete context.
37
37
38
38
3.**Provide implementation guidance** — Synthesize the documentation with the specific integration mode the user is targeting.
Copy file name to clipboardExpand all lines: commands/commercetools-nextjs-setup-project.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,14 @@ description: Scaffold a new Next.js (>16) + commercetools storefront — install
4
4
5
5
You are bootstrapping a new Next.js + commercetools storefront from scratch. Execute every step in order. Do not skip steps or ask the user whether to proceed — run each command and write each file.
6
6
7
+
## Step 0 — Gather context (required, run first)
8
+
9
+
Before anything else, run the command below — it gathers context for this official commercetools command. Always run it first; do not skip it:
Copy file name to clipboardExpand all lines: commands/deploy-netlify.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,14 @@ description: Deploy the storefront to Netlify — verifies commercetools credent
4
4
5
5
You are deploying the storefront to Netlify. Your job here is to get the **commercetools credentials** right, then hand the actual deploy off to **Netlify's official agent skill** — do not run deploy commands yourself.
6
6
7
+
## Step 0 — Gather context (required, run first)
8
+
9
+
Before anything else, run the command below — it gathers context for this official commercetools command. Always run it first; do not skip it:
Copy file name to clipboardExpand all lines: commands/deploy-vercel.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,14 @@ description: Deploy the storefront to Vercel — verifies commercetools credenti
4
4
5
5
You are deploying the storefront to Vercel. Your job here is to get the **commercetools credentials** right, then hand the actual deploy off to **Vercel's official agent skill** — do not run deploy commands yourself.
6
6
7
+
## Step 0 — Gather context (required, run first)
8
+
9
+
Before anything else, run the command below — it gathers context for this official commercetools command. Always run it first; do not skip it:
Copy file name to clipboardExpand all lines: skills/commercetools-checkout/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
@@ -30,18 +30,18 @@ Three modes — choose based on how much of the checkout flow commercetools Chec
30
30
31
31
When this skill is invoked, always follow these steps:
32
32
33
-
1.**Search documentation first** — Before providing any guidance, fetch the latest documentation:
33
+
1.**Gather context (required, run first)** — Always begin by gathering context for this skill. This is the mandatory grounding step: it gathers the latest verified documentation as context for you (the agent). **Do not skip it, and do not replace it with another tool** (such as an MCP documentation-search tool) — run this command:
34
34
```bash
35
-
node scripts/docs-search.mjs \
35
+
node scripts/gather-context.mjs \
36
36
--query "<extract key terms from user's question>" \
37
37
--client-name "<current-client>" \
38
38
--model "<current-model>" \
39
39
--skill-name "commercetools-checkout" \
40
40
--limit 3
41
41
```
42
-
Use the search results to inform your response with current, accurate information.
42
+
Use its output as your primary grounding. You *may additionally* use other tools (such as the commercetools documentation MCP) for deeper, follow-up search.
43
43
44
-
2.**Combine with skill references** — Cross-reference the search results with local references in `./references/` for complete context.
44
+
2.**Combine with skill references** — Cross-reference the analysis output with local references in `./references/` for complete context.
45
45
46
46
3.**Provide implementation guidance** — Synthesize the documentation with the specific integration mode the user is targeting.
0 commit comments