AGENCYSCRIPT
CoursesEnterpriseBlog
๐Ÿ‘‘FoundersSign inJoin Waitlist
AGENCYSCRIPT

Governed Certification Framework

The operating system for AI-enabled agency building. Certify judgment under constraint. Standards over scale. Governance over shortcuts.

Stay informed

Governance updates, certification insights, and industry standards.

Products

  • Platform
  • Certification
  • Launch Program
  • Vault
  • The Book

Certification

  • Foundation (AS-F)
  • Operator (AS-O)
  • Architect (AS-A)
  • Principal (AS-P)

Resources

  • Blog
  • Verify Credential
  • Enterprise
  • Partners
  • Pricing

Company

  • About
  • Contact
  • Careers
  • Press
ยฉ 2026 Agency Script, Inc.ยท
Privacy PolicyTerms of ServiceCertification AgreementSecurity

Standards over scale. Judgment over volume. Governance over shortcuts.

On This Page

Why AI Documentation Requires a PlatformPlatform ArchitectureCore ComponentsDocumentation Anti-Patterns That Kill AI ProjectsDocumentation for Different AudiencesMeasuring Documentation HealthDelivery ProcessPhase 1: Assessment and Design (Weeks 1-3)Phase 2: Platform Build (Weeks 4-10)Phase 3: Content Migration and Creation (Weeks 11-16)Phase 4: Automation and Adoption (Weeks 17-20)Technology Selection for Documentation PlatformsMaking Documentation SustainablePricing Documentation Platform EngagementsYour Next Step
Home/Blog/One Engineer Left and Two Production Models Broke
Delivery

One Engineer Left and Two Production Models Broke

A

Agency Script Editorial

Editorial Team

ยทMarch 21, 2026ยท13 min read
ai documentationmodel documentationai knowledge managementmlops delivery

A mid-size insurance company had 15 ML models in production. The lead data scientist who built most of them left the company. Within three weeks, two models broke and nobody could fix them because nobody understood how they worked. The training data sources were undocumented. The feature engineering logic was buried in uncommented Jupyter notebooks. The deployment configuration lived in the departed engineer's personal notes. Fixing the two broken models took six weeks and $95,000 in consulting fees. The company then spent an additional $120,000 to reverse-engineer and document the remaining 13 models โ€” work that should have been done as part of the original development but was skipped because "we will document it later."

AI documentation is the most neglected aspect of production AI. Teams invest thousands of hours building models and zero hours documenting them. The result is AI systems that are impossible to maintain, audit, debug, or hand off. For your agency, building AI documentation platforms solves a universal pain point and creates a sticky, recurring engagement.

Why AI Documentation Requires a Platform

AI documentation is harder than traditional software documentation because AI systems have more moving parts and more implicit knowledge.

What needs to be documented:

  • Model cards: What does the model do, how was it trained, what are its limitations, and who is responsible for it?
  • Data documentation: What data was used for training? What are its biases, limitations, and quality characteristics?
  • Feature documentation: What features does the model use? How are they computed? What are their expected ranges and distributions?
  • Architecture documentation: What is the model architecture? What are the key design decisions and their rationale?
  • Training documentation: What training configuration was used? What experiments were run? Why was this configuration selected?
  • Deployment documentation: How is the model deployed? What infrastructure does it run on? How is it scaled and monitored?
  • Operations documentation: What are the runbooks for common operational issues? What are the escalation paths? What are the SLAs?
  • Business documentation: What business problem does the model solve? What are the success metrics? Who are the stakeholders?

Why a platform, not just documents:

  • Documents go stale. A platform can track freshness and alert when documentation has not been updated after a model change.
  • Documents live in silos. A platform provides a single, searchable home for all AI documentation.
  • Documents lack structure. A platform enforces templates and standards that ensure completeness and consistency.
  • Documents are not connected to the systems they describe. A platform can integrate with ML infrastructure to auto-populate technical metadata, detect when documentation is outdated, and link documentation to the systems it describes.

Platform Architecture

Core Components

Document Repository

The central store for all AI documentation. Built on a content management system optimized for technical documentation.

  • Structured templates: Pre-built templates for each documentation type (model card, data card, feature documentation, runbook, architecture decision record)
  • Version control: Every edit is tracked with author, timestamp, and change description. Full history and rollback capability.
  • Rich content: Support for formatted text, diagrams, tables, code snippets, and embedded visualizations
  • Search: Full-text search across all documentation with filtering by document type, project, model, and author
  • Cross-references: Link related documents together. A model card links to its data card, feature documentation, deployment documentation, and operational runbooks.

Template Engine

Standardized templates ensure that documentation is complete and consistent.

Model Card template (adapted from the original Google Research model card framework):

  • Model name, version, and owner
  • Model description (what it does, what it is for)
  • Intended use cases and out-of-scope use cases
  • Training data description and known biases
  • Evaluation results (accuracy, fairness metrics, robustness tests)
  • Limitations and known failure modes
  • Ethical considerations
  • Maintenance schedule and responsible parties

Data Card template:

  • Dataset name, version, and owner
  • Data description (what it contains, how it was collected)
  • Data statistics (size, feature distributions, class balance)
  • Known biases and limitations
  • Privacy and compliance information
  • Preprocessing and transformation steps
  • Data quality metrics and monitoring

Operational Runbook template:

  • System overview and architecture
  • Normal operating parameters
  • Common failure modes and troubleshooting steps
  • Escalation procedures
  • Recovery procedures
  • Contact information for responsible parties

Auto-Population Engine

The highest-value component of the platform. Automatically extracts and populates documentation from ML infrastructure.

  • Model metadata: Pull model architecture, hyperparameters, training configuration, and performance metrics from the experiment tracking system and model registry
  • Data metadata: Pull dataset statistics, schema information, and quality metrics from the data catalog and data quality tools
  • Infrastructure metadata: Pull deployment configuration, resource utilization, and monitoring data from the deployment platform
  • Freshness tracking: Compare documentation content against current system state and flag discrepancies

Governance Layer

  • Completeness scoring: Rate each model's documentation completeness against the required standard. Flag models with incomplete documentation.
  • Freshness monitoring: Alert when documentation has not been updated after a model change (detected via model registry integration)
  • Review workflows: Require documentation review and approval before model deployment
  • Compliance reporting: Generate compliance reports showing documentation status across all AI systems

Documentation Anti-Patterns That Kill AI Projects

The "We Will Document It Later" Pattern. This is the most common and most destructive anti-pattern. Teams tell themselves they will document the model after it ships. They never do. Six months later, the data scientist who built the model cannot remember why they chose a particular feature engineering approach, let alone explain it to someone else. "Later" never comes because there is always another model to build. The fix: make documentation a deployment gate. No documentation, no deployment. Teams resist at first, but once they see the time savings during debugging and handoffs, they become documentation advocates.

The "Wiki Graveyard" Pattern. The team dutifully creates documentation in Confluence or Notion. For the first two months, it is reasonably current. Then a model gets updated and nobody updates the wiki. Six months later, the documentation describes a model version that no longer exists. New team members follow the documentation and waste days debugging issues that the documentation itself creates. The fix: auto-populate documentation from ML infrastructure metadata. The less manual effort required, the more likely documentation stays current.

The "Tribal Knowledge" Pattern. One person knows how the feature pipeline works. Another person knows the model architecture decisions. A third person knows the deployment configuration quirks. None of it is written down. The team operates efficiently as long as everyone is present and communicating, but the moment someone is on vacation, sick, or leaves the company, critical knowledge disappears. The fix: conduct "knowledge extraction" sessions where a technical writer interviews each team member about their domain of expertise and captures it in structured documentation templates.

The "Copy-Paste README" Pattern. Documentation consists entirely of README files in Git repos. The README was written when the project started and describes the initial setup, not the current production system. Entire subsystems that were added after the initial development have no documentation at all because nobody updated the README. The fix: link documentation to specific system components. Each model version, each pipeline version, and each configuration set has its own documentation that is created or updated when the component changes.

The "Over-Documentation" Pattern. Less common but equally problematic. A team creates exhaustive documentation for every experiment, every hyperparameter change, and every minor configuration tweak. The result is thousands of pages of documentation that nobody reads because the signal-to-noise ratio is too low. Finding the important information requires searching through volumes of irrelevant detail. The fix: define documentation tiers. Tier 1 (required for every model): model card, data card, operational runbook. Tier 2 (required for high-risk models): detailed architecture decisions, fairness analysis, compliance documentation. Tier 3 (optional): experiment logs, exploration notes, meeting minutes.

Documentation for Different Audiences

Effective AI documentation recognizes that different audiences need different information presented in different ways.

For data scientists and ML engineers. They need technical depth โ€” model architecture details, training configuration, hyperparameter decisions, feature engineering logic, evaluation results, known failure modes. They want to understand why decisions were made, not just what was decided. Include links to experiment tracking runs, Jupyter notebooks, and code repositories.

For operations and SRE teams. They need operational information โ€” how to deploy, how to monitor, how to troubleshoot, how to rollback. They want runbooks with specific commands and decision trees, not theoretical explanations of the model architecture. Include specific monitoring dashboards, alert definitions, and escalation contacts.

For product managers and business stakeholders. They need business context โ€” what problem does the model solve, how well does it perform in business terms, what are its limitations, and what are the risks. They want dashboards and summaries, not technical specifications. Include business metrics, user impact, and competitive context.

For compliance and legal teams. They need governance information โ€” regulatory compliance documentation, fairness testing results, data lineage, privacy impact assessments, and audit trails. They want evidence packages that can be submitted to regulators, not informal notes. Include formal assessment reports, testing certificates, and approval records.

For new team members. They need onboarding paths โ€” a structured progression from "what does this system do" to "how do I make changes to it." They want learning guides that build knowledge progressively, not a dump of all documentation at once. Include recommended reading orders, prerequisite knowledge, and "start here" guides for each AI system.

Measuring Documentation Health

You cannot improve what you do not measure. Track these metrics to ensure documentation remains healthy over time.

Completeness score. For each AI system, compute the percentage of required documentation that exists. A model card template with 20 required fields that has 15 filled in has a completeness score of 75 percent. Target: 90 percent or higher for production systems.

Freshness score. For each document, track the time since the last update relative to the last change in the system it describes. If a model was retrained last week but its documentation was last updated three months ago, the freshness score is poor. Target: all documentation updated within one week of any system change.

Usage metrics. Track how often documentation is accessed. Documentation that nobody reads is not solving a problem. High-usage documentation is valuable and should be maintained rigorously. Low-usage documentation may need to be reorganized, improved, or consolidated.

Onboarding time. Track how long it takes a new team member to become productive on an AI system. Compare onboarding time before and after the documentation platform is implemented. This is the most compelling metric for demonstrating documentation ROI to leadership. Target: 50 percent reduction in onboarding time.

Incident resolution time. Track how long it takes to diagnose and resolve production incidents. Good documentation with operational runbooks dramatically reduces mean time to resolution. Compare incident resolution time before and after documentation platform implementation.

Documentation debt. Track the number of AI systems with incomplete or outdated documentation. This is your documentation backlog. An increasing documentation debt indicates that the documentation process is not sustainable and needs adjustment.

Delivery Process

Phase 1: Assessment and Design (Weeks 1-3)

  • Audit current documentation practices across the AI organization
  • Inventory all AI systems and assess their documentation status
  • Interview stakeholders to understand documentation needs (developers, operators, auditors, business users)
  • Define documentation standards and templates
  • Design the platform architecture and select technology components

Phase 2: Platform Build (Weeks 4-10)

  • Deploy the document repository
  • Create and configure documentation templates
  • Build the auto-population engine with integrations to ML infrastructure
  • Implement the governance layer (completeness scoring, freshness monitoring)
  • Build the search and navigation interface

Phase 3: Content Migration and Creation (Weeks 11-16)

  • Migrate existing documentation from wikis, Confluence, and other sources
  • Conduct documentation sprints to create documentation for undocumented models
  • Train ML teams on documentation standards and platform usage
  • Establish documentation review processes

Phase 4: Automation and Adoption (Weeks 17-20)

  • Integrate with CI/CD pipelines to trigger documentation updates on model changes
  • Implement automated freshness alerts
  • Build dashboards for documentation health metrics
  • Establish ongoing governance cadence (monthly documentation reviews)

Technology Selection for Documentation Platforms

When to build custom. Build a custom documentation platform when the organization has unique documentation requirements that no off-the-shelf tool addresses, when deep integration with custom ML infrastructure is required, or when the organization already has a strong internal tooling team. Custom platforms typically cost $100,000 to $200,000 to build and $20,000 to $40,000 per year to maintain.

When to extend existing tools. Many organizations already have documentation tools (Confluence, Notion, GitBook) that can be extended with custom integrations for auto-population and governance. This is the fastest path to value. Extend existing tools when the organization is familiar with them, when the customization needed is moderate, and when time to value matters more than feature completeness.

When to use specialized ML documentation tools. Tools like ModelDB, DVC, and ML-specific features within platforms like MLflow and Weights and Biases provide model documentation capabilities out of the box. Use these when the organization needs model-specific documentation (model cards, experiment tracking, lineage) and is already using or planning to adopt these ML platforms.

Making Documentation Sustainable

The biggest challenge with documentation is not building the platform โ€” it is maintaining the documentation over time. Here are strategies that work.

Make documentation part of the development workflow, not an afterthought. Documentation should be updated as part of every model change, not as a separate task. Integrate documentation checks into the deployment pipeline โ€” no deployment without updated documentation.

Automate everything possible. Every piece of information that can be extracted from systems automatically should be. The less manual work required to maintain documentation, the more likely it is to stay current.

Make documentation useful. If documentation is only used for compliance audits, teams will treat it as a burden. If documentation is used daily for onboarding, debugging, and decision-making, teams will maintain it because it helps them.

Measure and incentivize. Track documentation completeness and freshness by team. Include documentation quality in team performance reviews. Celebrate teams that maintain excellent documentation.

Pricing Documentation Platform Engagements

  • Documentation assessment and standards development: $10,000 to $25,000
  • Platform build and configuration: $40,000 to $100,000
  • Platform build with content creation for existing models: $80,000 to $200,000
  • Ongoing documentation operations: $3,000 to $10,000 per month

Your Next Step

This week: Ask your client what would happen if their lead ML engineer left tomorrow. Could someone else maintain their production models? The answer reveals the documentation gap โ€” and the business case for a documentation platform.

This month: Create documentation templates for model cards, data cards, and operational runbooks. Use them on your own agency's projects first to refine the templates.

This quarter: Deliver your first documentation platform engagement. Start with the assessment and platform build, then conduct documentation sprints to create content for existing AI systems.

Search Articles

Categories

OperationsSalesDeliveryGovernance

Popular Tags

prompt engineeringai fundamentalsai toolsthe difference between AIMLagency operationsagency growthenterprise sales

Share Article

A

Agency Script Editorial

Editorial Team

The Agency Script editorial team delivers operational insights on AI delivery, certification, and governance for modern agency operators.

Related Articles

Delivery

Real-Time Stream Processing for AI Applications: The Complete Delivery Guide

When your client's AI model needs predictions in milliseconds instead of minutes, batch processing is not an option. Here is how to deliver production-grade stream processing for AI workloads.

A
Agency Script Editorial
March 21, 2026ยท14 min read
Delivery

Delivering Survival Analysis for Customer Retention: The AI Agency Playbook

A SaaS company knew their churn rate was 18 percent annually but could not predict when specific customers would leave. Survival analysis gave them a 90-day early warning system that saved $2.1 million in ARR.

A
Agency Script Editorial
March 21, 2026ยท13 min read
Delivery

Building Synthetic Data Generation Pipelines โ€” Creating Training Data When Real Data Is Scarce, Sensitive, or Biased

A healthcare AI company generated 500,000 synthetic patient records that preserved statistical patterns while eliminating privacy risk, cutting their model development timeline by 60%. Here is how to build synthetic data pipelines.

A
Agency Script Editorial
March 21, 2026ยท12 min read

Ready to certify your AI capability?

Join the professionals building governed, repeatable AI delivery systems.

Explore Certification