
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@diffci.com/diffci
Advanced tools
Change-aware CI analysis and conservative affected-test selection for GitHub Actions and coding agents
Website · Test impact analysis guide · Open evidence study
Find test-selection opportunities in your CI before changing what it runs. DiffCI analyzes a
commit's changes and dependency graph, then reports which test files it would select, why it falls
back to a full run, and whether it can propose a test command. check also runs paired full and
selected commands when it can infer them. The observe command and Action remain observation-only.
From a Git repository checkout, with Node.js 22.5+ and Git installed, run:
npx "@diffci.com/diffci@latest" check
check explains affected tests and, when it can infer safe commands, runs both the full and selected
test commands to measure the difference. It sends nothing to DiffCI. Test commands can create files
in the checkout. For analysis without test execution, use npx "@diffci.com/diffci@latest" observe --no-send.
To add instructions for coding agents, run:
npx "@diffci.com/diffci@latest" init
To also pin DiffCI as a development dependency and update the detected npm, pnpm, Yarn, or Bun
lockfile, pass --install. Add --workflow for a separate non-blocking observation job:
npx "@diffci.com/diffci@latest" init --install --workflow
--install also adds diffci:check and diffci:observe package scripts. It preserves same-named
scripts that the project already owns. After installation, CI or contributors can run
npm run diffci:check or npm run diffci:observe without knowing the package name or version.
On Windows PowerShell, quote the package name:
npx "@diffci.com/diffci@latest" check
The copyable adoption kit includes an AGENTS.md instruction and
maintainer PR text. AI-readable documentation is on Context7 CLI
and Context7 Core. Use the GitHub Marketplace Action
for a separate, non-blocking observation job. Required project CI remains authoritative.
One paired run is preliminary evidence. verify-savings can repeat comparisons, alternate arm order,
record declared cache state, and run an explicit cache-preparation command before every arm. A result is
labelled controlled only after at least three alternating, cache-prepared repetitions. On a
full-validation fallback, check runs the full command once and reports 0% reduction.
Upgrade from 0.1.3: tests excluded by a source-only tsconfig.json could be discovered without
their dependency edges, producing an incomplete selection. This is fixed in 0.1.4. Revalidate
affected observations before using them as opportunity evidence; see the
historical validation and
release qualification.
The local default compares HEAD with its first parent; both commits must be available. For a specific
comparison, add --base <base-sha> --head <head-sha>. DiffCI prints the selection, fallback reasons,
and the path to a JSON report outside your checkout. REFUSED or ERROR is not a successful analysis;
check the reported status even when the command exits successfully. See the
support matrix for setup requirements and supported workloads.
check runs inferred full and selected commands in the checkout and sends nothing by default.
The commands may write generated files. Use observe --no-send for analysis without execution.
See docs/ai-agents.md for Claude Code, Codex,
Cursor, GitHub Copilot, and similar tools.
Measured example: a controlled Cal.com replay showed 44.2% net reduction in a job-equivalent install + pretest + test workload, including analysis overhead. This is one sandbox comparison, not Cal.com's production savings or a prediction for your repository. Read the timings and method.
Selection counts alone do not establish runtime savings. check reports a measured percentage only
when both commands pass and the checked-out commit and worktree remain identical across both arms.
The savings artifact embeds the base/head SHAs, observation SHA-256, commands, timings, and checkout
snapshots. Snapshots use byte-level fingerprints for dirty files, manifests, lockfiles, and available
resolved-dependency markers; the report also records the runner identity. A mismatch invalidates the
comparison. observe does not execute tests.
For an advanced paired runtime check, you can still run observe first and then run verify-savings
against the observation report. It compares your normal full command with
DiffCI's proposed selected command and writes JSON plus Markdown evidence; see
docs/npm-adoption.md.
For stronger evidence, run repeated measurements with an explicit cache preparation command:
npx "@diffci.com/diffci@latest" verify-savings \
--repo . --full "npm test" --selected-from-report ../diffci-observation.json \
--out ../diffci-savings.json --repetitions 3 --cache-state warm \
--cache-prepare "node scripts/prepare-ci-cache.mjs"
DiffCI alternates full/selected order, reports min/median/max timings, and conservatively classifies stable selection misses, likely flakes, shared/pre-existing failures, infrastructure failures, and inconclusive results. Cache preparation is user-supplied because DiffCI must not delete repository or tool caches on its own.
When an agent or build tool supplies explicit specification IDs and logical targets, DiffCI can block two specifications from silently changing the same target:
{
"specifications": [
{ "id": "SPEC-API", "logicalTarget": "com.example.Widget#run" },
{ "id": "SPEC-BEHAVIOR", "logicalTarget": "com.example.Widget#run" }
]
}
npx "@diffci.com/diffci@latest" validate-specs --file change-specifications.json
The command exits non-zero and names every conflicting specification ID. This surface is opt-in and does not infer semantic targets from source code; callers must provide stable logical target names.
Save this as .github/workflows/diffci.yml to add a dedicated, non-blocking observation job:
name: DiffCI observation
on: [push, pull_request]
permissions:
contents: read
jobs:
diffci:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: DiffCI/DiffCI.com@e1d7bab271c5d83899bda0034d70d3e34c10c1f7
Then check the workflow locally with npx "@diffci.com/diffci@latest" verify-workflow. Keep the observer
out of required checks and other jobs' needs lists. The Action adds a job summary and a
diffci-observation artifact to the run; it does not alter which tests your other jobs execute.
The example pins release v0.2.11 to its qualified feature commit SHA for reproducibility.
The CLI sends no report with --no-send. The Action uploads a GitHub artifact by default; sending to
DiffCI's hosted service requires an explicitly configured endpoint and token.
Installation details · Seven-day pilot
| Surface | Use it for | Current distribution |
|---|---|---|
@diffci.com/diffci | Try observe locally, run an opt-in runtime pilot, or install the GitHub Action from this repository | Published npm CLI and Action |
The CLI bundles a pinned revision of the Core engine from GitHub. Users install only
@diffci.com/diffci; the check command above uses it directly. Core performs Git analysis,
dependency graphs, impact, path baseline, and selected-command planning. The report format and
non-interfering GitHub Action remain in this repository. See
docs/package-relationship.md for the source relationship.
For evaluation results and their limits, start with
docs/adoption-evidence.md.
Add DiffCI instructions to a repository:
npx "@diffci.com/diffci@latest" init
Then ask your coding agent to run:
npx "@diffci.com/diffci@latest" check
Agent-specific docs:
Codex ·
Claude Code ·
Cursor ·
GitHub Copilot ·
Grok.
Live discovery files:
llms.txt ·
AI agents.
Adoption materials:
outreach copy ·
metrics ·
targets.
For native agent integrations, DiffCI provides a stateless, read-only HTTPS MCP endpoint for validation guidance:
https://diffci.com/mcp
Use the stdio MCP server when tools need to inspect the local checkout or run tests:
npx -p "@diffci.com/diffci@latest" diffci-mcp
See the MCP server page for Codex, Claude Code, Cursor, and VS Code setup, or docs/mcp.md for repository documentation.
DiffCI's public-good analysis engine is released separately from its commercial hosted product.
The project lives in the DiffCI GitHub organization.
This repository was transferred to DiffCI/DiffCI.com on 2026-09-16.
| Component | Scope | Licensing |
|---|---|---|
| DiffCI Core | Standalone dependency/change analysis, CI graph inference, safety/fallback, advisory test selection, synthetic benchmarking and local compute measurement | AGPL-3.0-only; public |
| DiffCI Cloud | Hosted infrastructure, billing, enterprise dashboard, organization management, proprietary data/services, and managed acceleration | Proprietary |
| Optional enterprise code | Separately scoped, visible and auditable enterprise capabilities | Source available, with commercial production rights controlled by DiffCI |
This mixed repository is public. The reviewed Core extraction was published separately, with fresh Git history. This repository retains its existing engine snapshot while package integration is migrated separately. No blanket AGPL license applies to this repository. Public Core is advisory-only; energy/carbon/cost are modeled estimates, not verified environmental savings. The exact extraction is recorded in the Core release audit.
The funded Core should run independently of DiffCI Cloud. AGPL permits commercial use and competing hosting; it adds source-sharing obligations for covered modifications, including qualifying remote network use. Grant eligibility depends on each grant's agreement and funded deliverables.
See the licensing boundaries, organization and migration plan, and prepared organization profile.
This repository moved out of the DentalPresence.in
monorepo (previously diffci/ there) into its own repo on 2026-08-21, once the project outgrew being a
subfolder. DentalPresence.in remains DiffCI's original dogfooding target - some code (the planner
DentalPresence-specific PATH baseline/task registry, a few fixture tests) still reflects that origin - but
the research and shadow-validation pipelines are generic and have been exercised against dozens of
real third-party repositories.
Language expansion: initial Vue SFC, Go package-level, and conventional Maven reactor analysis is implemented through repository adapters. See the support matrix and setup requirements for exact scope, fallback behavior, and validation boundaries.
Three completed research stages plus an in-progress prospective-validation stage, in order:
src/research/cloudflare/shadow-cron.ts), and the registered DiffCI Shadow GitHub App
(read-only; see docs/github-app-registration.md) delivers
push/workflow events to /v1/shadow/webhook for instant predictions and exactly-on-time
reconciliation - this repository shadow-observes itself through that App. See
docs/research/2026-08-21-stage2-final-report.md
for the full picture; what's honestly still missing is real observation volume, working GitHub
Actions on our own repositories (account billing), and real design-partner repositories.Every dated report behind these stages lives in docs/research/ - start with
2026-08-21-stage2-architecture.md for the fullest current picture of what's built vs not, or the
Stage 0/1A/1B reports for the historical-validation story.
For the next product milestone, see docs/alpha-readiness.md. It tracks the
private-alpha bar: install DiffCI, keep CI unchanged, collect real shadow observations, and render a
trustworthy potential-savings report.
DiffCI is now framed as an open-core product:
DiffCI
|
├── Open-source core
| ├── DiffCI engine
| ├── CLI / npm package
| ├── Local analysis
| └── Basic GitHub Action
| |
| └── Tidelift package support
|
└── Commercial DiffCI
├── Hosted service / DiffCI Cloud
├── Organization dashboard
├── Historical analytics
├── Advanced CI/CD optimization
├── Enterprise policies
├── Managed runners
├── Team features
└── Support / enterprise services
The open-source core is the trust and adoption surface. It runs locally or in the host repository's own
CI, writes a report, and changes nothing about CI execution. Commercial DiffCI adds hosted history,
organization views, policy, managed operations, runners, and support. Tidelift belongs to the supported
open-source package path, not the hosted product feature boundary. See
docs/open-core-packaging.md and
docs/tidelift-package-support.md.
The source tree follows that split:
src/git/, src/repo/, src/planner/, and src/client/ are the installable OSS observer path.action.yml wraps the observer as a basic non-blocking GitHub Action.src/research/ and src/shadow/ run validation, GitHub App shadow observation, and reconciliation.src/product/, src/auth/, src/billing/, src/ingest/, src/ledger/, src/runner/, and
src/usage/ are the commercial/control-plane layer.docs/oss-boundary.md records what is allowed into the npm package.# Type-check and run the full test suite
npm run check
# Generate an example delta / impact / plan for the current repo's latest commit
npm run diffci
npm run impact
# Run a real Stage 0-style historical benchmark locally
npm run research:stage0
# Deploy the Cloudflare research/shadow Worker (D1 + R2 + Sandbox Containers)
npm run research:sandbox:deploy
DiffCI is intended to be installable as infrastructure, not only as a hosted shadow experiment:
- uses: DiffCI/DiffCI.com@e1d7bab271c5d83899bda0034d70d3e34c10c1f7
npx "@diffci.com/diffci@latest" observe
npx "@diffci.com/diffci@latest" check
npx "@diffci.com/diffci@latest" init
npx "@diffci.com/diffci@latest" verify-workflow
The GitHub Action and npm CLI establish the OSS/package distribution path. The hosted GitHub App and
DiffCI Cloud build on that trust boundary for teams that want shared reports and history. See
docs/distribution.md for the package and Action positioning,
docs/open-core-packaging.md for the commercial split, and
docs/npm-adoption.md for copy-paste pilot material.
FAQs
Change-aware CI analysis and conservative affected-test selection for GitHub Actions and coding agents
The npm package @diffci.com/diffci receives a total of 1,326 weekly downloads. As such, @diffci.com/diffci popularity was classified as popular.
We found that @diffci.com/diffci 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.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.