weekly-inventory-valuation

Computes total inventory valuation across SKUs and reconciles against the GL balance.

1|Updated Jun 21, 2026
One-click install
npx skills add https://github.com/tapway/shogun-os --skill weekly-inventory-valuation-tapway
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: weekly-inventory-valuation
Source: https://github.com/tapway/shogun-os/tree/main/skills/procurement/weekly-inventory-valuation
Command: npx skills add https://github.com/tapway/shogun-os --skill weekly-inventory-valuation-tapway

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Finance and procurement teams need an accurate, repeatable way to know the total value of on-hand inventory and to confirm it matches the accounting general ledger. Manual valuation is slow and error-prone, and discrepancies between stock records and the GL often go unnoticed until period-end close. ## Core Features & Use Cases - Automated Valuation: Sums current_stock × unit_cost across all active SKUs and produces a category-level breakdown (IT Hardware, Office Supplies, Consumables, Spare Parts). - GL Reconciliation: When ENABLE_ACCOUNTING_SYNC=true, compares the computed valuation against the GL Inventory Asset balance and writes a discrepancy report when variance exceeds tolerance. - Scheduled Reporting: Runs every Friday at 5PM via cron, flagging variances to the procurement channel with recommended investigation actions. - Use Case: A CFO asks for the current inventory value before month-end close; the skill computes MYR 485,000 across 142 SKUs, detects a MYR 1,800 GL variance, and saves a discrepancy report for investigation. ## Quick Start Ask the procurement agent to run the inventory valuation and reconcile it against the GL balance for today.

Frequently Asked Questions about weekly-inventory-valuation

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

FAQPage Schema
How do I compute total inventory valuation across all SKUs?

Inventory valuation is computed by summing current_stock × unit_cost for every active SKU returned by proc_list_inventory. The result is grouped into a category breakdown showing value and SKU count per category.

How to reconcile inventory valuation with the general ledger balance?

Set ENABLE_ACCOUNTING_SYNC=true so the skill calls acct_get_balance_sheet and compares the GL Inventory Asset balance against the computed valuation. Variance above the tolerance threshold (default MYR 500 or 1% of total) triggers a discrepancy report.

Does the inventory valuation run on a schedule?

Yes, it runs automatically every Friday at 5PM via the {profile}-inventory-valuation cron job on the procurement-manager profile. It can also be triggered manually when a CFO or CPO requests the current inventory value.

Why does the GL reconciliation show a false variance?

False variances usually come from including inactive or zero-stock SKUs, unit costs not converted to MYR, or a misconfigured GL account code. Exclude inactive items, confirm MYR conversion, and verify the correct Inventory Asset account before comparing.

When should I not use the inventory valuation skill?

Do not use it for reorder alerts or dead stock analysis. Use reorder-alert-watchdog for replenishment triggers and dead-slow-stock-detector for slow-moving inventory reporting instead.