/bio-qms-agent
Invoke BIO-QMS product agents for regulated biotech quality management operations.
Usage
/bio-qms-agent <agent-name> "<task-description>"
Available Agents
| Short Name | Full Agent Name | Type | Model |
|---|---|---|---|
wo-orchestrator | bio-qms-wo-orchestrator | orchestrator | sonnet |
asset-manager | bio-qms-asset-manager | worker | sonnet |
scheduler | bio-qms-scheduler | worker | haiku |
experience-matcher | bio-qms-experience-matcher | worker | haiku |
qa-reviewer | bio-qms-qa-reviewer | evaluator | opus |
vendor-coordinator | bio-qms-vendor-coordinator | worker | sonnet |
documentation | bio-qms-documentation | worker | haiku |
document-analysis | bio-qms-document-analysis | specialist | sonnet |
capa-investigation | bio-qms-capa-investigation | specialist | sonnet |
compliance-monitoring | bio-qms-compliance-monitoring | specialist | sonnet |
Examples
# Work order orchestration
/bio-qms-agent wo-orchestrator "Process work order WO-2024-001 for Reactor-A maintenance"
# CAPA investigation
/bio-qms-agent capa-investigation "Investigate root cause for deviation DEV-2024-015"
# Document analysis
/bio-qms-agent document-analysis "Analyze SOP-QC-001 for ISO 13485 compliance gaps"
# Compliance monitoring
/bio-qms-agent compliance-monitoring "Generate pre-audit compliance report for FDA inspection"
# QA review pre-check
/bio-qms-agent qa-reviewer "Pre-check CAPA-2024-003 for completeness before QA review"
# Asset management
/bio-qms-agent asset-manager "Update calibration records for HPLC-Lab-001"
# Vendor coordination
/bio-qms-agent vendor-coordinator "Assign vendor task for external calibration service"
System Prompt
EXECUTION DIRECTIVE:
When the user invokes /bio-qms-agent, you MUST:
- Resolve agent name from short name to full
bio-qms-*agent name - Load agent definition from
coditect-biosciences-qms-platform/agents/bio-qms-{name}.md - Apply tenant context if working within a BIO-QMS project
- Execute agent using the Task tool with appropriate subagent_type
- Generate audit entry for the invocation (FDA Part 11)
# Resolution
AGENT_SHORT="$1"
AGENT_FULL="bio-qms-${AGENT_SHORT}"
TASK="$2"
# Load product agent definition
AGENT_DEF="submodules/dev/coditect-biosciences-qms-platform/agents/${AGENT_FULL}.md"
# Execute via Task tool
Task(subagent_type="general-purpose", prompt="
You are operating as the ${AGENT_FULL} agent.
Load and follow the agent definition at: ${AGENT_DEF}
Task: ${TASK}
")
Parameters
| Parameter | Required | Description |
|---|---|---|
agent-name | Yes | Short agent name (e.g., wo-orchestrator) |
task | Yes | Task description in quotes |
Success Output
Running: /bio-qms-agent wo-orchestrator
Agent: bio-qms-wo-orchestrator (sonnet)
Product: CODITECT-BIO-QMS
Task: "Process work order WO-2024-001"
---
[Agent output here]
---
Audit: Entry logged (FDA Part 11)
When NOT to Use
- Generic QMS work not specific to BIO-QMS product
- Frontend dashboard development
- Non-regulated quality management tasks
See Also
- Skill:
skills/bio-qms-agent-framework/SKILL.md - Agents:
agents/bio-qms-*.md(10 thin registry entries) - Product SSOT:
submodules/dev/coditect-biosciences-qms-platform/agents/