supercov 0.0.42-x86_64-linux-gnu → 0.0.44-x86_64-linux-gnu
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.
- checksums.yaml +4 -4
- data/README.md +23 -3
- data/lib/supercov.rb +1 -1
- data/libexec/supercov +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c229ecd294c4a1470279ec9c6339a901415d307c55087b67f40d72034bd47d5
|
|
4
|
+
data.tar.gz: bc8e3e9f0c574be534396912258a335b77b0de7cbac7993daf1e59940dcb77ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcd304ff790e8b6bace76f92af729de1525e8cf6a150845daed4dbcdcfdcece8cd8662eddb51fed92de409b9e2e803379a6cf92a6e7c0d9ea4f6a11d43d7a505
|
|
7
|
+
data.tar.gz: 1a8a7fe3dfbd6ed054f246d006968b5feb4985b173e490e3d2ff4b48a25c727c332a2fbe3ee7ce64f80451c44190d0971a080c42ddf6d813d7252c1e99b13d19
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
|
-
**Coverage for coding agents
|
|
3
|
+
**Coverage for coding agents and software factories 🌙**
|
|
4
4
|
|
|
5
5
|
**Supercov gives your coding agent the next useful test to write.** It runs the test command you already use, records local coverage evidence, and turns uncovered paths into small, actionable queries. Your agent writes a focused test, reruns the suite, proves what improved, and keeps going while useful gaps remain.
|
|
6
6
|
|
|
@@ -10,6 +10,9 @@ No account, config file, import, custom reporter, or hosted service is required.
|
|
|
10
10
|
|
|
11
11
|
Supported by [Supercorp](https://supercorp.ai).
|
|
12
12
|
|
|
13
|
+
[Agent workflow](https://supercov.com/docs/agent-loop): ask your coding agent
|
|
14
|
+
to add a test in your own project, with a recorded example to follow along.
|
|
15
|
+
|
|
13
16
|
## Start with the suite you already have
|
|
14
17
|
|
|
15
18
|
```bash
|
|
@@ -43,6 +46,23 @@ npx supercov -- python -m unittest
|
|
|
43
46
|
npx supercov -- bundle exec rspec
|
|
44
47
|
```
|
|
45
48
|
|
|
49
|
+
## Inspect assertion evidence (JS/TS)
|
|
50
|
+
|
|
51
|
+
After a run, inspect what existing assertions appear to check:
|
|
52
|
+
|
|
53
|
+
```sh
|
|
54
|
+
npx supercov runs latest assertions --limit 5
|
|
55
|
+
npx supercov runs latest assertions --pragmas --json
|
|
56
|
+
npx supercov runs latest assertions --evidence /tests --limit 5 --json
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
This npm-only query uses the run archive and matching source; it adds no new
|
|
60
|
+
test-time instrumentation. It requires a compatible project TypeScript compiler
|
|
61
|
+
API (5.8.3 and native 7.0.2 are tested). Results are candidates, not proof
|
|
62
|
+
that changes are safe or a verified assertion percentage. Follow
|
|
63
|
+
[`assertion-evidence.md`](docs/assertion-evidence.md) for provenance, optional
|
|
64
|
+
assertion hints, pagination, and limitations.
|
|
65
|
+
|
|
46
66
|
## Give Supercov a job
|
|
47
67
|
|
|
48
68
|
Paste one of these prompts into Claude Code, Codex, Cursor, Gemini CLI, GitHub Copilot, or any coding agent that can run terminal commands.
|
|
@@ -150,7 +170,7 @@ Supercov uses exact per-test attribution where an adapter is available. For othe
|
|
|
150
170
|
| --- | --- |
|
|
151
171
|
| Playwright | Exact per test, worker, retry, outcome, action, and assertion phase |
|
|
152
172
|
| Vitest | Exact per test, with setup execution kept separate |
|
|
153
|
-
| Jest | Exact per test, including
|
|
173
|
+
| Jest | Exact per test, including parameterized tests; `expect` assertions link the evidence they check |
|
|
154
174
|
| `node:test` | Exact per test |
|
|
155
175
|
| AVA and Mocha | Aggregate structural coverage |
|
|
156
176
|
| Cargo's standard libtest runner | Exact test, attempt, and passing-assertion identity |
|
data/lib/supercov.rb
CHANGED
data/libexec/supercov
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: supercov
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.44
|
|
5
5
|
platform: x86_64-linux-gnu
|
|
6
6
|
authors:
|
|
7
7
|
- Supercorp
|
|
@@ -44,5 +44,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
44
44
|
requirements: []
|
|
45
45
|
rubygems_version: 3.6.9
|
|
46
46
|
specification_version: 4
|
|
47
|
-
summary:
|
|
47
|
+
summary: "Coverage for coding agents and software factories \U0001F319"
|
|
48
48
|
test_files: []
|