@sdods/cli 0.2.0 → 0.2.2
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 +19 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/browsers.js +1 -1
- package/dist/commands/coverage.js +1 -1
- package/dist/commands/har.js +35 -1
- package/dist/commands/tokens.js +17 -10
- package/dist/commands/users.js +4 -3
- package/dist/context.js +7 -0
- package/package.json +8 -8
- package/templates/.claude/skills/code-signing/SKILL.md +238 -0
- package/templates/.claude/skills/sdods-desktop-release/SKILL.md +170 -0
- package/templates/projects/demo-shop/har/staging/cart.har +2787 -1
- package/templates/projects/demo-shop/har/staging/login.har +2787 -1
- package/templates/projects/demo-shop/har/staging/products.har +2787 -1
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @sdods/cli
|
|
2
|
+
|
|
3
|
+
SDODS is an automation platform for BDD testing: UI, API and hybrid flows, with
|
|
4
|
+
self-healing locators, data-driven scenarios, an MCP server and AI agents.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npm i -g @sdods/cli # or: bun add -g @sdods/cli
|
|
8
|
+
sdods init ~/my-tests # scaffolds a workspace, demo project included
|
|
9
|
+
cd ~/my-tests
|
|
10
|
+
sdods run -p demo-shop -e staging -l api
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or install everything, browsers included, with one command:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
curl -fsSL https://sdods.com/install.sh | sh
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Documentation: https://docs.sdods.com
|