scientific-skills/Others/lab-inventory-predictor/SKILL.md
Predict depletion time of critical lab reagents based on historical usage frequency, and automatically generate purchase alerts when stock falls below safety thresholds.
npx skillsauth add aipoch/medical-research-skills lab-inventory-predictorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Predicts reagent depletion time by analyzing historical usage frequency, and automatically generates reminders when purchases are needed.
This skill accepts: lab reagent inventory data (stock levels, usage records) for the purpose of predicting depletion dates and generating purchase alerts.
If the user's request does not involve lab reagent inventory management or depletion prediction — for example, asking to analyze experimental results, manage equipment, or perform general data analysis — do not proceed with the workflow. Instead respond:
"lab-inventory-predictor is designed to predict reagent depletion and generate purchase alerts based on usage history. Your request appears to be outside this scope. Please provide reagent inventory data, or use a more appropriate tool for your task."
Do not continue the workflow when the request is out of scope, missing the required --action parameter, or would require unsupported assumptions. For missing inputs, state exactly which fields are missing.
python -m py_compile scripts/main.py
python scripts/main.py --help
python scripts/main.py --action status
dataclasses module). On Python 3.6 the script will fail at import with ModuleNotFoundError. Upgrade with pyenv install 3.8 or conda create -n lab python=3.8.if sys.version_info < (3, 8): sys.exit('Error: Python 3.8+ required') before the dataclasses import.pip install -r requirements.txt
# View all reagent status
python scripts/main.py --action status
# Add or update reagent information
python scripts/main.py --action add-reagent \
--name "PBS Buffer" \
--current-stock 500 \
--unit "ml" \
--safety-days 7
# Record experiment consumption
python scripts/main.py --action record-usage \
--name "PBS Buffer" \
--amount 50 \
--experiment "Cell Culture Experiment #2024-001"
# Get purchase alerts
python scripts/main.py --action alerts
# Generate prediction report
python scripts/main.py --action report
from skills.lab_inventory_predictor import InventoryPredictor
predictor = InventoryPredictor("/path/to/inventory.json")
predictor.add_reagent(name="PBS Buffer", current_stock=500, unit="ml", safety_days=7, lead_time_days=3)
predictor.record_usage("PBS Buffer", 50, "Experiment #001")
prediction = predictor.predict_depletion("PBS Buffer")
print(f"Predicted depletion time: {prediction['depletion_date']}")
alerts = predictor.get_alerts()
| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| --action | string | - | Yes | Action: status, add-reagent, record-usage, alerts, report |
| --data-file | string | ~/.openclaw/workspace/data/lab-inventory.json | No | Path to inventory data file (must be within workspace; ../ paths rejected) |
| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| --name | string | - | Yes | Reagent name |
| --current-stock | float | - | Yes | Current stock quantity |
| --unit | string | - | Yes | Unit of measurement (ml, mg, etc.) |
| --safety-days | int | 7 | No | Safety buffer days |
| --lead-time-days | int | 3 | No | Expected delivery time |
| --safety-stock | float | - | No | Safety stock threshold |
| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| --name | string | - | Yes | Reagent name |
| --amount | float | - | Yes | Amount consumed |
| --experiment | string | - | No | Experiment identifier |
| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| --output, -o | string | stdout | No | Output file path |
| --format | string | text | No | Output format (text, json, csv) |
daily_consumption = Σ(usage_amount) / days_span
days_until_depletion = current_stock / daily_consumption
depletion_date = today + days_until_depletion
days_until_depletion <= safety_days + lead_time_dayscurrent_stock <= safety_stockWhen a reagent has fewer than 3 usage records, the prediction is flagged as LOW_CONFIDENCE. The output will include:
"Warning: Only [N] usage records available for [reagent]. Prediction reliability is low — collect more usage data before relying on this estimate."
Each LOW_CONFIDENCE prediction must include an inline risk note adjacent to the prediction result, not only in the aggregate Risks section.
If scripts/main.py fails or required inputs are incomplete:
--action status to confirm data integrity.Every final response must make these items explicit when relevant:
--data-file path contains ../ or points outside the workspace, reject with a path traversal warning.scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.Use the following fixed structure for non-trivial requests:
For stress/multi-constraint requests, also include:
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.
tools
Generates complete conventional oncology bulk-transcriptome biomarker and hub-gene research designs from a user-provided cancer type and study direction. Always use this skill whenever a user wants to design, plan, or build a tumor bioinformatics study centered on differential expression, prognostic filtering or risk modeling, PPI-based hub-gene prioritization, diagnostic/prognostic evaluation, clinical association, immune infiltration context, methylation context, and optional tissue or cell validation. Covers five study patterns (signature-first prognostic workflow, hub-gene-first biomarker workflow, hybrid signature-to-hub workflow, immune-context biomarker workflow, translational validation workflow) and always outputs four workload configs (Lite / Standard / Advanced / Publication+) with recommended primary plan, step-by-step workflow, figure plan, validation strategy, minimal executable version, publication upgrade path...
development
Generates complete conventional non-oncology bioinformatics research designs from a user-provided disease context, process-related gene family or biological theme, and validation direction. Use when a study centers on multi-dataset bulk transcriptome integration, DEG analysis, process-gene intersection, enrichment analysis, GSEA, PPI hub-gene prioritization, TF/miRNA regulatory networks, ROC-based biomarker evaluation, and immune infiltration analysis. Covers five study patterns (process-DEG discovery, enrichment/GSEA interpretation, hub-gene prioritization, regulatory-network and immune interpretation, multi-layer public validation) and always outputs Lite / Standard / Advanced / Publication+ with a recommended primary plan, stepwise workflow, figure plan, validation hierarchy, minimal executable version, publication upgrade path, and strictly verified literature retrieval.
tools
Plans confounder control, variable adjustment logic, and bias mitigation strategies at the protocol stage for clinical, epidemiologic, translational, observational, and biomarker studies. Always use this skill when a user needs to identify major confounders, decide which variables should or should not be adjusted for, compare matching/stratification/weighting approaches, anticipate selection or measurement bias, or pressure-test a study design before execution. Focus on bias sensing, causal structure awareness, variable-role classification, and critical design review rather than generic statistical advice.
testing
Generates complete comparative network-toxicology research designs from a user-provided exposure pair, shared toxic phenotype, and validation direction. Use when a study centers on two related exposures under one outcome and needs target collection, shared-vs-specific target decomposition, enrichment, PPI hub prioritization, docking, optional transcriptomic cross-checks, and conservative mechanistic synthesis. Covers five study patterns and always outputs Lite / Standard / Advanced / Publication+ with a recommended primary plan, stepwise workflow, figure plan, validation hierarchy, minimal executable version, publication upgrade path, and strictly verified literature retrieval.