
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.
Decionis CLI gives developers economic circuit breakers and execution gates for autonomous systems.
brew install decionis
npx decionis install
npx decionis init
npm install -g decionis
Linux package artifacts are built for Debian/Ubuntu and RPM-family distributions from the same npm package payload:
sudo apt install ./decionis_0.1.0-1_all.deb
sudo dnf install ./decionis-0.1.0-1.noarch.rpm
Windows package artifacts are built as a WinGet-ready portable ZIP:
winget install --manifest apps/cli/windows/winget
For one-shot project setup, prefer npx decionis install. It executes the published decionis
package and creates the same local files as decionis init.
The Homebrew release surface is generated from the npm package tarball so brew install decionis
and npx decionis resolve to the same CLI artifact. Release maintainers can refresh the formula
after a build with:
pnpm --filter decionis formula:generate
pnpm --filter decionis formula:verify
The app-distribution channel resolves to the same pinned npm artifact through the app install
manifest at app/decionis.app.json:
app install decionis
Release maintainers refresh and verify the app manifest after a build with:
pnpm --filter decionis app:generate
pnpm --filter decionis app:verify
Linux release artifacts are generated with nFPM after a build:
pnpm --filter decionis linux:package
pnpm --filter decionis linux:verify
Windows release artifacts and the WinGet manifest are generated after a build:
pnpm --filter decionis windows:generate
pnpm --filter decionis windows:package
pnpm --filter decionis windows:verify
Registry publication is handled by .github/workflows/cli-registry-publish.yml. In verify mode it
builds and uploads release-ready artifacts. In publish mode it can publish the CLI npm package,
attach Linux and Windows artifacts to a GitHub Release, open Homebrew tap and app registry PRs, and
submit the WinGet update through WingetCreate.
pnpm --filter decionis registry:verify
pnpm --filter decionis registry:plan -- --output artifacts/package-dist/registry/decionis-cli-registry-plan.json
Publish mode uses NPM_TOKEN or npm trusted publishing for npm, HOMEBREW_TAP_REPO and
HOMEBREW_TAP_TOKEN for Homebrew, APP_REGISTRY_REPO and APP_REGISTRY_TOKEN for app install, and
WINGET_GITHUB_TOKEN for WinGet submission.
decionis init \
--username ada@example.com \
--password "$DECIONIS_PASSWORD" \
--name "Ada Lovelace"
decionis add policy api-cost-policy
decionis enforce \
--policy agent-spend-policy \
--authority http://localhost:3011 \
--action SEND_PAYMENT \
--target payment_api:send_payment
decionis mcp serve
decionis gate \
--actor research_agent \
--action SEND_PAYMENT \
--amount 0.25 \
--currency USD \
--policy agent-spend-policy
decionis gate \
--actor coding_agent \
--action GIT_PUSH \
--target git:push \
--resource refs/heads/main \
--environment production \
--changeset-id git:abc1234 \
--policy delivery-gate-policy
Output:
DECISION: ALLOW
Action: SEND_PAYMENT
Actor: research_agent
Amount: 0.25 USD
Policy: agent-spend-policy 0.1.0
Reason: WITHIN_BUDGET_LIMITS
Dossier: .decionis/dossiers/dec_...
decionis run \
--actor research_agent \
--action SEND_PAYMENT \
--amount 0.25 \
--policy agent-spend-policy \
-- npm run send-payment
In enforcement mode, Decionis runs the command only when the decision is ALLOW. In shadow mode,
Decionis records would-block decisions but lets the command continue.
decionis enforce activates an encoded policy and writes MCP discovery files so external agents can
route high-stakes tool calls through Decionis instead of calling raw tools directly. The generated
MCP profiles launch decionis mcp serve, a local stdio MCP authority server that exposes Decionis
tools to agent runtimes while keeping the Authority API as the token-binding and verifier boundary.
decionis enforce \
--policy agent-spend-policy \
--authority http://localhost:3011 \
--agent-profile claude \
--agent-profile cursor \
--agent-profile copilot \
--agent-profile vertex
Files written:
.mcp.json
.cursor/mcp.json
.vscode/mcp.json
.decionis/mcp/decionis.mcp.json
.decionis/mcp/agents/claude.json
.decionis/mcp/agents/cursor.json
.decionis/mcp/agents/copilot.json
.decionis/mcp/agents/vertex.json
.decionis/agent/armament.json
The project-level .mcp.json advertises Decionis as a local stdio MCP authority tool server. Agent
runtimes that support MCP can discover the decionis server, launch decionis mcp serve, and route
sensitive execution through Decionis MCP tools. The Cursor profile writes .cursor/mcp.json, which
Cursor reads with the same mcpServers shape as Claude Code. The VS Code profile writes
.vscode/mcp.json for Copilot agent mode, and the Vertex profile writes a bridge descriptor for
Vertex or ADK tool adapters that need to call Decionis before execution.
Decionis separates development autonomy from delivery authority. Local context, project rules, and coding conventions can remain flexible, while protected delivery actions require Decionis authority regardless of whether a human or agent authored the change.
decionis simulate delivery-gating
Install Decionis verifiers into the repo delivery boundaries:
decionis delivery install --github --git-hooks
decionis delivery install --azure-devops
decionis delivery install --npm --deploy
The default delivery-gate-policy governs actions such as GIT_PUSH, PR_MERGE, DEPLOY,
PUBLISH_PACKAGE, and RUN_MIGRATION. Delivery dossiers include the actor, target, environment,
changeset id, policy version, decision, and ledger hash so CI, deploy hooks, and downstream
verifiers can reject executions that are not bound to Decionis.
decionis delivery attest \
--actor "$GITHUB_ACTOR" \
--action PR_UPDATE \
--target github:pull_request \
--resource "pull/123" \
--environment pull_request \
--base-ref origin/main \
--changeset-id "git:$GITHUB_SHA"
decionis delivery verify \
--actor "$GITHUB_ACTOR" \
--action PR_UPDATE \
--target github:pull_request \
--resource "pull/123" \
--environment pull_request \
--base-ref origin/main \
--changeset-id "git:$GITHUB_SHA"
Use examples/github-delivery-gate.yml as a required GitHub check for PRs. delivery verify fails
closed when the attestation is missing, the dossier or ledger hash is invalid, the action boundary
does not match, or the current git diff hash differs from the attested changeset.
Protected deploys and migrations can bind rollback evidence into the same gate. The rollback plan is
hashed, stored as a local artifact, recorded in the Decision Dossier, and rechecked by
delivery verify before the delivery boundary is allowed.
decionis delivery rollback-plan \
--action DEPLOY \
--target ci:deploy \
--resource api-service \
--environment production \
--changeset-id "release:v1.2.3" \
--command "deploy rollback api-service --to previous" \
--runbook "https://runbooks.example.com/api-service/rollback" \
--owner sre-oncall
decionis delivery attest \
--actor "$GITHUB_ACTOR" \
--action DEPLOY \
--target ci:deploy \
--resource api-service \
--environment production \
--changeset-id "release:v1.2.3" \
--approval-state approved \
--rollback-plan-file .decionis/delivery/latest-rollback-plan.json
decionis delivery verify \
--action DEPLOY \
--target ci:deploy \
--resource api-service \
--environment production \
--changeset-id "release:v1.2.3" \
--require-rollback
decionis simulate runaway-payments \
--payments 10000 \
--duration 60s \
--amount 0.01
decionis.yaml
policies/agent-spend-policy.yaml
.decionis/local-ledger.jsonl
.decionis/account.json
.decionis/agent/
.decionis/dossiers/
.decionis/mcp/
.decionis/policies/
.decionis/reports/
policies/delivery-gate-policy.yaml
Local mode uses the bundled economic circuit breaker evaluator. Cloud authority mode uses the configured Decionis API endpoint and still writes local evidence for developer inspection.
With the Authority API running locally, simulate another agent attempting 10,000 payments through the MCP gateway. The payment API boundary rejects any call without a Decionis execution token.
decionis simulate execution-gating \
--attempts 10000 \
--duration 60s \
--amount 0.25 \
--authority http://localhost:3011
decionis init
decionis login
decionis add policy
decionis enforce
decionis mcp serve
decionis agent arm
decionis agent status
decionis policy list
decionis policy create api-cost-policy
decionis policy validate
decionis gate
decionis delivery install
decionis delivery attest
decionis delivery rollback-plan
decionis delivery verify
decionis shadow -- npm run agent
decionis run -- npm run send-payment
decionis inspect <dossier-id-or-path>
decionis verify <dossier-id-or-path>
decionis ledger --verify
decionis simulate runaway-payments
decionis simulate execution-gating
decionis simulate delivery-gating
decionis export --format json
decionis doctor
FAQs
Economic circuit breakers and execution gates for autonomous systems.
We found that decionis 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.