
Security News
The Code You Didn't Write Is Still Yours to Defend
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
@agent-pattern-labs/iso-lineage
Advanced tools
Deterministic artifact lineage tracking for AI-agent workflows: record dependencies, verify graph hashes, and detect stale outputs without model calls.
Deterministic artifact lineage and stale-output detection for AI-agent workflows.
iso-lineage records the exact file hashes used to create an artifact, then checks whether that artifact or any of its inputs have changed. It also propagates stale state through generated artifacts, so a PDF depending on a stale report is stale even when the PDF bytes have not changed.
Agent systems generate many local artifacts:
This package answers "can this output still be trusted?" without asking a model to reread the project.
iso-lineage record \
--graph .iso-lineage.json \
--artifact reports/812-example-labs.md \
--input cv.md \
--input profile.yml \
--input jobs/example-labs.md \
--command "job-forge evaluate jobs/example-labs.md"
iso-lineage record \
--graph .iso-lineage.json \
--artifact generated/812-example-labs.pdf \
--input reports/812-example-labs.md \
--command "job-forge pdf reports/812-example-labs.md"
iso-lineage verify --graph .iso-lineage.json
iso-lineage check --graph .iso-lineage.json
iso-lineage stale --graph .iso-lineage.json
iso-lineage explain --graph .iso-lineage.json --artifact reports/812-example-labs.md
import {
checkLineage,
emptyLineageGraph,
recordLineage,
verifyLineageGraph,
} from "@agent-pattern-labs/iso-lineage";
let graph = emptyLineageGraph();
graph = recordLineage(graph, {
root: process.cwd(),
artifact: "reports/812-example-labs.md",
inputs: ["cv.md", "profile.yml", "jobs/example-labs.md"],
command: "job-forge evaluate jobs/example-labs.md",
});
const check = checkLineage(graph);
const verify = verifyLineageGraph(graph);
FAQs
Deterministic artifact lineage tracking for AI-agent workflows: record dependencies, verify graph hashes, and detect stale outputs without model calls.
We found that @agent-pattern-labs/iso-lineage demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.