Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

lab-inventory-predictor实验室库存预测器

Agent Skill

lab-inventory-predictor 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,068

周安装

163

GitHub Stars

公开资料未说明

下载量

1,317
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lab-inventory-predictor(实验室库存预测器)
来源仓库:https://github.com/aipoch-ai/lab-inventory-predictor
安装命令:
openclaw skills install lab-inventory-predictor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install lab-inventory-predictor

简介

根据历史使用频率预测实验室试剂消耗时间,并在库存不足时自动生成购买警报。

  • 适用于科研、制药等需要管理实验耗材的场景。
  • 通过分析过往数据趋势,提前预警低库存状态并建议补货。
  • 安装前需确认是否具备试剂数据库访问权限及网络连接能力。
  • lab-inventory-predictor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
lab-inventory-predictor
description
Predict depletion time of critical lab reagents based on historical usage frequency, and automatically generate purchase alerts when stock falls below safety thresholds.
license
MIT
skill-author
AIPOCH
status
beta

Lab Inventory Predictor

Predicts reagent depletion time by analyzing historical usage frequency, and automatically generates reminders when purchases are needed.

Input Validation

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.

Quick Check

python -m py_compile scripts/main.py
python scripts/main.py --help
python scripts/main.py --action status

Prerequisites

  • Python 3.8+ is strictly required (uses 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.
  • The script should include a version guard: if sys.version_info < (3, 8): sys.exit('Error: Python 3.8+ required') before the dataclasses import.
  • No external dependencies (uses only standard library)
pip install -r requirements.txt

When to Use

  • Predict when lab reagents will run out based on historical consumption data
  • Generate purchase alerts before reagents deplete below safety thresholds
  • Track stock levels and usage history for multiple reagents
  • Generate inventory reports in text, JSON, or CSV format

Workflow

  1. Validate input — confirm the request is within scope before any processing.
  2. Confirm the user objective, required inputs, and non-negotiable constraints before doing detailed work.
  3. Use the packaged script path or the documented reasoning path with only the inputs that are actually available.
  4. Return a structured result that separates assumptions, deliverables, risks, and unresolved items.
  5. If execution fails or inputs are incomplete, switch to the fallback path and state exactly what blocked full completion.

Core Capabilities

  1. Inventory Tracking — Record current reagent stock levels
  2. Usage Frequency Analysis — Calculate consumption rate based on experiment records
  3. Depletion Prediction — Predict reagent depletion date based on consumption rate
  4. Purchase Alerts — Generate alerts before reagents are about to deplete
  5. Safety Stock Alerts — Alert when inventory falls below safety threshold

Usage

Command Line

# 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

Python API

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()

Parameters

Global Parameters

ParameterTypeDefaultRequiredDescription
--actionstring-YesAction: status, add-reagent, record-usage, alerts, report
--data-filestring~/.openclaw/workspace/data/lab-inventory.jsonNoPath to inventory data file (must be within workspace; ../ paths rejected)

add-reagent Action

ParameterTypeDefaultRequiredDescription
--namestring-YesReagent name
--current-stockfloat-YesCurrent stock quantity
--unitstring-YesUnit of measurement (ml, mg, etc.)
--safety-daysint7NoSafety buffer days
--lead-time-daysint3NoExpected delivery time
--safety-stockfloat-NoSafety stock threshold

record-usage Action

ParameterTypeDefaultRequiredDescription
--namestring-YesReagent name
--amountfloat-YesAmount consumed
--experimentstring-NoExperiment identifier

report Action

ParameterTypeDefaultRequiredDescription
--output, -ostringstdoutNoOutput file path
--formatstringtextNoOutput format (text, json, csv)

Prediction Algorithm

Consumption Rate

daily_consumption = Σ(usage_amount) / days_span

Depletion Date

days_until_depletion = current_stock / daily_consumption
depletion_date = today + days_until_depletion

Purchase Alert Trigger Conditions

  1. Time-based: When days_until_depletion <= safety_days + lead_time_days
  2. Stock-based: When current_stock <= safety_stock

Confidence Warning

When 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.

Fallback Behavior

If scripts/main.py fails or required inputs are incomplete:

  1. Report the exact failure point and error message.
  2. State what can still be completed (e.g., status check without prediction).
  3. Manual fallback: verify the inventory JSON file exists at the configured path, then re-run with --action status to confirm data integrity.
  4. Do not fabricate execution outcomes or inventory data.

Output Requirements

Every final response must make these items explicit when relevant:

  • Objective or requested deliverable
  • Inputs used and assumptions introduced
  • Workflow or decision path
  • Core result, recommendation, or artifact
  • Constraints, risks, caveats, or validation needs (including LOW_CONFIDENCE flags for sparse data, noted inline per reagent)
  • Unresolved items and next-step checks

Error Handling

  • If required inputs are missing, state exactly which fields are missing and request only the minimum additional information.
  • If the task goes outside the documented scope, stop instead of guessing or silently widening the assignment.
  • If --data-file path contains ../ or points outside the workspace, reject with a path traversal warning.
  • If scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.
  • Do not fabricate files, citations, data, search results, or execution outcomes.

Response Template

Use the following fixed structure for non-trivial requests:

  1. Objective
  2. Inputs Received
  3. Assumptions
  4. Workflow
  5. Deliverable
  6. Risks and Limits (include LOW_CONFIDENCE flag inline per reagent if fewer than 3 usage records)
  7. Next Checks

For stress/multi-constraint requests, also include:

  • Constraints checklist (compliance, performance, error paths)
  • Unresolved items with explicit blocking reasons

If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.54%
按下载量换算1,140

安全审计

VirusTotal

未展示

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills