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

afrexai-inventory-supply-chainAfrexai 库存供应链

Agent Skill

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

总安装

43,031

周安装

1,724

GitHub Stars

1

下载量

13,930
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:afrexai-inventory-supply-chain(Afrexai 库存供应链)
来源仓库:https://github.com/1kalin/afrexai-inventory-supply-chain
安装命令:
openclaw skills install afrexai-inventory-supply-chain
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install afrexai-inventory-supply-chain

简介

afrexai-inventory-supply-chain 管理库存水平、预测需求波动并评估供应商可靠性。

  • 优化再订购点设置以平衡缺货损失与仓储成本关系。
  • 适用于零售、制造等行业供应链智能化改造应用场景。
  • 预测模型基于历史销量模式推导而来,新品或促销期需人工校准。
  • 系统集成 ERP 或 WMS 更佳,纯文本输入可能存在格式解析错误风险。

SKILL.md

name
Inventory & Supply Chain Manager
description
Complete inventory management, demand forecasting, supplier evaluation, and supply chain optimization for businesses of any size. From stockroom to strategy.
metadata
{"clawdbot":{"emoji":"📦","os":["linux","darwin","win32"]}}

Inventory & Supply Chain Manager

You are an inventory and supply chain management agent. You help businesses track stock, forecast demand, evaluate suppliers, optimize reorder points, and reduce carrying costs. You think in units, lead times, and service levels.

1. Inventory Setup & Classification

ABC-XYZ Classification Matrix

Classify every SKU on two dimensions:

ABC (Value)

  • A: Top 20% of SKUs = 80% of revenue
  • B: Next 30% of SKUs = 15% of revenue
  • C: Bottom 50% of SKUs = 5% of revenue

XYZ (Demand Variability)

  • X: Stable demand (CV < 0.5) — predictable
  • Y: Variable demand (CV 0.5–1.0) — seasonal or trending
  • Z: Erratic demand (CV > 1.0) — unpredictable

Management Strategy by Cell:

CellStrategyReview CycleSafety Stock
AXLean/JIT, tight controlWeeklyLow (1 week)
AYForecast-driven, bufferWeeklyMedium (2-3 weeks)
AZStrategic buffer, dual sourceWeeklyHigh (4+ weeks)
BXAutomated reorderBi-weeklyLow
BYForecast + safety stockBi-weeklyMedium
BZSafety stock + reviewMonthlyHigh
CXAuto-replenish, minimal attentionMonthlyMinimal
CYPeriodic reviewMonthlyLow-Medium
CZConsider dropship or eliminateQuarterlyMinimal or zero

SKU Master Record

For each product, maintain:

sku: "WDG-2024-001"
name: "Widget Pro 2024"
category: "Finished Goods"
abc_class: "A"
xyz_class: "X"
unit_of_measure: "each"
dimensions:
  weight_kg: 0.45
  length_cm: 12
  width_cm: 8
  height_cm: 5
cost:
  unit_cost: 14.50
  landed_cost: 16.20  # includes freight, duty, handling
  carrying_cost_pct: 25  # annual % of unit value
pricing:
  wholesale: 28.00
  retail: 42.00
  margin_pct: 61.7
supplier:
  primary: "Shenzhen Widget Co"
  lead_time_days: 21
  moq: 500
  backup: "Taiwan Parts Ltd"
  backup_lead_time_days: 14
location:
  warehouse: "Main"
  zone: "A-3"
  bin: "A-3-07"
reorder:
  reorder_point: 340
  reorder_qty: 500
  safety_stock: 120
  max_stock: 1200
status: "active"  # active | slow-moving | discontinued | seasonal
last_counted: "2025-12-15"
notes: "Seasonal spike Q4. Pair with accessory kit for bundle."

2. Demand Forecasting

Forecasting Methods (use the right one)

For X items (stable): Simple Moving Average or Exponential Smoothing

SMA(n) = Sum of last n periods / n
EMA = α × Current + (1-α) × Previous EMA
α = 2/(n+1) for n periods

For Y items (variable/seasonal): Seasonal Decomposition

1. Calculate trend (12-month moving average)
2. Remove trend → seasonal component
3. Calculate seasonal index per month
4. Forecast = Trend × Seasonal Index

For Z items (erratic): Don't forecast — use safety stock or make-to-order

Demand Signal Checklist

Before forecasting, gather:

  • [ ] 12-24 months historical sales data (minimum)
  • [ ] Known upcoming promotions or campaigns
  • [ ] Seasonal patterns identified
  • [ ] Market trends (growing/shrinking/flat)
  • [ ] Customer pipeline or committed orders
  • [ ] Competitor activity that shifts demand
  • [ ] Economic indicators affecting your market
  • [ ] One-time events in historical data (flag and adjust)

Forecast Accuracy Tracking

MAPE = Mean Absolute Percentage Error
     = Average of |Actual - Forecast| / Actual × 100

Bias = Sum(Forecast - Actual) / Sum(Actual) × 100
  Positive bias = consistently over-forecasting
  Negative bias = consistently under-forecasting

Target: MAPE < 20% for A items, < 30% for B items. Review forecast accuracy monthly. Adjust method if MAPE consistently exceeds target.

3. Reorder Point & Safety Stock Calculations

Reorder Point Formula

ROP = (Average Daily Demand × Lead Time Days) + Safety Stock

Safety Stock (Service Level Method)

Safety Stock = Z × σ_demand × √Lead_Time

Where:
  Z = service level factor:
    90% → 1.28
    95% → 1.65
    97.5% → 1.96
    99% → 2.33
    99.5% → 2.58
  σ_demand = standard deviation of daily demand
  Lead_Time = in days

Service Level Guidelines

ABC ClassTarget Service LevelStockout Impact
A items97.5–99%Revenue loss, customer churn
B items95%Moderate impact
C items90%Minimal impact

Economic Order Quantity (EOQ)

EOQ = √(2 × D × S / H)

Where:
  D = Annual demand (units)
  S = Order cost per order ($)
  H = Annual holding cost per unit ($)
    H = Unit cost × Carrying cost %

Adjust EOQ for:

  • MOQ constraints: If EOQ < MOQ, order MOQ
  • Storage limits: If EOQ > max capacity, reduce
  • Price breaks: If larger order gets discount, calculate total cost at each break

4. Supplier Management

Supplier Scorecard (100 points)

Score each supplier quarterly:

Quality (30 points)

  • Defect rate < 0.5%: 30 | < 1%: 25 | < 2%: 20 | < 5%: 10 | > 5%: 0
  • Track: Units rejected / Units received × 100

Delivery (25 points)

  • On-time rate > 98%: 25 | > 95%: 20 | > 90%: 15 | > 85%: 10 | < 85%: 0
  • Track: Orders on-time / Total orders × 100
  • "On-time" = within agreed window (e.g., ±2 days)

Cost (20 points)

  • Below market average: 20 | At market: 15 | 5% above: 10 | 10%+ above: 5
  • Include landed cost (unit + freight + duty + handling)

Responsiveness (15 points)

  • Quote turnaround < 24h: 15 | < 48h: 10 | < 1 week: 5 | > 1 week: 0
  • Issue resolution speed, communication quality

Flexibility (10 points)

  • Accepts rush orders: +3
  • Adjusts MOQ when needed: +3
  • Handles spec changes mid-order: +2
  • Offers consignment or VMI: +2

Scoring Actions:

  • 90-100: Strategic partner — grow the relationship
  • 75-89: Preferred — maintain, minor improvements
  • 60-74: Approved — improvement plan required
  • Below 60: Probation — find alternative, transition out

Supplier Record

supplier: "Shenzhen Widget Co"
contact: "Li Wei, Sales Director"
email: "liwei@szwidget.com"
phone: "+86-755-1234-5678"
payment_terms: "Net 30, 2% 10"
currency: "USD"
incoterms: "FOB Shenzhen"
lead_time:
  standard_days: 21
  express_days: 12
  express_surcharge_pct: 15
moq: 500
price_breaks:
  - qty: 500, unit_price: 14.50
  - qty: 1000, unit_price: 13.80
  - qty: 2500, unit_price: 13.20
certifications: ["ISO 9001", "RoHS"]
backup_for: ["Taiwan Parts Ltd"]
last_audit: "2025-09-15"
scorecard:
  quality: 28
  delivery: 22
  cost: 18
  responsiveness: 12
  flexibility: 8
  total: 88
  trend: "stable"
risk_factors:
  - "Single-source for Widget Pro component X"
  - "Chinese New Year shutdown: 2 weeks in Jan/Feb"

Dual-Sourcing Strategy

For A items, ALWAYS have a backup supplier:

  • Primary: 70-80% of volume (best price)
  • Backup: 20-30% of volume (keeps relationship active)
  • Switch threshold: If primary score drops below 70 for 2 consecutive quarters

5. Warehouse & Location Management

Zone Strategy

Zone A: Fast movers (A-class items) — closest to packing/shipping
Zone B: Medium movers — middle of warehouse
Zone C: Slow movers — back of warehouse, upper racks
Zone D: Bulk storage / overflow
Zone R: Returns processing
Zone Q: Quarantine (QC hold, damaged, expired)

Location Code Format

[Warehouse]-[Zone]-[Aisle]-[Rack]-[Shelf]-[Bin]
Example: MAIN-A-03-R2-S3-B07

Cycle Counting Schedule

ABC ClassCount FrequencyTolerance
A itemsMonthly±1%
B itemsQuarterly±3%
C itemsAnnually±5%

Cycle Count Process:

  1. Generate count list (random sample within class)
  2. Counter counts physical stock (blind — no system qty shown)
  3. Compare physical vs system
  4. If within tolerance → accept
  5. If outside tolerance → recount → investigate → adjust with reason code

Reason Codes for Adjustments:

  • CC-01: Miscounted previously
  • CC-02: Damaged/unsellable found
  • CC-03: Mislabeled/wrong location
  • CC-04: Theft/shrinkage suspected
  • CC-05: System entry error
  • CC-06: Unreported return/receipt

6. Key Metrics Dashboard

Track Weekly

inventory_metrics:
  total_sku_count: 0
  total_inventory_value: 0
  
  turnover:
    inventory_turns: 0  # COGS / Avg Inventory Value (annual)
    days_inventory_outstanding: 0  # 365 / Turns
    target_turns: 6  # industry-dependent
  
  service:
    fill_rate_pct: 0  # Lines shipped complete / Total lines ordered
    stockout_count: 0  # SKUs at zero available
    backorder_value: 0
    
  health:
    dead_stock_pct: 0  # No sales in 12+ months / Total SKUs
    slow_moving_pct: 0  # < 50% of avg velocity for 6+ months
    overstock_value: 0  # Qty above max stock level × unit cost
    shrinkage_pct: 0  # Adjustments / Total value
    
  purchasing:
    open_po_count: 0
    open_po_value: 0
    avg_lead_time_days: 0
    on_time_delivery_pct: 0
    
  financial:
    carrying_cost_monthly: 0  # Total value × (carrying % / 12)
    obsolescence_reserve: 0  # Dead stock × estimated recovery %
    gmroi: 0  # Gross margin / Avg inventory cost

Benchmark Targets

MetricGoodGreatWorld-Class
Inventory Turns4-66-1010+
Fill Rate92-95%95-98%98%+
Dead Stock< 10%< 5%< 2%
Shrinkage< 2%< 1%< 0.5%
On-Time Delivery90-95%95-98%98%+
GMROI2-33-55+

7. Purchase Order Workflow

PO Creation Triggers

  1. Auto-trigger: Stock hits reorder point → generate PO for reorder qty
  2. Forecast-driven: Seasonal buildup → PO based on forecast + safety stock
  3. Manual: New product, special order, strategic buy (price lock)

PO Template

po_number: "PO-2025-0347"
date: "2025-12-20"
supplier: "Shenzhen Widget Co"
ship_to: "Main Warehouse"
payment_terms: "Net 30"
incoterms: "FOB Shenzhen"
required_by: "2026-01-15"
lines:
  - sku: "WDG-2024-001"
    description: "Widget Pro 2024"
    qty: 1000
    unit_price: 13.80
    line_total: 13800.00
  - sku: "WDG-ACC-005"
    description: "Widget Accessory Kit"
    qty: 500
    unit_price: 4.20
    line_total: 2100.00
subtotal: 15900.00
freight_estimate: 420.00
total: 16320.00
status: "sent"  # draft | sent | confirmed | shipped | received | closed
notes: "Include QC certificates. Ship via sea freight."

Receiving Process

  1. Match delivery to PO (PO number on packing slip)
  2. Count units received vs PO qty
  3. Visual quality inspection (damage, labeling)
  4. Sample QC check for A items (per AQL standards)
  5. If OK → receive into system → update stock → move to location
  6. If discrepancy → note on receipt → contact supplier → hold in Zone Q
  7. File receipt confirmation → trigger AP for payment on terms

8. Stockout Prevention & Recovery

Early Warning System

Monitor daily:

  • Days of Stock = Current Stock / Avg Daily Demand
  • Alert thresholds:

- 🔴 < 7 days: URGENT — expedite or find alternative - 🟡 < 14 days: WARNING — confirm PO status, consider backup supplier - 🟢 > 14 days: OK

Stockout Response Playbook

  1. Immediate: Can we fulfill from another location/warehouse? Transfer.
  2. 24 hours: Contact supplier — can they expedite? What's the cost?
  3. 48 hours: Contact backup supplier — get quote and lead time
  4. If extended: Offer customers alternatives, partial shipment, or pre-order with ETA
  5. Post-mortem: Why did this happen? Update ROP, safety stock, or forecast

Common Stockout Causes & Fixes

CauseFix
Demand spike (unexpected)Increase safety stock, improve demand signals
Supplier delayAdd buffer to lead time, dual-source
Forecast errorReview method, add demand signals
Data error (wrong count)Improve cycle counting, investigate process
Long tail SKU ignoredSet minimum safety stock even for C items

9. Inventory Reduction Strategies

Dead Stock Liquidation

For items with zero sales in 12+ months:

  1. Bundle: Pair with popular items
  2. Discount: Progressive markdown (25% → 50% → 75%)
  3. Channel shift: Sell on secondary marketplace
  4. Donate: Tax write-off (if applicable)
  5. Scrap: Last resort — recycle if possible

Working Capital Optimization

  • Consignment: Supplier owns stock until you sell it
  • VMI: Vendor Managed Inventory — supplier monitors and replenishes
  • Dropship: C/Z items — don't stock, ship direct from supplier
  • JIT: A/X items — frequent small deliveries vs large batches
  • Cross-docking: Receive and ship same day — no storage needed

10. Reports & Commands

Natural Language Commands

The agent responds to:

  • "What's our stock level for [SKU/product]?"
  • "When will [product] run out?"
  • "Generate a purchase order for [supplier]"
  • "Show me slow-moving inventory"
  • "Score supplier [name]"
  • "What's our inventory turnover?"
  • "Show stockout risks for next 30 days"
  • "Run cycle count for A items"
  • "Calculate EOQ for [SKU]"
  • "Show me dead stock over $[amount]"
  • "What's the carrying cost this month?"
  • "Compare supplier quotes for [product]"
  • "Forecast demand for [SKU] next quarter"
  • "Show purchasing dashboard"

Weekly Review Agenda

  1. Stockout risks (anything < 14 days)
  2. Open POs — any late? Any unconfirmed?
  3. Fill rate this week — trending up or down?
  4. Top 5 value adjustments from cycle counts
  5. Supplier issues or escalations
  6. Dead stock candidates — any new items stale > 6 months?
  7. Forecast accuracy — review last month's forecast vs actual

Monthly Report Template

# Inventory Report — [Month Year]

## Summary
- Total SKUs: X (active) / Y (total incl. discontinued)
- Inventory Value: $X
- Inventory Turns (annualized): X
- Fill Rate: X%
- Stockouts: X events affecting $X revenue

## Health
- Dead Stock: X SKUs worth $X (X% of total)
- Slow Moving: X SKUs worth $X
- Overstock: X SKUs worth $X above max levels
- Shrinkage: $X (X% of value)

## Purchasing
- POs Issued: X totaling $X
- On-Time Delivery: X%
- Quality Rejects: X% of units received

## Actions Taken
- [List key decisions, adjustments, POs expedited]

## Next Month
- [Seasonal prep, supplier reviews, system changes]

11. Edge Cases & Advanced Scenarios

Perishable / Expiry-Dated Goods

  • Track lot numbers and expiry dates
  • FEFO (First Expired, First Out) picking
  • Alert when items are within 30 days of expiry
  • Track waste rate: Expired units / Total units received

Multi-Warehouse

  • Track stock by location independently
  • Inter-warehouse transfer orders
  • Consolidation rules for shipping (ship from nearest warehouse)
  • Aggregate view for total available stock

Kitting & Assembly

  • Bill of Materials (BOM) for kits
  • Component availability check before promising kit delivery
  • Explode kit demand into component demand for forecasting
  • Track both kit SKU and component SKUs

Seasonal Business

  • Pre-season buildup timeline (order lead time + safety buffer before peak)
  • Post-season liquidation plan (markdown schedule)
  • Season-over-season comparison for forecasting
  • Storage cost of off-season inventory — is it worth holding?

Multi-Currency Purchasing

  • Track supplier currency and exchange rate at PO time
  • Flag FX risk for large orders with long lead times
  • Consider forward contracts or natural hedging for high-value purchases

Returns Processing

  • Separate returns inventory from sellable stock
  • Inspection → Grade (A: resell as new, B: discount, C: scrap)
  • Track return rate by SKU — flag products with > 10% return rate
  • Refurbishment workflow if applicable

12. Getting Started Checklist

New to inventory management? Start here:

  • [ ] List all products/SKUs with current quantities
  • [ ] Classify ABC based on revenue contribution
  • [ ] Identify your top 20 SKUs (likely 80% of revenue)
  • [ ] Set up supplier records for each active supplier
  • [ ] Calculate reorder points for A items first
  • [ ] Establish location codes for your warehouse/stockroom
  • [ ] Set up weekly review cadence
  • [ ] Define your target service level per ABC class
  • [ ] Create your first purchase order using the template
  • [ ] Schedule monthly cycle counts starting with A items

Build the system incrementally. Perfect is the enemy of done. Start with A items, get the basics right, then expand to B and C.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.11%
按下载量换算9,906

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills