Skip to content

Commit e7c52e5

Browse files
updates to docs
1 parent 226ac97 commit e7c52e5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

integrations/skills.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@ They work with Cursor, Claude Code, Codex, and 30+ other agents that support the
99

1010
## Available skills
1111

12-
<CardGroup cols={2}>
12+
<CardGroup cols={3}>
1313
<Card title="zeroeval-install" icon="download">
1414
Installs the SDK (Python or TypeScript), verifies your first trace, migrates prompts to `ze.prompt`, and recommends starter judges.
1515
</Card>
1616
<Card title="create-judge" icon="gavel">
1717
Helps you pick an evaluation type (binary or scored), write a judge template, define criteria, and create the judge via dashboard or API.
1818
</Card>
19+
<Card title="prompt-migration" icon="arrows-rotate">
20+
Migrates hardcoded prompts to `ze.prompt`, wires feedback collection, connects judges, and walks through the staged rollout to prompt optimization.
21+
</Card>
1922
</CardGroup>
2023

2124
## Install
@@ -40,6 +43,7 @@ npx skills add zeroeval/zeroeval-skills --list
4043
# Install a specific plugin
4144
/plugin install zeroeval-install@zeroeval-skills
4245
/plugin install create-judge@zeroeval-skills
46+
/plugin install prompt-migration@zeroeval-skills
4347

4448
# Reload plugins if the new commands do not appear immediately
4549
/reload-plugins
@@ -52,11 +56,13 @@ git clone https://github.com/zeroeval/zeroeval-skills.git
5256
mkdir -p .cursor/skills
5357
cp -r zeroeval-skills/skills/zeroeval-install .cursor/skills/zeroeval-install
5458
cp -r zeroeval-skills/skills/create-judge .cursor/skills/create-judge
59+
cp -r zeroeval-skills/skills/prompt-migration .cursor/skills/prompt-migration
5560

5661
# Claude Code
5762
mkdir -p .claude/skills
5863
cp -r zeroeval-skills/skills/zeroeval-install .claude/skills/zeroeval-install
5964
cp -r zeroeval-skills/skills/create-judge .claude/skills/create-judge
65+
cp -r zeroeval-skills/skills/prompt-migration .claude/skills/prompt-migration
6066
```
6167

6268
</CodeGroup>
@@ -77,7 +83,7 @@ The [zeroeval-skills GitHub repo](https://github.com/zeroeval/zeroeval-skills) h
7783

7884
## After installation
7985

80-
Once installed, your coding agent picks up the skills automatically. Ask it to "set up zeroeval" or "create a judge" and it will use them.
86+
Once installed, your coding agent picks up the skills automatically. Ask it to "set up zeroeval", "create a judge", or "migrate my prompts to ze.prompt" and it will use them.
8187

8288
If you want to read the product docs directly:
8389

0 commit comments

Comments
 (0)