Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- run: pnpm -r build
- run: pnpm -r typecheck
- name: unit tests
run: node --test packages/suppression/dist/*.test.js packages/triage/dist/*.test.js
run: node --test packages/shared/dist/*.test.js packages/suppression/dist/*.test.js packages/triage/dist/*.test.js
- name: bundle smoke test (release artifact builds + parses)
run: |
pnpm build:release
Expand Down
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,44 @@ this project uses [semantic versioning](https://semver.org) (pre-1.0: minor vers

## [Unreleased]

## [0.9.0] — agent-led: the engine on tap

Splus flips from engine-*led* (push a finding list through a gate) to agent-*led*
(a curious reviewer pulls deterministic signal on demand). The engine becomes a
toolbelt, a per-repo contract is read first, and a reviewer's diligence compounds.

### Added
- **`inspect` — the engine on tap.** Ask one deterministic question instead of
triaging a list: `definition` / `callers` / `blast_radius` / `complexity` /
`exports` / `imports`. New engine `inspect` subcommand reusing the existing
analysis tier (graph, symbols, SCIP, complexity); exposed as an MCP tool so the
reviewer can investigate — open call sites, confirm blast radius, recurse on a
smell — rather than relay the floor.
- **`floor` tool** — re-ground on the deterministic finding set for any scope,
without the directive.
- **`splus.md` — the repo's review contract, read first.** A human-authored file
(`./splus.md` layered over `~/.splus/splus.md`): prose preferences/nits injected
into the reviewer, plus **binding** `mute:`/`skip:` rules enforced at review
time (matching findings dropped and reported, never silently). New `preferences`
tool + a `prefs` skill to author it.
- **Compounding memory.** `note` records a discovered convention; `accept` now also
stores a recallable memory; `recall` surfaces past confirmed findings and
conventions relevant to a hunk (embedding match over `.splus-cache/memory.json`,
on the existing `Embedder` seam).
- **Skill bundle** (`skills/`): a `review` orchestrator playbook that fans out
**fresh, unbiased sub-agents** per unit (finder ≠ verifier) and degrades to a
sequential pass on hosts without sub-agents; plus `investigate` / `lenses` /
`verify` / `dispatch` references and the `prefs` skill.

### Changed
- **`review` now orients instead of just answering** — it injects the `splus.md`
contract, enforces its binding rules, returns the floor, and drives the agent
through investigate → verify → report → teach with the toolbelt. Backward
compatible (the floor is still returned).
- **Import resolution understands TS ESM `.js` specifiers** (`import … from
"./x.js"` for an `x.ts` source), so callers / blast radius resolve on modern
TypeScript codebases — improving the existing blast-radius collector too.

## [0.8.1] — splus reviews splus

A patch release of precision and honesty fixes surfaced by running a full
Expand Down
Loading