sigmap 8.9.1 → 8.10.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 +26 -0
- package/README.md +8 -3
- package/gen-context.js +644 -211
- package/llms-full.txt +2 -2
- package/llms.txt +2 -2
- package/package.json +9 -3
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/src/conventions/extract.js +13 -3
- package/src/conventions/fix.js +4 -1
- package/src/extractors/javascript.js +4 -4
- package/src/extractors/typescript.js +5 -5
- package/src/graph/builder.js +124 -16
- package/src/graph/impact.js +2 -2
- package/src/health/scorer.js +172 -97
- package/src/judge/judge-engine.js +62 -2
- package/src/mcp/server.js +1 -1
- package/src/plan/planner.js +44 -15
- package/src/review/pr-evidence.js +2 -1
- package/src/review/review-pr.js +24 -2
- package/src/util/truncate.js +42 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,32 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## [8.10.0] — 2026-07-09
|
|
14
|
+
|
|
15
|
+
Minor release — **honesty fixes** from a brutal code-review audit of the CLI surface: closing the gap between what each command *claims* and what it *does*. All changes are zero-dependency, deterministic, and the bundle stays reproducible from `src/`. ~40 new regression tests.
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **`judge` — claim-level grounding (#458):** beyond token overlap, `judge` now extracts an answer's concrete symbol/file/import claims and fails any the context does not contain — catching a hallucinated symbol that pure word-overlap would pass.
|
|
19
|
+
- **`review-pr` — real content-based secret scan (#458):** reads changed-file contents and matches known secret patterns, flagging a hardcoded key in an innocently-named file (not just files on a sensitive path).
|
|
20
|
+
- **`--health` — auditable composite (#458):** the score now returns a `components[]` breakdown (every deduction, labeled), revives the previously-unused over-budget-streak signal, and adds a "context never generated" penalty.
|
|
21
|
+
- **Import graph — alias resolution (#458):** the dependency graph resolves `tsconfig`/`jsconfig` `paths` + `baseUrl` aliases, re-exports (`export … from`), and dynamic `import()`, lifting `--impact`, `--map`, `--callers`, `plan`, and `review-pr` at once.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- **`validate --query` — real signal for natural-language queries (#458):** a lowercase query like `"login rate limit"` now produces a retrieval-confidence report (top file, score, tier) instead of the previous silent no-op.
|
|
25
|
+
- **`plan` — wired to the real planner (#458):** the CLI now uses `createPlan()`, fixing a bug where the impact traversal ignored its depth cap and ran unbounded, plus a path-casing bug; impact is unioned across high-confidence files and test coverage is labeled honestly.
|
|
26
|
+
- **`gain`/`--cost` — one pricing source (#458):** removed a duplicate inline price table that disagreed with `pricing.js` (gpt-4o priced at $5 vs $2.50 /Mtok), added an explicit `costBasis`, and fixed a `--model` argument-parsing bug.
|
|
27
|
+
- **`conventions` — no false consistency (#458):** single lowercase-word filenames are style-neutral, so a repo of `user.ts`/`order.ts` reports "unknown" instead of a spurious "100% camelCase".
|
|
28
|
+
- **`--health` — never-generated repos (#458):** a project with source but no generated context is no longer scored 100/A.
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- **`suggest-profile` (#458):** infers the task profile from the staged-diff composition (test ratio, breadth, doc/config mix) instead of one commit-message keyword.
|
|
32
|
+
- **Extractors (JS/TS) (#458):** per-file and per-class caps now append a visible `… +N more` marker instead of silently dropping the tail of large files.
|
|
33
|
+
- **`--health` metric relabel (#458):** `extractorCoverage` → `languageCoverage` (it measures language diversity, not extractor quality) and is grouped under `diagnostics`.
|
|
34
|
+
- **`learn` / `create` labels (#458):** honest output — a manual boost/penalty ledger, and a deterministic guard runner, respectively.
|
|
35
|
+
- **README (#456, #454, #455):** added the MseeP.ai security assessment badge — thanks @mseep-ai; moved the Star History chart into its own section; refreshed SEO/GEO positioning content.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
13
39
|
## [8.9.1] — 2026-07-06
|
|
14
40
|
|
|
15
41
|
Patch release — **CI only; the published package is unchanged from 8.9.0.** Makes the GitHub Pages docs deploy self-healing so releases stop going red on a GitHub-side transient.
|
package/README.md
CHANGED
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
[](LICENSE)
|
|
14
14
|
[](https://github.com/manojmallick/sigmap/stargazers)
|
|
15
15
|
[](https://starmapper.bruniaux.com/manojmallick/sigmap)
|
|
16
|
-
[](https://star-history.com/#manojmallick/sigmap&Date)
|
|
17
16
|
[](https://shypd.ai/tools/sigmap)
|
|
18
17
|
|
|
18
|
+
[](https://mseep.ai/app/manojmallick-sigmap)
|
|
19
|
+
|
|
19
20
|
</div>
|
|
20
21
|
|
|
21
22
|
---
|
|
@@ -120,8 +121,8 @@ Ask → Rank → Context → Validate → Judge → Learn
|
|
|
120
121
|
|
|
121
122
|
<!--SM:benchmarkBlock-->
|
|
122
123
|
```
|
|
123
|
-
Benchmark : sigmap-v8.
|
|
124
|
-
Date : 2026-07-
|
|
124
|
+
Benchmark : sigmap-v8.10-main (21 repositories, including R language)
|
|
125
|
+
Date : 2026-07-09
|
|
125
126
|
|
|
126
127
|
Hit@5 : 87.8% (baseline 13.6% — 6.5× lift)
|
|
127
128
|
Token reduction: 97.0% (across 21 repos)
|
|
@@ -338,6 +339,10 @@ If SigMap saves you context or API spend, a ⭐ on [GitHub](https://github.com/m
|
|
|
338
339
|
|
|
339
340
|
🌍 See where SigMap's stargazers are around the world on the **[StarMapper star map →](https://starmapper.bruniaux.com/manojmallick/sigmap)**.
|
|
340
341
|
|
|
342
|
+
<a href="https://star-history.com/#manojmallick/sigmap&Date">
|
|
343
|
+
<img src="https://api.star-history.com/svg?repos=manojmallick/sigmap&type=Date" alt="SigMap Star History Chart" width="600" />
|
|
344
|
+
</a>
|
|
345
|
+
|
|
341
346
|
[Report an issue](https://github.com/manojmallick/sigmap/issues) · [Changelog](CHANGELOG.md)
|
|
342
347
|
|
|
343
348
|
---
|