Skip to content

Commit a6c1fa2

Browse files
authored
Merge pull request #2649 from A-Vamshi/skills-fix
Skills fix
2 parents 65bce3e + b0edecf commit a6c1fa2

3 files changed

Lines changed: 26 additions & 25 deletions

File tree

skills/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,22 @@ applications using eval results.
1212

1313
## Installation
1414

15+
### For Claude.ai (Web)
16+
17+
1. Download the `skills/deepeval` folder from this repository.
18+
2. Zip the folder.
19+
3. In Claude.ai, navigate to **Settings > Capabilities > Skills**.
20+
4. Click **Upload skill** and select your zipped folder.
21+
22+
### For Claude Code (Local CLI)
23+
24+
Download or clone the `skills/deepeval` folder inside the skills folder and place it directly into your local project's skills directory:
25+
26+
```bash
27+
mkdir -p .claude/skills/
28+
cp -r path/to/downloaded/deepeval .claude/skills/
29+
```
30+
1531
### Cursor Plugin
1632

1733
This repository includes a Cursor plugin manifest that points to `./skills/`.

skills/deepeval/README.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

skills/deepeval/SKILL.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ Use this skill to add an end-to-end eval loop to AI applications:
2727
instrument the app, generate or reuse a dataset, create a committed pytest eval
2828
suite, run evals, and iterate on failures.
2929

30+
## Workflow Summary
31+
32+
1. Inspect the target app and existing DeepEval usage.
33+
2. Ask the required intake questions.
34+
3. Reuse existing metrics and datasets when available.
35+
4. Generate or import goldens.
36+
5. Add minimal tracing and a pytest eval suite.
37+
6. Run `deepeval test run`.
38+
7. Iterate for the requested number of rounds, defaulting to 5.
39+
3040
## Core Principles
3141

3242
1. Prefer the smallest committed pytest eval suite that the user can rerun

0 commit comments

Comments
 (0)