
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@absolutejs/agency
Advanced tools
Provider-agnostic AI agent authorization with policy, approvals, rejections, durable delegation, execution leases, receipts, kill switches, and signed handoffs.
Provider-neutral action authorization for AI agents.
Authentication says which agent is acting and on whose behalf. Agency decides whether that exact action may happen now, coordinates prerequisites such as human approval or terminal human rejection, issues a short-lived single-use execution lease, and records a receipt after execution.
import { createAgency, createMemoryAgencyStore } from "@absolutejs/agency";
const agency = createAgency({
policy: yourPolicyDecisionPoint,
store: createMemoryAgencyStore(),
});
const { action, decision } = await agency.request({
action: "send_email",
actor: {
agentId: "sales-agent",
delegationId: "delegation-123",
scopes: ["email:send"],
userId: "user-123",
},
effects: ["send", "external-network"],
input: { subject: "Hello", to: "buyer@example.com" },
resource: { id: "buyer@example.com", type: "email_recipient" },
});
if (decision.kind === "allow") {
const lease = await agency.issueLease(action.actionId);
const { receipt } = await agency.execute({
executor: "email-provider",
leaseId: lease.leaseId,
run: () => email.send(action.input),
});
}
if (decision.kind === "deny" && decision.requestable) {
await agency.reject({
actionId: action.actionId,
reason: "The recipient is outside the approved customer account.",
rejectedBy: "operator-123",
});
}
The core contract is deliberately provider-neutral. @absolutejs/agency/authzen
contains adapters for the OpenID AuthZEN Authorization API, its Access Request
and Approval Profile (AARP), and MCP tool mappings compatible with the COAZ
profile direction.
createAgentControlPlane() inventories an agent's registrations, delegations,
tasks, credential grants, allowances, mandates, leases, and other capabilities
through small AgentControlSource adapters. Revocation activates a durable kill
switch first, then fans out cleanup to every source. Pass the control plane to
createAgency({ control, ... }); action requests, lease issuance, and execution
then fail closed while the agent is disabled.
createAgentDelegationAuthority() issues durable, revocable delegation grants
inside Agency. Every child must attenuate its parent's user, audience, expiry,
action scopes, effects, resource boundaries, and spend ceiling; delegation
depth is bounded and revocation cascades to descendants. Pass the authority as
createAgency({ delegations: authority, ... }) to re-check the complete active
chain when an action is requested, when its execution lease is issued, and
immediately before that lease is consumed.
const delegations = createAgentDelegationAuthority({
audience: "https://app.example",
store: createMemoryAgentDelegationStore(), // use PostgreSQL in production
});
const grant = await delegations.issue({
audience: "https://app.example",
issuerAgentId: "user-agent",
subjectAgentId: "calendar-agent",
userId: "user-1",
scopes: ["calendar.create"],
effects: ["write", "external-network"],
resourceTypes: ["calendar"],
expiresAt: Date.now() + 3_600_000,
});
signAgentHandoff() / verifyAgentHandoff() create audience-bound,
expiring, replay-protected agent-to-agent capability envelopes. Use
attenuateAgentHandoff() for additional hops so scopes, spend, expiry, and
user identity cannot escalate.signAgentHandoffWith() / verifyAgentHandoffWith() accept independent
signer and verifier providers over canonical bytes. Cloud KMS/HSM adapters
can keep private keys non-exportable, rotate by keyId, and reject algorithms
without changing the handoff wire contract. HS256 remains available for
compatibility and local development.simulateAction() evaluates policy and produces the same canonical binding
without storing an action, issuing a lease, or running an effect.createAgencyTelemetryEmitter() maps every Agency event to stable
agent.* event names and attributes that can feed OpenTelemetry or any audit
sink without coupling the core package to a telemetry vendor.Memory stores are development defaults. Production deployments should supply durable, transactional stores for Agency state, kill switches, and handoff nonces.
agencyPostgresSchemaSql() creates indexed tables for actions, approvals,
rejections, leases, receipts, kill switches, and replay nonces. The adapters
accept a small structural AgencySqlClient, so Bun SQL, Neon, pg, and
transaction-aware host clients can be used without coupling the core package to
a database driver.
const store = createPostgresAgencyStore({ client: sqlClient });
const controlStore = createPostgresAgentControlStore({ client: sqlClient });
const replayStore = createPostgresHandoffReplayStore({ client: sqlClient });
Lease consumption is one conditional UPDATE, making concurrent execution
attempts safe across processes. Handoff nonces are persisted as SHA-256 digests,
not bearer values. Apply agencyPostgresSchemaSql() during deployment before
starting workers.
Security invariants:
MIT
FAQs
Provider-agnostic AI agent authorization with policy, approvals, rejections, durable delegation, execution leases, receipts, kill switches, and signed handoffs.
The npm package @absolutejs/agency receives a total of 328 weekly downloads. As such, @absolutejs/agency popularity was classified as not popular.
We found that @absolutejs/agency 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.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.