Hi inkeep team!
Love the "No-Code Visual Builder or TypeScript SDK" approach. Want to introduce CCS (Correctover Conformance Standard) — a protocol that can enhance your TypeScript SDK with framework-level security guarantees.
The Problem: CWE-636
We discovered that all major Agent frameworks (CrewAI, AutoGen, LangGraph) use observer-pattern hooks that fail-open when governance throws exceptions:
Hook: governance_crash → exception caught → hook_blocked=False → tool EXECUTES ❌
CVSS 9.1, affecting the entire ecosystem.
CCS Solution
CCS uses interceptor decorators instead of hooks:
CCS: governance_crash → exception caught → tool NEVER CALLED ✅
TypeScript SDK
We just released the TypeScript version (npm package):
npm install correctover-ccs
import { govern } from "correctover-ccs";
const myTool = govern(
async (args: any) => {
return "result";
},
{ policy: "default" }
);
Governance failures structurally block tool execution. Not "logged and allowed" — blocked.
Integration with inkeep
inkeep's TypeScript SDK can leverage CCS for:
- Framework-level security: Interceptor pattern ensures fail-closed
- Zero-friction integration: 2 lines of code
- Cross-framework compatibility: Works with any framework
CCS Verified Certification
We're offering CCS Verified certification for projects using interceptor-based governance.
inkeep would be an ideal candidate, especially given your focus on enterprise-grade agent platforms.
Resources
Interested in exploring integration or certification?
Thanks!
Hi inkeep team!
Love the "No-Code Visual Builder or TypeScript SDK" approach. Want to introduce CCS (Correctover Conformance Standard) — a protocol that can enhance your TypeScript SDK with framework-level security guarantees.
The Problem: CWE-636
We discovered that all major Agent frameworks (CrewAI, AutoGen, LangGraph) use observer-pattern hooks that fail-open when governance throws exceptions:
CVSS 9.1, affecting the entire ecosystem.
CCS Solution
CCS uses interceptor decorators instead of hooks:
TypeScript SDK
We just released the TypeScript version (npm package):
Governance failures structurally block tool execution. Not "logged and allowed" — blocked.
Integration with inkeep
inkeep's TypeScript SDK can leverage CCS for:
CCS Verified Certification
We're offering CCS Verified certification for projects using interceptor-based governance.
inkeep would be an ideal candidate, especially given your focus on enterprise-grade agent platforms.
Resources
Interested in exploring integration or certification?
Thanks!