
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.
@didwork/sdk
Advanced tools
DidWork — independent verification for software outcomes. Your software said it worked. Did it?
Your software said it worked. Did it?
DidWork independently verifies that the outcomes software claims to have produced are actually true. Send a claim; DidWork gathers evidence from authoritative systems and returns a verdict: verified, failed, or unknown.
import { did } from "@didwork/sdk";
const result = await did.verify({
type: "stripe.refund",
expected: { payment: "pi_123", amount: 4999 },
});
if (result.status === "verified") proceed();
Configure with DIDWORK_API_KEY (get one at didwork.sh), or explicitly via createClient({ apiKey }). Zero dependencies.
Declare what an agent tool is allowed to affect. did.tool() is local and synchronous: it attaches the declaration and rejects effects outside the DidWork taxonomy, so a typo cannot become an under-declaration.
export const refundCustomer = did.tool({
name: "refund_customer",
description: "Refund an existing customer charge.",
effects: ["financial.refund", "communication.external"],
constraints: { maxAmount: 500 },
});
npx @didwork/inspect inspect compares declarations like this against the implementation and reports a DECLARATION_MISMATCH when the code exceeds them. Pass the tools that did a piece of work to did.verify({ tools }) and the receipt records what they could affect, kept apart from the evidence and never an input to the verdict:
await did.verify({
type: "stripe.refund",
expected: { payment: "pi_123", amount: 4999 },
tools: [refundCustomer],
});
The taxonomy (CAPABILITIES), risk table (CAPABILITY_RISK), and profile types are exported for tooling.
Docs: https://didwork.sh/docs
FAQs
DidWork: independent verification for software outcomes. Your software said it worked. Did it?
The npm package @didwork/sdk receives a total of 246 weekly downloads. As such, @didwork/sdk popularity was classified as not popular.
We found that @didwork/sdk 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.