@test-lab-ai/cli 0.2.9 → 0.2.11
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/README.md +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -128,6 +128,23 @@ A skill change ships as a new CLI version, so `npm i -g @test-lab-ai/cli@latest`
|
|
|
128
128
|
updates it: the CLI auto-refreshes installed copies on first run after an upgrade,
|
|
129
129
|
and `testlab skills update` re-installs the bundled version on demand.
|
|
130
130
|
|
|
131
|
+
### Example prompts
|
|
132
|
+
|
|
133
|
+
With the skill installed, invoke it and describe the test in plain language. In
|
|
134
|
+
Claude Code: `/test-lab-plan`; in Codex or Cursor, just mention test-lab.
|
|
135
|
+
|
|
136
|
+
Create a test for a feature you just built:
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
/test-lab-plan write a test for the signup flow at https://app.example.com/signup, then create it in my account
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Import tests you already have:
|
|
143
|
+
|
|
144
|
+
```
|
|
145
|
+
/test-lab-plan convert the Playwright specs in ./tests/e2e into test-lab plans and import them
|
|
146
|
+
```
|
|
147
|
+
|
|
131
148
|
## For AI agents
|
|
132
149
|
|
|
133
150
|
Run **`testlab examples`** for the complete JSON reference, or read `AGENTS.md`
|