Skip to content

CCS Protocol Integration - TypeScript SDK for Agent Governance #3463

Description

@Correctover

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:

  1. Framework-level security: Interceptor pattern ensures fail-closed
  2. Zero-friction integration: 2 lines of code
  3. 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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions