@suss/extractor
v0.3.2
Published
Framework-agnostic extraction pipeline that turns raw extractions into suss behavioral summaries.
Maintainers
Readme
@suss/extractor
Assembly engine that turns raw language-adapter output into a BehavioralSummary.
What this package is
@suss/extractor is the core assembly layer of the suss pipeline. Language adapters (such as @suss/adapter-typescript) parse source code and produce a RawCodeStructure, a normalized, adapter-specific intermediate form. The extractor's assembleSummary function converts that structure into the final BehavioralSummary IR, handling condition polarity, terminal mapping, gap detection, confidence assessment, and expectedInput pass-through for client field tracking. It also exports the RawCodeStructure type, the PatternPack interface, and all related raw types so adapters can share a common contract.
Where it sits in suss
Imports @suss/behavioral-ir for the IR types it produces. Consumed by @suss/adapter-typescript, all framework packs, and the CLI. It sits directly between the language adapters and the rest of the pipeline.
Status
Stable. assembleSummary, detectGaps, and assessConfidence are the public API. The RawCodeStructure and PatternPack interfaces are the contract that language adapters and framework packs implement against.
Minimal usage
import { assembleSummary } from "@suss/extractor";
import type { RawCodeStructure } from "@suss/extractor";
const raw: RawCodeStructure = {
identity: {
name: "getUser",
kind: "handler",
file: "src/routes/user.ts",
range: { start: 0, end: 100 },
exportName: "getUser",
exportPath: ["getUser"],
},
boundaryBinding: null,
parameters: [],
branches: [
{
conditions: [],
terminal: {
kind: "response",
statusCode: { type: "literal", value: 200 },
body: { typeText: "User", shape: null },
exceptionType: null,
message: null,
component: null,
delegateTarget: null,
emitEvent: null,
location: { start: 80, end: 100 },
},
effects: [],
location: { start: 0, end: 100 },
isDefault: true,
},
],
dependencyCalls: [],
declaredContract: null,
};
const summary = assembleSummary(raw);
// summary.transitions[0].output.type === "response"Coverage
License
Licensed under Apache 2.0. See LICENSE.
For the canonical design, see docs/architecture.md.
