@kirrosh/zond 0.27.0 → 0.27.1
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/CHANGELOG.md +18 -0
- package/README.md +18 -2
- package/package.json +24 -8
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.27.1] — 2026-07-09
|
|
8
|
+
|
|
9
|
+
m-27 Bucket E (agentic discoverability): metadata release — no engine changes.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **Claude Code plugin / self-serve marketplace (ARV-395):**
|
|
13
|
+
`.claude-plugin/{plugin,marketplace}.json` — install skills via
|
|
14
|
+
`/plugin marketplace add kirrosh/zond`; skills mirrored to root
|
|
15
|
+
`skills/<name>/SKILL.md` (synced from init templates, drift-checked in
|
|
16
|
+
`bun run check`), also picked up by SkillsMP / `npx skills add kirrosh/zond`.
|
|
17
|
+
- **Agent discovery files (ARV-394):** `llms.txt` (machine index of docs) and
|
|
18
|
+
`context7.json` (Context7 config with agent rules) at the repo root.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- **Agentic metadata (ARV-393, ARV-400):** canonical tagline in npm
|
|
22
|
+
`description`, task-shaped `keywords`, `repository`/`homepage`/`bugs` links;
|
|
23
|
+
agent-first README top (what → when → install → minimal example).
|
|
24
|
+
|
|
7
25
|
## [0.27.0] — 2026-07-09
|
|
8
26
|
|
|
9
27
|
m-27 start-distribution: every install channel works on a clean machine,
|
package/README.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# zond
|
|
2
2
|
|
|
3
|
-
API hygiene scanner for small teams —
|
|
3
|
+
API hygiene scanner for small teams and their coding agents — test REST API endpoints against the OpenAPI spec, catch contract drift, track coverage.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**Use it when you need to:** test REST API endpoints from an OpenAPI spec,
|
|
6
|
+
verify an API contract after a deploy, debug a failing HTTP request with
|
|
7
|
+
stored run history, or raise endpoint coverage. Works standalone or through
|
|
8
|
+
a coding agent (Claude Code, Cursor) — say "test my API" and the agent
|
|
9
|
+
drives zond for you.
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
curl -fsSL https://raw.githubusercontent.com/kirrosh/zond/master/install.sh | sh # or: npm i -g @kirrosh/zond
|
|
13
|
+
zond init && zond add api my-api --spec ./openapi.json
|
|
14
|
+
zond audit --api my-api --safe # read-only pass: spec lint → probes → tests → coverage → HTML report
|
|
15
|
+
```
|
|
6
16
|
|
|
7
17
|
> **Safe by default.** The first run (`zond audit --safe`) sends read-only
|
|
8
18
|
> GET traffic — no writes, no deletes, nothing destructive. Mutating
|
|
@@ -21,6 +31,12 @@ Zond reads your OpenAPI spec and gives your AI agent everything it needs to test
|
|
|
21
31
|
| **npm** (needs Node 20+) | `npm install -g @kirrosh/zond` |
|
|
22
32
|
| **Windows** | `iwr https://raw.githubusercontent.com/kirrosh/zond/master/install.ps1 \| iex` |
|
|
23
33
|
| **Manual** | grab a binary from [releases](https://github.com/kirrosh/zond/releases/latest) (darwin arm64/x64, linux x64/arm64, win x64) |
|
|
34
|
+
| **Claude Code plugin** | `/plugin marketplace add kirrosh/zond` then `/plugin install zond@zond` — the agent skills without `zond init` |
|
|
35
|
+
| **Agent skills** ([skills.sh](https://www.skills.sh)) | `npx skills add kirrosh/zond` |
|
|
36
|
+
|
|
37
|
+
The plugin/skills channels ship the [five zond skills](skills/) (audit
|
|
38
|
+
pipeline, depth checks, fixture seeding, triage, target warm-up); the zond
|
|
39
|
+
binary itself still comes from any of the channels above.
|
|
24
40
|
|
|
25
41
|
Every channel ships the same self-contained binary — no Bun or Node
|
|
26
42
|
required at runtime (npm uses Node only as a thin launcher).
|
package/package.json
CHANGED
|
@@ -1,16 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kirrosh/zond",
|
|
3
|
-
"version": "0.27.
|
|
4
|
-
"description": "API
|
|
3
|
+
"version": "0.27.1",
|
|
4
|
+
"description": "API hygiene scanner for small teams and their coding agents — test REST API endpoints against the OpenAPI spec, catch contract drift, track coverage.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/kirrosh/zond.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/kirrosh/zond#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/kirrosh/zond/issues"
|
|
14
|
+
},
|
|
7
15
|
"keywords": [
|
|
8
|
-
"api",
|
|
9
|
-
"
|
|
16
|
+
"api-testing",
|
|
17
|
+
"rest-api",
|
|
10
18
|
"openapi",
|
|
11
|
-
"
|
|
19
|
+
"contract-testing",
|
|
20
|
+
"contract-drift",
|
|
21
|
+
"schema-validation",
|
|
22
|
+
"api-coverage",
|
|
23
|
+
"api-hygiene",
|
|
24
|
+
"coding-agents",
|
|
25
|
+
"ai-agents",
|
|
26
|
+
"claude-code",
|
|
27
|
+
"sarif",
|
|
12
28
|
"cli",
|
|
13
|
-
"rest",
|
|
14
29
|
"http"
|
|
15
30
|
],
|
|
16
31
|
"files": [
|
|
@@ -31,11 +46,12 @@
|
|
|
31
46
|
"test": "bun run test:unit && bun run test:mocked",
|
|
32
47
|
"test:unit": "bun test tests/",
|
|
33
48
|
"test:mocked": "bun run scripts/run-mocked-tests.ts",
|
|
34
|
-
"check": "tsc --noEmit --project tsconfig.json",
|
|
49
|
+
"check": "tsc --noEmit --project tsconfig.json && bun run scripts/sync-plugin-skills.ts --check",
|
|
35
50
|
"schemas": "bun run scripts/emit-json-schemas.ts",
|
|
36
51
|
"schemas:check": "bun run scripts/emit-json-schemas.ts --check",
|
|
37
52
|
"lint:dead": "knip --reporter compact",
|
|
38
|
-
"build": "bun build --compile src/cli/index.ts --outfile dist/zond && bun run scripts/codesign-darwin.ts ./dist/zond"
|
|
53
|
+
"build": "bun build --compile src/cli/index.ts --outfile dist/zond && bun run scripts/codesign-darwin.ts ./dist/zond",
|
|
54
|
+
"sync:plugin": "bun run scripts/sync-plugin-skills.ts"
|
|
39
55
|
},
|
|
40
56
|
"devDependencies": {
|
|
41
57
|
"@readme/openapi-parser": "^5.5.0",
|