---
title: "Releasable Patch Rate"
section: "concepts"
type: "concept"
created: "2026-08-27"
updated: "2026-08-27"
tags: ["agentic-patterns", "code-quality", "workflow"]
canonical: "https://pyweb.dev/wiki/releasable-patch-rate"
---
# Releasable Patch Rate

The **Releasable Patch Rate** is the north-star factory metric for autonomous and AI-assisted software engineering. It measures the fraction of generated changes that satisfy every necessary quality, security, architectural, and operational gate required for production release.

```mermaid
flowchart TD
    G[Candidate Patch] --> C1{Correctness}
    C1 -->|Pass| C2{Regression Safety}
    C1 -->|Fail| F[Rejected / Rework]
    C2 -->|Pass| C3{Security Baseline}
    C2 -->|Fail| F
    C3 -->|Pass| C4{Architecture Conformance}
    C3 -->|Fail| F
    C4 -->|Pass| C5{Scope Authorization}
    C4 -->|Fail| F
    C5 -->|Pass| R[Releasable Patch]
```

## The Multiplicative Reliability Law

Quality is not a scalar average; it is a vector of orthogonal constraints that multiply at the release boundary:

$$\text{Releasable Patch Rate} = P(\text{Correctness} \land \text{Regression Safety} \land \text{Security} \land \text{Architecture} \land \text{Scope})$$

A patch that achieves 100% test coverage and passes linting but leaks an API credential or exceeds its authorized file allowlist is **0% releasable**. Averaging metrics hides catastrophic tail risks.

## High-Leverage Metrics vs. Vanity Proxies

| Dimension | Reliable Metric | Distrusted / Poison Proxy |
|---|---|---|
| **Factory Throughput** | Releasable patches per dollar / hour | Lines of Code (LOC) generated |
| **Delivery Success** | Escaped defect rate & rollback frequency | Merge rate & PR count |
| **Review Efficiency** | Actionable findings per reviewer minute | Review comment count |
| **Verification Strength** | Mutation score & differential assertion passes | Raw line coverage percentage |
| **Scope Discipline** | Touched paths within declared allowlist | "Task Complete" self-report |

## Mitigating the Orchestration Tax

When raw code generation outpaces downstream human review and verification bandwidth, organizations experience the **orchestration tax**. Increasing agent concurrency without scaling independent oracles reduces overall software delivery throughput and stability.

---

## Related Concepts
- [agentic code quality](/wiki/agentic-code-quality) — The risk-conditioned control architecture.
- [agentic software factory](/wiki/agentic-software-factory) — Operating models for autonomous development at scale.
- [five debts of agentic engineering](/wiki/five-debts-of-agentic-engineering) — Debt categories that reduce patch releasability.
- [conformance suites as fitness functions](/wiki/conformance-suites-as-fitness-functions) — Deterministic fitness functions for autonomous loops.

---

## Agent Navigation

cluster: person (170 pages) | betweenness: 22.6

### References (outbound)
- [Agentic Code Quality](https://pyweb.dev/wiki/agentic-code-quality.md)
- [Agentic Software Factory](https://pyweb.dev/wiki/agentic-software-factory.md)
- [Five Debts of Agentic Engineering](https://pyweb.dev/wiki/five-debts-of-agentic-engineering.md)
- [Conformance Suites as Fitness Functions](https://pyweb.dev/wiki/conformance-suites-as-fitness-functions.md)

### Referenced by (inbound)
- [Agentic Code Quality](https://pyweb.dev/wiki/agentic-code-quality.md)
- [Agentic Engineering Patterns](https://pyweb.dev/wiki/agentic-engineering-patterns.md)
- [Deterministic Lint Gates](https://pyweb.dev/wiki/deterministic-lint-gates.md)
- [Five Debts of Agentic Engineering](https://pyweb.dev/wiki/five-debts-of-agentic-engineering.md)

### Evidence (verified primary sources)
- [agentic-engineering-systems-evidence-report-2026](https://pyweb.dev/wiki/raw/articles/agentic-engineering-systems-evidence-report-2026.md) | origin: local:/opt/data/cache/documents/doc_7d5c60122087_agentic-engineering-report.md | ingested: 2026-08-27 | sha256: a02a8dda475212f9204bfd621ee63b7b285e0ba722cbf8536e8328fe77d9dfc8
- [addy-osmani-agentic-code-quality-2026](https://pyweb.dev/wiki/raw/articles/addy-osmani-agentic-code-quality-2026.md) | origin: https://addyosmani.com/blog/agentic-code-quality/ | ingested: 2026-08-27 | sha256: 7fa8c35a8f4c2cbb54d688cf503e4d9eb6d34e62247b93db5f8661df2881a7ee
- [dora-ai-assisted-software-development-2025](https://pyweb.dev/wiki/raw/articles/dora-ai-assisted-software-development-2025.md) | origin: https://dora.dev/dora-report-2025/ | ingested: 2026-08-27 | sha256: 1ebe33457ca9698414c34b13ad26379f63ebedfb727f570888703e612324ebfe

### Machine endpoints
- Knowledge graph: https://pyweb.dev/api/graph.json
- Graph analysis: https://pyweb.dev/api/graph-analysis.json
- Context index: https://pyweb.dev/llms.txt
