shopify-admin-tax-liability-summary

shopify-admin-tax-liability-summary is a skill for Claude Code from 40RTY-ai/shopify-admin-skills. It costs 24 tokens per session (1,262 once invoked), scanned A, original, MIT.

A read-only Shopify report that totals tax collected from orders by jurisdiction or tax rate. Shopify is an online store platform, and a jurisdiction is a taxing authority such as a state or province.

In plain words
What is it for?
Use it to review tax collected over the last 30, 90, or another number of days and export the result for internal filing preparation.
Why use it?
It gathers order tax lines into a filing-preparation summary, including an option to exclude fully refunded orders, without changing store data.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument; mentions Claude Code; mentions Codex.

Part of the shopify-admin-skills plugin — 57 skills shipped together

Good fit Use it to review tax collected over the last 30, 90, or another number of days and export the result for internal filing preparation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add 40RTY-ai/shopify-admin-skills --skill shopify-admin-tax-liability-summary
Clone the repo
git clone --depth 1 https://github.com/40RTY-ai/shopify-admin-skills

Made for: Claude Code.

Or install shopify-admin-skills, the plugin that ships this one along with the rest of its 57 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shopify-admin-tax-liability-summary

README.md
[![agentmods](https://agentmods.dev/badge/skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary/github.svg)](https://agentmods.dev/skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary)
Your own site
<a href="https://agentmods.dev/skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary"><img src="https://agentmods.dev/badge/skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shopify-admin-tax-liability-summary

Your own site · 80×15
<a href="https://agentmods.dev/skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary"><img src="https://agentmods.dev/badge/skills/40rty-ai/shopify-admin-skills/shopify-admin-tax-liability-summary.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,262 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.01262
Opus 5 $0.00012 $0.00631
Sonnet 5 $0.00005 $0.00252
Haiku 4.5 $0.00002 $0.00126

Measured 12d ago against content hash e4fadaabd8fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

shopify-admin-tax-liability-summary scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/finance/shopify-admin-tax-liability-summary/SKILL.md · 160 lines

How it starts

The opening of the file, as written. The whole thing — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Purpose

Aggregates tax amounts collected across all orders in a period, broken down by tax jurisdiction (state/province, country) and tax rate. Produces a summary suitable for periodic tax filing prep. Read-only — no mutations.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_orders
  • API scopes: read_orders

Parameters

Parameter Type Required Default Description
store string yes Store domain (e.g., mystore.myshopify.com)
days_back integer no 90 Lookback window (use 30/90 to match filing periods)
group_by string no jurisdiction Breakdown: jurisdiction or rate
exclude_refunded bool no true Exclude tax from fully refunded orders
format string no human Output format: human or json

Safety

ℹ️ Read-only skill — no mutations are executed. Safe to run at any time. This report is for internal preparation purposes only — consult a tax professional for actual filing obligations.

Workflow Steps

  1. OPERATION: orders — query Inputs: query: "financial_status:paid created_at:>='<NOW - days_back days>'", first: 250, select taxLines { title, rate, priceSet }, refunds { refundLineItems }, pagination cursor Expected output: All paid orders with tax lines; paginate until hasNextPage: false

  2. If exclude_refunded: subtract tax amounts from fully refunded orders

  3. Group by group_by (jurisdiction title or rate); sum taxLine.priceSet.shopMoney.amount

GraphQL Operations

# orders:query — validated against api_version 2025-01
query TaxLiabilityOrders($query: String!, $after: String) {
  orders(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        name
        createdAt
        displayFinancialStatus
        totalTaxSet {
          shopMoney {
            amount
            currencyCode
          }
        }
        taxLines {
          title
          rate
          priceSet {
            shopMoney {
              amount
              currencyCode
            }
          }
        }
        shippingAddress {
          countryCode
          provinceCode
        }
        refunds {
          totalRefundedSet {
            shopMoney {
              amount
              currencyCode
            }
          }
        }
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}

Read the full file on GitHub · 160 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 160 lines · 24 tokens per session scan A e4fadaabd8fd

Subscribe to this mod's changes

shopify-admin-tax-liability-summary is a skill published in the GitHub repository 40RTY-ai/shopify-admin-skills (187 stars, last pushed 28d ago), licensed MIT. It adds 24 tokens to every session and 1,262 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

asc-ppp-pricing

Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.

rorkai/app-store-connect-cli-skills · 45 tokens

stripe

Stripe API integration with managed OAuth. Manage customers, subscriptions, invoices, products, prices, and payments. Use this skill when users want to process payments, manage billing, or handle subscriptions with Stripe. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).…

CraftOS-dev/CraftBot · 79 tokens

etsy-pricing-strategy

Etsy pricing — cost calculation, competitor pricing, perceived value, shipping cost integration, sales and coupons.

nexscope-ai/eCommerce-Skills · 26 tokens

amazon-wholesale-sourcing

Wholesale product sourcing — supplier discovery, negotiation, MOQ optimization, margin analysis.

nexscope-ai/Amazon-Skills · 20 tokens

ai-slop

Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…

waybarrios/opencode-power-pack · 61 tokens

payment-processor

Skill "payment-processor" from Signal-Execution-Labs/forex-trading-ai-agent, covering payment processor skill, supported services, capabilities, view balances and get all balances.

Signal-Execution-Labs/forex-trading-ai-agent · 0 tokens