vat-summary
Produce a VAT / sales-tax summary for a period from a Well workspace's posted ledger. Use when the user asks for a VAT return, VAT summary, sales tax owed, output vs input VAT, or tax declaration figures for a period.
适合你,如果每月需要从账套提取增值税数据
npx oh-my-skill add wellapp-ai/well/vat-summarycurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- wellapp-ai/well/vat-summarynpx oh-my-skill verify wellapp-ai/well/vat-summary怎么用
商店整理自技能原文 · 版本 782601c · 表述以原文为准Claude会根据已过账的账簿数据,生成指定期间的增值税/销售税摘要,包括按税率分组的销项税、进项税以及净应缴税额。如果期间账簿未关闭,会先提示未关闭。
当用户要求生成增值税申报、摘要、销售税欠款或某期间的税务数据时触发。
技能原文 SKILL.md
VAT summary from Well
A VAT return is a byproduct of closed books, not a separate project. If the ledger is posted and correct, the figures already exist — the work is presentation. Work backward from the filing deadline and forward from the posted ledger, and surface uncertainty rather than reporting a number you're not sure of.
Build it from the posted ledger + tax rates
- Discover the schema first (see
well:querying-well-data). - Output VAT (collected on sales) — from issued
invoices/invoice_itemsand theirtax_rates, or the corresponding VATledger_accounts/journal_entriesfor the period. Group by rate (standard / reduced / zero / exempt). - Input VAT (paid on purchases) — from received
invoices/invoice_items+tax_rates, or the input-VAT ledger accounts. - Net VAT due = output VAT − recoverable input VAT, per the period's date filter.
- By rate and jurisdiction — break the totals down by VAT rate and, for multi-jurisdiction workspaces, by jurisdiction. Read the rate from the data (
tax_rates), don't assume it.
Rules — conservative by design
- "The books are not closed yet." If the period's
journal_entriesare still DRAFT / unposted, say so before producing a final figure — declarations fall out of closed books. Offer a provisional figure clearly labelled as such. - Surface uncertainty, don't file it. Where a rate, exemption, or jurisdiction treatment is ambiguous, flag it for human review rather than guessing.
- Read rates and jurisdictions from
tax_rates/ the data; never hardcode a percentage. - Don't sum across currencies without converting (
exchange_rates).
Present it
Output VAT (by rate) → total; Input VAT (by rate) → total; Net VAT due; the period and jurisdiction; a books-closed/draft status line; and any flagged uncertainties for review.