with one click
inventory-management
// Database schema and business logic for inventory tracking including products, warehouses, and stock levels.
// Database schema and business logic for inventory tracking including products, warehouses, and stock levels.
| name | inventory_management |
| description | Database schema and business logic for inventory tracking including products, warehouses, and stock levels. |
Available stock: quantity_on_hand from inventory where quantity_on_hand > 0
Products needing reorder: total quantity_on_hand across warehouses <= product's reorder_point
Active products only: Exclude discontinued = true unless analyzing discontinued items
-- Find products below reorder point
SELECT p.product_id, p.product_name, p.reorder_point, SUM(i.quantity_on_hand) as total_stock
FROM products p
JOIN inventory i ON p.product_id = i.product_id
WHERE p.discontinued = false
GROUP BY p.product_id, p.product_name, p.reorder_point
HAVING SUM(i.quantity_on_hand) <= p.reorder_point;
Sample skill fixture for classpath registry enhancement tests.
ๅๅๆๆกๅไฝๅฉๆใๆ นๆฎๅๅไฟกๆฏ็ๆๅธๅผไบบ็่ฅ้ๆๆกใๅฝ็จๆทๆๅฐ"ๅๆๆก"ใ"ๅๅๆ่ฟฐ"ใ"่ฅ้ๆๆก"ๆถไฝฟ็จๆญคๆ่ฝใ
้ๅๅๆๅฉๆใๆ นๆฎๅธๅบ่ถๅฟๅ็จๆท้ๆฑ๏ผๅๆๅนถๆจ่้ๅ็ๅๅๅ็ฑปใๅฝ็จๆทๆๅฐ"้ๅ"ใ"ๅๅๆจ่"ใ"ๅ็ฑปๅๆ"ๆถไฝฟ็จๆญคๆ่ฝใ
Database schema and business logic for sales data analysis including customers, orders, and revenue.
Test skill for groupedTools. When executing this skill, use the record_result tool to record the result value.
Extract text, tables, and form data from PDF documents for analysis and processing. Use when user asks to extract, parse, or analyze PDF files.