Google Sheets
Create Decionis decision dossiers for new Google Sheets rows
Turn spreadsheet rows into governed actions—not blind automation.
For Approvals, finance operations, and spreadsheet-driven imports.
For developers
One call, from wherever the action originates: an agent's tool call, your own function, a pipeline step, or plain HTTP. You get ALLOW, ESCALATE or BLOCK, and a signed Decision Dossier explaining why.
Wherever the action originates, the call is the same shape and the answer is the same verdict.
Start from a reviewed public template.
Sheets · HubSpot · Shopify → signed dossierDocsThe action you are about to take.
{
"org_id": "${DECIONIS_ORG_ID}",
"decision_type": "production_deploy",
"mode": "ENFORCEMENT",
"context": {
"actor": "github-actions",
"resource": "payments-api",
"environment": "production"
}
}Deterministic, and signed.
{
"outcome": "ESCALATE",
"policy_version": "deploy-authority-v3",
"dossier_id": "dd_2c4f9b1a…",
"dossier_sha256": "9f2c…",
"ledger_entry_hash": "7a10…"
}Offline, against the published JWKS.
$ npx @decionis/verify \
https://api.decionis.com/v1/public\
/decision-dossiers/dd_2c4f9b1a…/proof-bundle
portable_artifact sha256 ok signature ok
VERIFIEDDifferent entry points. Same protocol, same verdict, same proof.
No code path for operations teams: the same protocol verdict and signed dossier, packaged as three reviewed public templates.
Google Sheets
Turn spreadsheet rows into governed actions—not blind automation.
For Approvals, finance operations, and spreadsheet-driven imports.
HubSpot
Every new HubSpot deal gets a signed policy decision.
For Deal governance, revenue operations, and CRM-controlled handoffs.
Shopify
Every paid Shopify order produces verifiable decision evidence.
For Commerce operations, margin controls, refunds, and order governance.
Decionis does not replace the model, the protocol, or the tool. It is the authority check between the intent and the effect.
The protocol reached directly — from an agent's tool call, your own code, a pipeline, or plain HTTP. This is the shortest path from nothing to a first verdict.
Every tool call an agent makes can ask Decionis before it runs.
Every function in your own code can ask Decionis before it commits.
Every deployment can ask Decionis before it ships.
Every command in a terminal or a pipeline can ask Decionis before it executes.
Every system you already run can ask Decionis over plain HTTP.
Every automation step can ask Decionis before it fires.
Everything on this list resolves without an account or a conversation. We list it explicitly rather than gesturing at a GitHub org, because the point of this section is that you can check it.
Ask the hosted protocol for a verdict on a proposed action from your own code, and read the Decision Dossier that comes back.
npm install @decionis/sdkCheck a Decision Dossier's Ed25519 signatures against our published JWKS, offline. Node's built-in crypto, no runtime dependencies, and no Decionis account — the verdict does not depend on us being reachable or honest.
npx @decionis/verify <proof-bundle url>Require a verdict before a workflow step executes — deploys, releases and infra changes, in shadow or enforce mode. Public repository.
uses: decionis/govern@v1Put the same gate in front of an agent's tool calls, egress and spending — MCP policy tools plus native hooks for Claude, Codex and Copilot.
npx @decionis/mcpEvery Decionis package that resolves on npm today, what each is for, and whether it is the one to reach for. Nothing is listed here until it installs.
| Package | Purpose | Get it | Status |
|---|---|---|---|
| @decionis/sdkAsk | Ask the hosted protocol for a verdict from your application. | npm install @decionis/sdk | Current |
| @decionis/verifyVerify | Verify a signed Decision Dossier independently, offline. | npx @decionis/verify <proof-bundle url> | Current |
| decionis/governGate CI/CD | Require a verdict before a GitHub workflow step executes. | uses: decionis/govern@v1 | Current |
| @decionis/mcpConnect agents | Gate an agent's tool calls, egress and spending. | npx @decionis/mcp | Current |
| @decionis/surface | Embed the policy and inline guard engine directly. | npm install @decionis/surface | Current |
| @decionis/iso8583 | Gate ISO 8583 payment messages before they settle. | npm install @decionis/iso8583 @decionis/sdk | Current |
| @decionis/aws-lambda-guard | Gate an AWS Lambda or EventBridge Pipes invocation. | npm install @decionis/aws-lambda-guard | Current |
| @decionis/aws-securityhub | Stream signed dossiers into AWS Security Hub. | npm install @decionis/aws-securityhub | Current |
| @decionis/bedrock-guard | Gate an Amazon Bedrock agent action group. | npm install @decionis/bedrock-guard | Current |
| @decionis/langchain | Gate a LangChain tool or LangGraph node. | npm install @decionis/langchain | Current |
| n8n-nodes-decionis | Gate an n8n workflow step. | npm install n8n-nodes-decionis | Current |
| @decionis/sdk-node | The previous name for the application SDK.Use @decionis/sdk instead. | npm install @decionis/sdk | Legacy |
| @decionis/dossier-verify | The previous name for the dossier verifier.Use @decionis/verify instead. | npx @decionis/verify <proof-bundle url> | Legacy |
| @decionis/iso8583-interceptor | The previous name for the ISO 8583 interceptor.Use @decionis/iso8583 instead. | npm install @decionis/iso8583 | Legacy |
The protocol implementation is not open source today. What is public is exactly the list above — nothing else is on npm or in a public repository yet. The Decision Dossier format is documented and independently verifiable against our published JWKS, so you can check a verdict without trusting our code.
Read the Decision Dossier formatEvery endpoint, every field of the decision contract, and the shape of a Decision Dossier.
Put the decision layer on an agent's tool-call boundary so no tool runs unevaluated.
Turn written authority into executable rules, versioned and pinned so decisions reproduce.
Fork a decision recipe someone else already runs instead of authoring from scratch.
Reach the protocol from any system that can make an HTTP request.
The whole architecture in seven drawings, each downloadable for your own docs.
The public artifacts, the API, and the fastest path to a first verdict.