thai-influencer-deal

thai-influencer-deal is a skill for Claude Code from Boom-Vitt/claude-thai-business-skills. It costs 70 tokens per session (1,284 once invoked), scanned A, original, MIT.

A calculator and contract-structure guide for Thai influencer deals. It covers withholding tax, or money a brand keeps from a payment and sends to the tax authority, for Thai and non-resident creators, including fixed fees and affiliate revenue shares.

In plain words
What is it for?
Use it to calculate net influencer payouts, brand costs, withholding-tax filing details, and contract structures for Thai KOL or KOC campaigns.
Why use it?
It helps separate gross fees, tax withheld, the creator’s actual payment, and the brand’s total cost. This reduces confusion when a deal combines talent fees, commissions, residency, or VAT status.

Skill for Claude Code

Written for Claude Code: when-to-use in frontmatter.

Part of the claude-thai-business-skills plugin — 13 skills shipped together

Good fit Use it to calculate net influencer payouts, brand costs, withholding-tax filing details, and contract structures for Thai KOL or KOC campaigns.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal
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 Boom-Vitt/claude-thai-business-skills --skill thai-influencer-deal
Clone the repo
git clone --depth 1 https://github.com/Boom-Vitt/claude-thai-business-skills

Made for: Claude Code.

Or install claude-thai-business-skills, the plugin that ships this one along with the rest of its 13 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 thai-influencer-deal

README.md
[![agentmods](https://agentmods.dev/badge/skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal/github.svg)](https://agentmods.dev/skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal)
Your own site
<a href="https://agentmods.dev/skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal"><img src="https://agentmods.dev/badge/skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal/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 thai-influencer-deal

Your own site · 80×15
<a href="https://agentmods.dev/skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal"><img src="https://agentmods.dev/badge/skills/boom-vitt/claude-thai-business-skills/thai-influencer-deal.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,284 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.
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.00070 $0.01284
Opus 5 $0.00035 $0.00642
Sonnet 5 $0.00014 $0.00257
Haiku 4.5 $0.00007 $0.00128

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

Security

Grade A, and why

thai-influencer-deal 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.

The scan reads SKILL.md. This mod also ships 1 executable file (commission.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/thai-influencer-deal/SKILL.md · 92 lines

How it starts

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

Thai Influencer Deal — WHT-safe structure

ผมเคยทำเคสที่ client ดีลกับ KOL macro 800k/post โดยไม่หัก WHT — สรรพากรเรียกตรวจปีถัดมา ต้องจ่ายเองทั้งก้อน + เบี้ยปรับ 1.5x. เคสนั้นเสียเงิน 1.2M รวมเบี้ย.

commission.py ทำให้แน่ใจว่า output ของ Claude ระบุ WHT rate ถูกตามประเภท (talent fee / affiliate revenue share) และคำนวน net payout ที่ KOL จะได้รับจริง + total cost ที่ brand ต้องจ่าย.

เมื่อ Claude เห็นคำขอแบบนี้

ดีลกับ KOL macro ค่าตัว 350k/โพสต์ + revenue share 10% — หัก WHT ยังไง
KOC nano รับเป็น product-only ราคา 800฿/โพสต์ ต้องหัก WHT ไหม

ขั้นตอน

  1. เก็บ input

    • ประเภทดีล — flat talent fee, affiliate revenue share, hybrid (มีทั้งสอง)
    • มูลค่าก่อน WHT (gross)
    • สัญชาติ + tax residence ของ KOL (ไทย / ต่างชาติ resident / non-resident)
    • VAT status (KOL จด VAT ไหม)
  2. เรียก commission.py

    from commission import compute_payout
    payout = compute_payout(
        talent_fee=D("350000"),
        affiliate_revenue=D("0"),
        gmv=D("3500000"),
        commission_rate=D("0.10"),
        residence="thai",
        kol_vat_registered=True,
    )
    
  3. คืน output 3 ตาราง

    • Cost breakdown (brand pays)
    • Net payout (KOL receives)
    • Tax filing (ภงด.3 ที่ brand ยื่น)
  4. ข้อสังเกต

    • ถ้า KOL จด VAT — brand ต้องจ่าย gross + 7% VAT แล้วเอา VAT มาเครดิตในภพ.30
    • ถ้า KOL ไม่จด VAT — brand จ่าย gross เฉยๆ ไม่มี VAT credit
    • product-only deals < 1,000฿ — โดยทั่วไปไม่ต้องหัก WHT (3% threshold) แต่ยังต้องบันทึก gift expense
    • affiliate revenue share ที่จ่ายเป็น % ของ GMV → เป็น "ค่าบริการ" ไม่ใช่ "ค่าจ้างทำของ" — WHT rate เหมือนกัน 3% ในประเทศ

WHT rates 2026

ประเภทผู้รับ rate (อ้างอิงประมวลรัษฎากร)
บุคคลธรรมดาในประเทศ (Thai PIT) 3% ของค่าบริการ/ค่าจ้าง
นิติบุคคลในประเทศ (ค่าบริการ) 3%
บุคคลธรรมดา non-resident (มาตรา 50 / DTA) 5% หรือ 15% ตาม DTA
KOL จด VAT → brand ออกใบหัก ณ ที่จ่าย 3% ของจำนวนก่อน VAT

Threshold: ค่าบริการ/ค่าจ้าง <1,000 บาท ต่อครั้งโดยทั่วไปไม่หัก แต่ถ้าจ่ายซ้ำให้ผู้รับเดียวกันรวมกันเกิน 1,000 ต้องหักย้อนหลัง.

Read the full file on GitHub · 92 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 92 lines · 70 tokens per session scan A f9be5ff18af9

Subscribe to this mod's changes

thai-influencer-deal is a skill published in the GitHub repository Boom-Vitt/claude-thai-business-skills (16 stars, last pushed 3mo ago), licensed MIT. It adds 70 tokens to every session and 1,284 once invoked, about $0.0003 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

thai-invoice

Use this skill for any task involving Thai tax invoices, receipts, quotations, or withholding-tax certificates. Trigger whenever the user asks to: draft a Thai tax invoice (ใบกำกับภาษี), receipt (ใบเสร็จ), quotation (ใบเสนอราคา), credit/debit note (ใบลดหนี้/ใบเพิ่มหนี้), or WHT certificate (ภ.ง.ด.3/53). Also trigger…

Boom-Vitt/claude-thai-skills · 158 tokens

fiscaliste

Fiscaliste IA pour la fiscalité personnelle des particuliers français : optimisation et déclaration de l'impôt sur le revenu, IFI, revenus du capital, revenus fonciers, equity salarial, crypto-actifs et PER. Couvre le calcul de l'IR (barème, quotient familial, décote, PAS, CEHR, revenus exceptionnels), la déclaration…

romainsimon/paperasse · 302 tokens

controleur-fiscal

Inspecteur des finances publiques IA. Simule un contrôle fiscal DGFIP complet sur les comptes d'une entreprise française (SASU, EURL, SAS, SARL). Analyse le FEC, la liasse fiscale, les charges déduites, le compte courant d'associé, la TVA, l'IS selon 8 axes de vérification. Identifie les chefs de redressement…

romainsimon/paperasse · 136 tokens

commissaire-aux-comptes

Commissaire aux comptes IA pour l'audit des comptes annuels d'entreprises françaises. Applique la démarche NEP en 7 phases : prise de connaissance, contrôle du FEC, vérification du bilan, du compte de résultat, de la balance, de la liasse fiscale, et contrôles transversaux. Émet une opinion motivée sur la fiabilité…

romainsimon/paperasse · 123 tokens

agb-bei-kreditvertraegen-verbraucherdarlehen

Für AGB bei Kreditverträgen Verbraucherdarlehen: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 49 tokens

agb-in-kapitalanlagen-effektenhandel

Für AGB in Kapitalanlagen Effektenhandel: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 41 tokens