appstore-precheck 1.10.0 → 1.11.0
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
CHANGED
|
@@ -5,6 +5,38 @@ All notable changes to this project are documented here. Versioning follows
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [1.11.0] - 2026-07-02
|
|
9
|
+
|
|
10
|
+
Roadmap #3: **rejection-outcome feedback loop** — a third, honestly-scoped measurement
|
|
11
|
+
axis. Reporting layer only; the scan and GREEN/YELLOW/RED verdict are untouched.
|
|
12
|
+
|
|
13
|
+
Alongside the synthetic and real-panel corpora, the tool now tracks **real App Store
|
|
14
|
+
review outcomes** (approved / rejected + Apple's cited guideline) in a committed,
|
|
15
|
+
human-reviewed ledger (`corpus/outcomes/ledger.json`, starts empty) and summarizes them
|
|
16
|
+
in `docs/scorecard.md`. The summary is **honesty-floored**: below 10 recorded outcomes
|
|
17
|
+
it shows only a raw tally and computes **no rate**; at/above the floor it may show a
|
|
18
|
+
directional recall estimate with a permanent survivorship-bias caveat. Because the
|
|
19
|
+
ledger is committed and read offline, the section is deterministic and covered by the
|
|
20
|
+
existing `scorecard.sh --check` — no network, no new CI job.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- **`corpus/outcomes/ledger.json`** (empty `[]`) + **`corpus/outcomes/README.md`** —
|
|
24
|
+
record schema, anonymization/privacy rules (no verbatim Apple text, no real identity),
|
|
25
|
+
contribution/review process, and the sample-size floor.
|
|
26
|
+
- **`scripts/scorecard-outcomes.sh`** — pure `bash`+`jq`, offline, deterministic; renders
|
|
27
|
+
the "Real App Store outcomes (n=N)" section with the honesty floor. Also
|
|
28
|
+
`scorecard.sh --outcomes`.
|
|
29
|
+
- The outcomes section is baked into `docs/scorecard.md`; Methodology now describes three
|
|
30
|
+
measurements.
|
|
31
|
+
- **`.github/ISSUE_TEMPLATE/app-store-outcome.md`** — anonymized outcome contribution that
|
|
32
|
+
funnels into a maintainer-reviewed PR.
|
|
33
|
+
- Test: `tests/test-scorecard-outcomes.sh`.
|
|
34
|
+
|
|
35
|
+
### Notes
|
|
36
|
+
- Reporting/measurement only — outcome data never influences the verdict or which rules
|
|
37
|
+
fire (a future, human-only decision). No verbatim Apple Resolution Center text is stored.
|
|
38
|
+
The scan path (`scan.sh`/`verdict.sh`/`bin/cli.js`/`action.yml`) is unchanged.
|
|
39
|
+
|
|
8
40
|
## [1.10.0] - 2026-07-02
|
|
9
41
|
|
|
10
42
|
Roadmap #4: **SARIF output + opt-in GitHub PR annotations** — read-only, no auto-fix.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appstore-precheck",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Read-only iOS App Store pre-submission check, packaged as a portable Agent Skill with native Claude Code, Cursor, and Codex plugins, plus an npx CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Berkay Turk (https://github.com/berkayturk)",
|
|
@@ -12,6 +12,7 @@ whole file to run the skill.
|
|
|
12
12
|
- [Auto-detection rules](#auto-detection-rules)
|
|
13
13
|
- [Verdict thresholds](#verdict-thresholds)
|
|
14
14
|
- [SARIF output](#sarif-output---format-sarif)
|
|
15
|
+
- [Real App Store outcomes](#real-app-store-outcomes-corpusoutcomes)
|
|
15
16
|
- [Pre-submit manual checklist](#pre-submit-manual-checklist)
|
|
16
17
|
|
|
17
18
|
---
|
|
@@ -234,6 +235,17 @@ emits inline `::error`/`::warning` annotations, both opt-in.
|
|
|
234
235
|
|
|
235
236
|
---
|
|
236
237
|
|
|
238
|
+
### Real App Store outcomes (`corpus/outcomes/`)
|
|
239
|
+
|
|
240
|
+
Beyond the synthetic and real-panel corpora, the tool tracks real Apple review outcomes (approved /
|
|
241
|
+
rejected + cited guideline) in a committed, human-reviewed ledger (`corpus/outcomes/ledger.json`),
|
|
242
|
+
summarized in `docs/scorecard.md` by `scripts/scorecard-outcomes.sh`. It is honesty-floored: no rate
|
|
243
|
+
is computed below 10 records (raw tally only), and a permanent survivorship-bias caveat applies once
|
|
244
|
+
a rate is shown. It is a reporting layer only — it never influences the GREEN/YELLOW/RED verdict or
|
|
245
|
+
which rules fire. Contribute an outcome via the "App Store outcome" issue template.
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
237
249
|
## Pre-submit manual checklist
|
|
238
250
|
|
|
239
251
|
Things the scanner cannot verify; confirm by hand before you submit:
|