Skip to main content

/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 NameFull Agent NameTypeModel
wo-orchestratorbio-qms-wo-orchestratororchestratorsonnet
asset-managerbio-qms-asset-managerworkersonnet
schedulerbio-qms-schedulerworkerhaiku
experience-matcherbio-qms-experience-matcherworkerhaiku
qa-reviewerbio-qms-qa-reviewerevaluatoropus
vendor-coordinatorbio-qms-vendor-coordinatorworkersonnet
documentationbio-qms-documentationworkerhaiku
document-analysisbio-qms-document-analysisspecialistsonnet
capa-investigationbio-qms-capa-investigationspecialistsonnet
compliance-monitoringbio-qms-compliance-monitoringspecialistsonnet

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:

  1. Resolve agent name from short name to full bio-qms-* agent name
  2. Load agent definition from coditect-biosciences-qms-platform/agents/bio-qms-{name}.md
  3. Apply tenant context if working within a BIO-QMS project
  4. Execute agent using the Task tool with appropriate subagent_type
  5. 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

ParameterRequiredDescription
agent-nameYesShort agent name (e.g., wo-orchestrator)
taskYesTask 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/