weekly-report

โดย anthropic

โครงสร้างและแหล่งข้อมูลสำหรับรายงานสินค้าคงคลังประจำสัปดาห์ โหลดสิ่งนี้เมื่อภารกิจคือ "รายงานประจำสัปดาห์", "รายงานวันจันทร์" หรือ "สรุปสถานะสินค้าคงคลัง

npx skills add https://github.com/anthropics/cwc-workshops --skill weekly-report

Weekly Inventory Report

Generate the report by writing one Python script via code execution that reads the CSVs and emits markdown. Do not make per-SKU tool calls.

Structure

# Inventory Report — {{warehouse or "All Warehouses"}} — week of {{date}}

## Stockouts (on_hand = 0)
| SKU | Product | Warehouse | Days out |
...

## Low Stock (below reorder point)
| SKU | On hand | Reorder pt | Days cover | Action |
...top 15 by urgency (lowest days_cover first)...

## Open POs
| PO | SKU | Qty | Supplier | ETA |
...from /mnt/user/sinks/purchase_orders.jsonl...

## Forecast Risk
SKUs where promo_next_month=1 or is_seasonal=1 and on_hand < 14d cover.
One line each: SKU, reason, recommended action.

Operating cadence (which report is being asked for)

CadenceTrigger phrasingContents
Daily"run the check", "the sweep"Low-stock list with action taken per SKU; one summary notification at the end.
Weekly (Mon)"the report", "weekly review"Per-warehouse: top concerns, open POs aging past their lead time, SKUs below reorder for >5 business days.
Monthly"supplier review"Suppliers whose on-time rate slipped; SKUs whose primary supplier may need changing.
Ad hocanything elseScope to what was asked.

If the request doesn't say which, infer from wording. The structure below is the weekly format; for daily, drop the Open-POs and Forecast-Risk sections and lead with the actions taken.

Aging-PO check (weekly only)

For each open PO, compare days-since-placed to the supplier's lead_time_days. List any PO where elapsed > lead_time as aging and include supplier + days overdue so ops can follow up.

Data sources

  • Stockouts & low stock: latest-date rows from /mnt/user/data/stock_levels.csv joined with /mnt/user/data/products.csv
  • Days of cover: on_hand / avg_daily_sales (last 14d from /mnt/user/data/sales_history.csv)
  • Open POs: /mnt/user/sinks/purchase_orders.jsonl
  • Forecast risk: /mnt/user/data/products.csv flags + days-of-cover from above

Do this in code

The CSVs are large (stock_levels is ~67k rows). Write a single script that loads them once, computes everything, and prints the markdown. Don't page through the data with tool calls — that's exactly the pattern this skill replaces.

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