Written by: Mark Hull, Co-Founder and CEO, Exceeds AI | Last updated: August 13, 2026
Key Takeaways for Engineering Leaders
- Only 30% of enterprise teams have a fully governed approach to AI coding assistants despite 97% adoption, which creates financial risk as technical debt accumulates.
- A practical governance framework assigns every repository path to one of four risk tiers (Standard, Elevated, Restricted, Prohibited) that map to specific CI/CD enforcement rules.
- Exceeds Ink captures commit-level provenance by writing structured Git Notes that record tool, model, interaction mode, session, and token cost for every AI-assisted change.
- CI/CD guardrails turn policy into automated enforcement through provenance gates, tier enforcement, secret scanning, batch-size limits, and SAST/dependency checks.
- Exceeds AI provides longitudinal outcome tracking and board-ready ROI reports that connect AI-attributed commits to 30/60/90-day metrics; connect your repo and start your free pilot today.
Why AI Coding Governance Now Sits at Board Level
51% of professional developers use AI coding assistants daily, yet only 30% of enterprise teams have a fully governed approach to oversight despite 97% adoption. That gap creates measurable financial liability. Organizations without formal AI code management frameworks report higher rates of production incidents attributable to AI-assisted code than enterprises with established governance protocols, and AI coding investments can turn ROI-negative over time as technical debt servicing costs overwhelm initial productivity gains when governance is absent.
The productivity case for AI remains strong. McKinsey’s February 2026 study of 4,500 developers across 150 enterprises found 46% time savings on routine tasks but under 10% on complex work. The same study also found that AI assistance was associated with a 23.5% increase in incidents per pull request. Teams with full governance in place are more than twice as likely to report a major improvement in efficiency (90% vs. 44%), which makes governance the ROI multiplier rather than a productivity tax.

Policy language alone cannot deliver that multiplier. Governance becomes machine-enforceable only when every commit carries a structured, auditable record of AI authorship. Exceeds Ink provides that record as a lightweight Rust binary that writes a portable Git Note at refs/notes/exceeds-ink alongside every commit, capturing the tool, model, session, interaction mode, and token cost. It does this without modifying commit messages or running a long-lived daemon on developer machines.
Four Risk Tiers for AI-Generated Code
A functional framework assigns every repository path and change type to one of four risk tiers. Each tier maps to specific Exceeds Ink Git Notes fields that make the classification machine-readable and CI-enforceable.
- Tier 1 — Standard (Green). This tier covers boilerplate, test scaffolding, documentation, and internal utilities with no access to sensitive data. Exceeds Ink records
interaction_mode: askoredit,tool, andmodel. Standard CI gates apply, and teams do not need additional human sign-off beyond normal review. - Tier 2 — Elevated (Yellow). This tier includes business logic, API surface changes, and data-processing pipelines. These changes carry business risk, so Ink records
interaction_mode,session_id,turn_count, andtoken_costto capture full context. That context allows CI to verify that a human reviewer explicitly approved the diff. When Ink detects agent-mode commits (interaction_mode: agent) without a preceding plan phase, CI automatically applies a review-required label so autonomous changes receive human oversight. - Tier 3 — Restricted (Orange). This tier covers authentication, authorization, cryptography, secrets handling, and payment flows. Ink records the full attestation including
prompt_hash(redacted before persistence) andunknown_linescount. CI blocks merge if AI-attributed line share exceeds a configurable threshold (for example, 40%) without a documented exception. SAST and dependency scans run on every diff, and NIST AI RMF GOVERN function controls apply, which require tamper-resistant logs tying AI suggestions to human approvers. - Tier 4 — Prohibited (Red). This tier includes regulated data stores, HSM integrations, and compliance-boundary code. AI coding assistants are blocked at the IDE policy layer. Any commit where Ink detects AI authorship in a Tier 4 path fails CI unconditionally and routes to a security review queue with a full Ink trace attached.
Provenance Enforcement with Exceeds Ink
Provenance enforcement starts with an approved-tool registry. Every AI coding assistant in use, including Cursor, Claude Code, Codex, GitHub Copilot, and Windsurf, must be registered, and Exceeds Ink’s per-tool checkpoint materializers capture authorship with line-level fidelity for each. Tools not on the registry produce commits where Ink records tool: unregistered, which triggers an automatic CI warning and routes the PR to a shadow-AI review queue. Shadow AI, where developers use personal or unsanctioned tools, must be monitored for complete governance visibility because enterprise-only telemetry undercounts usage and misattributes productivity gains.
Data-classification rules map directly to NIST controls. Repositories tagged as containing PII, PHI, or financial data require Ink’s aggregate-only mode for prompt content, where a single environment variable keeps transcripts off the wire entirely. This approach satisfies NIST SP 800-53 Rev 5 AU-2 audit logging requirements while avoiding exposure of sensitive context.
The refs/notes/exceeds-ink schema captures the following fields on every attested commit:
tool, which records the specific AI coding assistant (for example,cursor,claude-code,codex).model, which records the underlying model version (for example,claude-opus-4,gpt-4o).interaction_mode, which records one ofplan,ask,agent,edit, orheadless.session_idandturn_count, which enable session replay and audit.token_cost, which records spend per session correlated with shipped output.unknown_lines, which records lines Ink cannot confidently attribute and treats them conservatively rather than silently assigning them.schema_version, which recordsauthorship/3.0.0for forward-compatible parsing.
Because Git Notes travel with the repo across forks and mirrors, the attestation remains portable and auditable by anyone with repository access. This design avoids vendor lock-in and keeps data out of proprietary clouds.
CI/CD Guardrails for AI-Generated Diffs
With provenance captured at every commit, the next step is enforcement. CI/CD guardrails translate risk-tier policy into automated enforcement by reading Ink attestations and applying the appropriate gates before code reaches production. The following gates apply at pull-request creation and pre-merge:
- Provenance gate: Every commit in the PR must carry a valid
refs/notes/exceeds-inknote. Missing attestations block merge and surface in the Exceeds AI dashboard for fleet-ops review. - Tier enforcement gate: CI reads the Ink note’s
toolandinteraction_modefields, cross-references the changed file paths against the tier registry, and applies the corresponding review and scan requirements automatically. - Secret-scanning gate: GitGuardian telemetry recorded a 40% higher secrets-leak rate compared to baseline, which makes pre-merge secret scanning the single most actionable security control. Ink’s LLM-based prompt redaction catches low-entropy tokens and prefixed PATs that entropy-only scanners miss.
- Batch-size gate: PRs where agent-mode lines exceed a configurable threshold, such as 500 net lines, are automatically labeled for senior-engineer review and routed to a dedicated review queue.
- SAST/dependency gate: Tier 2 and above trigger SAST on AI-attributed diffs. 45% of AI-generated code introduced an OWASP Top 10 vulnerability when no security guidance was provided, which makes automated scanning non-negotiable for elevated paths.
Audited CI/CD pipelines require a queryable store of build attestations retained for the control period, with SOC 2 requiring a minimum of 12 months and FedRAMP requiring 3 years, cryptographically linked to the artifacts they describe. Exceeds Ink’s HMAC-SHA256-signed remote ingest with revocable per-machine tokens satisfies this requirement while keeping the capture code auditable by your CISO in a single afternoon.

Human Accountability and Exception Workflow
Governance frameworks fail when exception workflows are manual and undocumented. Exceeds AI enforces a structured exception path:
- Exception request: The engineer submits a PR with an Ink-attested commit that would otherwise fail a Tier 3 or Tier 4 gate. The CI system surfaces the Ink trace, including tool, model, interaction mode, token cost, and unknown-line count, alongside the exception request.
- Security review: A designated security reviewer receives the full Ink attestation and the diff. Approval is logged with a timestamp and reviewer identity in the tamper-evident audit trail.
- Time-bounded exception: Approved exceptions expire after a configurable window, with 30 days as the default. Exceeds AI surfaces open and expired exceptions in the governance dashboard so they cannot silently persist.
- Post-merge monitoring: Exceeds AI’s longitudinal outcome tracking flags exception-approved commits for elevated monitoring in the 30/60/90-day windows described below.
Interaction-mode classification provides the signal that makes human accountability coaching actionable. When Ink records a high share of agent-mode commits without a preceding plan phase, Exceeds AI’s Coaching Surfaces highlight that pattern to the manager as a coachable moment. The coaching flows through the ink-prompting-coach skill directly inside the engineer’s own Claude Code or Cursor agent.
Longitudinal Tracking to Surface Hidden Technical Debt
The most consequential quality failures from AI-generated code often appear well after initial review. A 2026 empirical study analyzing 304,362 verified AI-authored commits across 6,275 GitHub repositories found that 24.2% of issues introduced by AI coding assistants still survived at the latest repository revision. Teams without automated quality review on AI code can experience steady growth in hotfix PRs over time.
Exceeds AI’s longitudinal outcome tracking, anchored to Ink’s per-commit attestation, monitors AI-touched code across three windows:
- 30 days: Rework rate, measured as lines deleted within 30 days of merge, first-pass review rate by provenance, and change failure rate segmented by Ink-attested tool and interaction mode. Change failure rate is the earliest warning metric under AI adoption because velocity metrics improve first while stability failures lag 30–90 days.
- 60 days: Incident traceability, where production incidents are linked back to the Ink-attested commit, tool, model, and session that produced the implicated code. Security findings per 1,000 AI-attributed lines are compared against the tier baseline.
- 90 days: AI Code Survival Rate, defined as the percentage of AI-generated code remaining unchanged, along with hotfix frequency delta and cyclomatic complexity drift per AI-attributed PR.
Because every data point anchors to a specific Ink attestation, the platform can answer the question auditors and boards actually ask in concrete terms: when AI-assisted code caused an incident, which tool produced it, in which mode, at what token cost, and who approved the merge.

30/60/90-Day Rollout Roadmap for Governance
A phased rollout keeps governance from becoming a one-time project that drifts into irrelevance.
- Days 1–30 — Foundation. Authorize Exceeds AI with read-only repo access on GitHub, GitLab, or Azure DevOps. Deploy Exceeds Ink hooks per repo with per-machine opt-in. Establish 30-day DORA baselines segmented by human-authored, AI-assisted, and agent-authored cohorts. Publish the approved-tool registry and tier classification for all active repositories. First insights appear within 60 minutes of Ink installation.
- Days 31–60 — Enforcement. Activate CI provenance gates and secret-scanning rules. Enable Tier 2 and Tier 3 review requirements. Begin 30-day longitudinal tracking on all Ink-attested commits. Deploy ink-prompting-coach to pilot teams. Review interaction-mode distribution and identify agent-without-plan patterns for coaching.
- Days 61–90 — Optimization and Reporting. Generate a board-ready ROI report comparing AI-attributed versus human-attributed cycle time, rework rate, and incident rate. Activate 60- and 90-day outcome tracking. Use Best Practices Insights, powered by LangGraph-backed analysis of your team’s actual AI-coding patterns, to identify the top three skills worth scaling. Distribute winning patterns via Skill Transfer to underperforming teams.
Book a demo and get your rollout roadmap in one session.
Frequently Asked Questions
How Exceeds Ink Differs from Heuristic AI Detection
Heuristic and watermark-based detection, which looks for patterns like large code volumes written in a short window or vendor-specific markers left in output, tops out around 20–25% accuracy by Exceeds’ own assessment. These methods cannot reveal which interaction mode the engineer used, how many tokens were spent, or whether the engineer had a deliberate back-and-forth with the model. Exceeds Ink uses client-level capture through a lightweight Rust binary installed on the developer’s machine that observes what AI coding tools actually do at commit time and writes a structured Git Note at refs/notes/exceeds-ink. Every line carries its tool, model, session, turn, interaction mode, and timestamp. Lines Ink cannot confidently attribute are recorded as unknown_lines rather than silently rolled into “human” or “AI.” The result is an audit-grade record that answers questions from boards, legal counsel, and regulators with evidence rather than estimates.
Governing Multiple AI Coding Tools in One Framework
Exceeds Ink is tool-agnostic by design, with dedicated per-tool checkpoint materializers for Claude Code, Cursor, and Codex that resolve edit evidence against the actual working tree at commit finalization. GitHub Copilot and Windsurf are supported as first-class adapters, and lighter-weight detection covers up to approximately 50 AI tools. The approved-tool registry in the governance framework applies uniformly. Any tool not on the registry produces a commit where Ink records tool: unregistered, which triggers the shadow-AI review workflow regardless of which vendor’s product was used. This consistency matters because teams routinely use Cursor for feature work, Claude Code for large refactors, Codex for batch transforms, and GitHub Copilot for autocomplete, often in the same sprint. The framework must govern all of them, not just the one with the most visible telemetry.
Proving AI ROI to the Board with Outcome Metrics
Activity metrics such as tokens consumed, suggestions accepted, and lines generated measure output rather than outcomes. Exceeds AI connects Ink’s per-commit attestation to downstream signals that boards care about, including cycle time, rework rate, incident rate, and change failure rate, all segmented by AI-attributed versus human-authored code. A board-ready ROI report from Exceeds AI focuses on patterns such as improved cycle time in Tier 1 paths or elevated 30-day incident rates for agent-mode commits in Tier 2 paths without a plan phase. Those patterns become coaching opportunities instead of reasons to remove tools. This specificity, anchored to Ink’s Git Notes rather than survey data or vendor telemetry, converts AI investment discussions from sentiment to evidence.

What Happens to Governance Data If You Stop Using Exceeds AI
Exceeds Ink writes attestations as standard Git Notes at refs/notes/exceeds-ink. Git Notes are a native Git feature that travel with the repository across forks and mirrors, remain readable by any Git client, and persist entirely outside the Exceeds platform. If Ink stopped collecting tomorrow, every AI coding tool would continue working exactly as it does today, and every attestation already written would remain in your repository history. The local CLI (exceeds-ink blame / stats / trace / prompt) provides inspection without a platform connection. For organizations that want to pipe provenance data into their own data warehouse and BI tools, Ink supports standalone deployment with a configurable remote ingest URL, including a self-hosted option backed by your own Postgres instance.
Conclusion: Turning AI Coding into a Governed System
An enterprise AI governance framework for coding assistants functions as a machine-enforceable system that begins at the commit and extends through 90-day outcome tracking. Most organizations still rely on manual PR comments and vendor dashboards that cannot answer the questions boards, auditors, and regulators now ask.
Exceeds AI and Exceeds Ink close that gap through risk tiers enforced at the CI gate, commit-level provenance in your own repository, and longitudinal outcome tracking anchored to the exact session that produced each line. The platform then turns those signals into board-ready ROI reports in weeks rather than quarters. Setup takes hours, not months, and the attestation lives in your repo instead of a vendor’s cloud.
Book a demo and see your first governance insights within the hour.