home / skills / a5c-ai / babysitter / cleanroom-protocol-manager

This skill helps manage cleanroom protocols and contamination control, ensuring compliant workflows, traceable documentation, and efficient process execution.

npx playbooks add skill a5c-ai/babysitter --skill cleanroom-protocol-manager

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
2.0 KB
---
name: cleanroom-protocol-manager
description: Cleanroom operations skill for managing protocols, contamination control, and process flows
allowed-tools:
  - Read
  - Write
  - Glob
  - Grep
  - Bash
metadata:
  specialization: nanotechnology
  domain: science
  category: infrastructure-quality
  priority: high
  phase: 6
  tools-libraries:
    - Cleanroom management systems
    - Protocol databases
---

# Cleanroom Protocol Manager

## Purpose

The Cleanroom Protocol Manager skill provides comprehensive management of cleanroom operations for nanofabrication, ensuring protocol compliance, contamination control, and efficient process flows.

## Capabilities

- Protocol version control
- Equipment qualification tracking
- Contamination monitoring
- Process flow documentation
- Training record management
- Maintenance scheduling

## Usage Guidelines

### Protocol Management

1. **Protocol Development**
   - Create step-by-step procedures
   - Define critical parameters
   - Include safety requirements

2. **Process Control**
   - Track process execution
   - Monitor contamination levels
   - Manage equipment status

3. **Documentation**
   - Maintain revision history
   - Track operator training
   - Generate reports

## Process Integration

- All fabrication processes
- Nanomaterial Scale-Up and Process Transfer

## Input Schema

```json
{
  "operation": "create_protocol|update_protocol|track_execution|query_status",
  "protocol_id": "string",
  "process_type": "lithography|deposition|etch|characterization",
  "cleanroom_class": "1|10|100|1000|10000"
}
```

## Output Schema

```json
{
  "protocol": {
    "id": "string",
    "version": "string",
    "status": "active|draft|deprecated",
    "steps": [{
      "step_number": "number",
      "description": "string",
      "equipment": "string",
      "parameters": {}
    }]
  },
  "execution_log": {
    "total_runs": "number",
    "success_rate": "number (%)",
    "last_run": "string"
  },
  "contamination_status": {
    "particle_count": "number",
    "classification_met": "boolean"
  }
}
```

Overview

This skill manages cleanroom operations for nanofabrication, focusing on protocol compliance, contamination control, and streamlined process flows. It centralizes protocol versioning, equipment qualification, contamination monitoring, and execution tracking to reduce risk and improve reproducibility. The skill is designed to integrate with fabrication workflows and supports traceable documentation for audits and transfers.

How this skill works

The skill stores stepwise protocols with version history and critical parameters, and links each step to qualified equipment and operator training records. It ingests execution events to produce execution logs, success rates, and contamination metrics, and it flags deviations or out-of-spec contamination results. Outputs include protocol objects, execution summaries, and contamination status that support decision-making and reporting.

When to use it

  • Develop or update cleanroom process protocols with strict version control
  • Track real-time execution of fabrication processes and capture operator actions
  • Monitor particle counts and contamination classifications during runs
  • Schedule and document equipment qualification and maintenance events
  • Prepare audit-ready reports and process-transfer documentation

Best practices

  • Define clear, step-by-step procedures with required parameters and safety constraints
  • Associate each protocol step with specific qualified equipment and operator training records
  • Use automated contamination thresholds to trigger investigations rather than manual inspection alone
  • Regularly review version history and deprecate obsolete protocols to avoid accidental reuse
  • Integrate maintenance schedules with protocol availability to prevent use of unqualified equipment

Example use cases

  • Create a new lithography protocol with critical dose and bake parameters and assign trained operators
  • Track execution of a deposition run and capture particle counts to validate classification compliance
  • Update an etch protocol after process transfer and maintain a clear revision history for audit
  • Schedule equipment qualification for a sputter tool and block protocol runs until qualification passes
  • Generate a report showing execution success rate and last run details for management review

FAQ

What inputs are required to create or update a protocol?

Provide the operation type (create_protocol or update_protocol), a protocol_id, process_type (lithography, deposition, etch, or characterization), and cleanroom_class. Include step definitions with equipment and parameter details.

How does contamination monitoring integrate with protocol execution?

Execution events submit particle counts and classification checks. The skill compares measurements to defined thresholds, updates contamination_status, and flags steps or runs that fail classification for investigation and corrective action.