supplier-selection

โดย anthropic

วิธีการจัดอันดับและเลือกซัพพลายเออร์สำหรับ SKU หนึ่งๆ ให้โหลดสิ่งนี้เมื่อใดก็ตามที่งานเกี่ยวข้องกับการเลือกซัพพลายเออร์ การเปรียบเทียบใบเสนอราคา หรือการสร้างใบสั่งซื้อ

npx skills add https://github.com/anthropics/cwc-workshops --skill supplier-selection

Supplier Selection

Ranking suppliers is arithmetic, not judgment. Compute it in Python via code execution — do not reason about it in prose.

Method

For a given SKU:

  1. Read /mnt/user/data/supplier_catalog.csv and filter to rows matching the SKU. This gives you (supplier_id, unit_price, min_order_qty) for each candidate.
  2. Join with /mnt/user/data/suppliers.csv on supplier_id to get lead_time_days and reliability.
  3. Normalize price and lead time across the candidates (min-max to [0,1], where 0 is best). Reliability is already on [0,1] where higher is better.
  4. Score each candidate:
    score = 0.5 × (1 − norm_price) + 0.3 × (1 − norm_lead_time) + 0.2 × reliability
    
  5. Pick the highest score. Tie-breaks: lowest unit_price, then lowest lead_time_days, then alphabetical supplier_id.

Do this in code

Write and run a short Python script — don't call a tool per supplier, and don't compare quotes by describing them. Example shape:

import csv
sku = "SKU-0057"
catalog = [r for r in csv.DictReader(open("/mnt/user/data/supplier_catalog.csv")) if r["sku"] == sku]
suppliers = {r["supplier_id"]: r for r in csv.DictReader(open("/mnt/user/data/suppliers.csv"))}
# join, normalize, score, sort — print the winner as JSON

Supplier-specific overrides

These quirks are not in the catalog data. Apply them after computing the score; if one changes your pick, say so in the rationale.

SupplierOverride
SUP-01 Cascade DistributionOrders >500 units need 48h notice or they auto-split into two shipments — add to lead-time math for large POs.
SUP-02 Alpine WholesaleClosed Dec 20 – Jan 3. POs in that window aren't acknowledged until Jan 4. Land holiday replenishment before Dec 15.
SUP-03 Backcountry Supply CoTwo short-ships on Tents & Shelter this year. Prefer an alternate for that category if lead is comparable.
SUP-04 Sierra OutfittersUnlisted 3% price break at 250+ units. If recommended qty is 200–249, often worth rounding up.
SUP-05 Granite Gear PartnersWest-coast DC only. Add 2–3 days to catalog lead time for WH-EAST deliveries.
SUP-07 Ridgecrest ImportsImport-only; lead times are port-congestion sensitive. Don't rely on stated lead for an urgent order.
SUP-09 Summit SourceMOQ is enforced strictly — they reject (not round up) below-MOQ POs.
SUP-12 Trailhead MercantileNew on roster. Treat reliability as one notch lower than stated until 6 months of history.

Warehouse lead-time adjustments

  • WH-WEST (Reno): most suppliers ship from east-coast DCs — add +2 days to catalog lead time as a rule of thumb unless a supplier note says otherwise.
  • WH-EAST (Carlisle): two-shift receiving dock; best destination for an expedited PO that needs same-day inbound scheduling.
  • WH-CENTRAL (Kansas City): overflow / transfer hub. If you're sourcing an inter-warehouse transfer rather than a PO, WH-CENTRAL is almost always the origin.

Expedite override

If the reorder-policy skill flagged expedite, ignore the score and pick the supplier with the lowest lead_time_days whose min_order_qty ≤ your target order qty.

Output

Return {"supplier_id": "SUP-03", "unit_price": 21.40, "lead_time_days": 7, "score": 0.81} and use that supplier_id in the PO.

Skills เพิ่มเติมจาก anthropic

access
anthropic
จัดการการเข้าถึงช่อง Discord — อนุมัติการจับคู่ แก้ไขรายการที่อนุญาต ตั้งค่านโยบาย DM/กลุ่ม ใช้เมื่อผู้ใช้ขอจับคู่ อนุมัติใครบางคน ตรวจสอบว่าใครได้รับอนุญาต…
official
session-report
anthropic
สร้างรายงาน HTML ที่สามารถสำรวจได้เกี่ยวกับการใช้งานเซสชันของ Claude Code (โทเค็น, แคช, ตัวแทนย่อย, ทักษะ, พรอมพ์ที่มีค่าใช้จ่ายสูง) จากบันทึกการสนทนาใน ~/.claude/projects
official
build-mcp-server
anthropic
ทักษะนี้ควรใช้เมื่อผู้ใช้ขอให้ "สร้าง MCP server", "สร้าง MCP", "ทำการรวม MCP", "ห่อ API สำหรับ Claude", "เปิดเผยเครื่องมือให้กับ…
official
cookbook-audit
anthropic
ตรวจสอบสมุดบันทึก Cookbook ของ Anthropic ตามเกณฑ์ที่กำหนด ใช้เมื่อมีการขอให้ตรวจสอบหรือประเมินสมุดบันทึก
official
handle-complaint
anthropic
จัดการข้อร้องเรียนของลูกค้าที่เข้ามาตั้งแต่ต้นจนจบ — ดึงข้อมูลบริบท ร่างคำตอบ และแนะนำแนวทางแก้ไขการดำเนินงาน รองรับอีเมลหรือรหัสตั๋วที่เป็นทางเลือก…
official
use-case-triage
anthropic
ระบุอย่างรวดเร็วว่ากิจกรรมการประมวลผลจำเป็นต้องมี PIA, DPIA ตามข้อบังคับ GDPR หรือสามารถดำเนินการต่อได้ — แสดงข้อขัดแย้งของนโยบายความเป็นส่วนตัวและนำทางไปยัง...
official
board-minutes
anthropic
ร่างรายงานการประชุมคณะกรรมการหรือคณะอนุกรรมการในรูปแบบขององค์กรของคุณ ตรวจจับการประชุมคณะกรรมการและคณะอนุกรรมการที่กำลังจะมาถึงจากปฏิทินของคุณโดยอัตโนมัติ สอบถามวาระการประชุมและ…
official
renewal-tracker
anthropic
แสดงสัญญาที่มีกำหนดเส้นตายการยกเลิกที่กำลังจะมาถึง และเตือนก่อนที่กรอบเวลาการแจ้งเตือนจะปิดลง โดยทำงานจากทะเบียนการต่ออายุที่ได้รับการดูแล ใช้เมื่อผู้ใช้ถาม…
official