order-status-summary

Classifies order CSV records into delivery status buckets and generates a delayed-orders report.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/sebaperiesdigit-create/Peries-Skills-Master --skill order-status-summary-sebaperiesdigit-create
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: order-status-summary
Source: https://github.com/sebaperiesdigit-create/Peries-Skills-Master/tree/main/.claude/skills/order-status-summary
Command: npx skills add https://github.com/sebaperiesdigit-create/Peries-Skills-Master --skill order-status-summary-sebaperiesdigit-create

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually reviewing order export CSVs to find delayed or at-risk shipments is slow and error-prone. This Skill reads an order CSV and produces a plain-text report that buckets every order by delivery status and flags overdue orders. ## Core Features & Use Cases - Status Classification: Sorts each order into Delivered, Cancelled, Shipped on time, In progress, Delayed (not yet shipped), or Delayed (past expected delivery). - Delayed-Orders Table: Builds a table of delayed orders sorted by days overdue, most overdue first. - Flexible Input Handling: Accepts a CSV file path or pasted CSV content, maps slightly different column headers, and reports skipped or malformed rows. - Use Case: A support lead pastes this week's order export and asks which orders are delayed; the Skill returns bucket counts plus a prioritized list of overdue orders to escalate. ## Quick Start Summarize the order status in orders.csv and show me which orders are delayed.

Frequently Asked Questions about order-status-summary

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I summarize order status from a CSV file?▼

Provide the CSV file path or paste its content, and the Skill classifies each order into buckets like Delivered, Cancelled, Shipped on time, In progress, or Delayed. It outputs total counts per bucket plus a delayed-orders table sorted by days overdue.

How to identify delayed orders in an order export?▼

The Skill flags orders as delayed when they have no ship_date more than 3 days after the order_date, or when the expected delivery date has passed without delivery. Delayed orders are listed in a table sorted with the most overdue first.

What columns does the order CSV need to contain?▼

The CSV should include order_id, customer_name, order_date, ship_date, expected_delivery_date, and status. If your headers differ slightly, the Skill maps equivalent column names and notes the mapping used.

What happens if my CSV is missing required columns?▼

Processing stops and you are asked how to proceed: provide a corrected file, manually specify which columns map to the missing ones, or cancel. The Skill never invents missing order details.

Does the order summary tool modify my CSV file?▼

No. The CSV is read in read-only mode, no file writes occur, and no data is transmitted externally. The output is only a plain-text report with bucket counts and the delayed-orders table.