Why does this need its own workflow? Can I not just let my accountant reconcile the Anthropic invoice at quarter end?+
You can, and many consultants do. The problem surfaces when you re-bill the cost to a client in the same month it was incurred. If the client is in another EU state you re-bill at 0% with an Art. 196 Directive note. If the client is in your country you re-bill at the domestic rate. If the client is outside the EU and UK the line is outside the scope of VAT. At quarter end your accountant can fix your own books, but the client invoice has already been sent. Getting that wrong means credit notes and awkward emails. The ritual puts the VAT treatment on the line in the same month the spend happened, so nothing has to be unwound later.
Does Clone need an Anthropic API key to pull the invoice?+
No. The Computer Agent layer in Clone, described at src/components/architecture.tsx lines 18 to 22, drives applications at the UI level. For this ritual it signs into platform.claude.com with your stored credentials, clicks 'Settings', clicks 'Billing', clicks 'Invoice history', and clicks download on the latest row. Anthropic does not expose a public billing API for VAT details, so this is the only reliable path. It also means you never have to create an API key for a tool that should not have read access to your usage anyway.
What exactly is in memory/rituals/anthropic-passthrough.md?+
Five blocks. First the schedule and the source URL. Second the splits for the current month, a list of engagement keys and percentages that must sum to 100. Third the vat_treatment block, per-client country, B2B status, VAT ID on file, the line label, the rate, and the note. Fourth the my_books block that tells Clone which expense account to post the cost to on your side. Fifth the actions block, a list of plain English steps Clone executes on the first business day of the month. Editing the splits is the monthly work. Everything else is stable.
What happens when my Anthropic invoice shows VAT charged to me because I added my VAT ID late?+
The ritual detects this. If the PDF shows a tax line greater than zero, Clone routes the VAT amount to an input tax recovery line on your own books rather than re-billing it to clients. The net (subtotal) is still split across engagements per the rules. At your next VAT return your accountant sees a tidy input tax line tied to Anthropic invoices from the months before your ID was on file. Anthropic confirms this behaviour in their help center: 'VAT exemptions are processed prospectively'. The ritual makes prospective-only tolerable.
How does the cross-border EU B2B reverse charge line actually read on my client invoice?+
Clone writes the line label from the ritual file. For an EU B2B client it looks like this: 'Claude API usage, April 2026 (reverse charge, Art. 196 VAT Directive)', quantity 1, rate in your billing currency, 0% VAT. A footer note is added: 'VAT to be accounted for by the recipient under Art. 196 of Council Directive 2006/112/EC.' The client's accountant sees the reverse charge treatment, books the input and output VAT at the same time, and nets to zero. No surprise charges.
My clients are on different billing currencies. Anthropic bills me in USD. How does Clone handle the FX?+
Two options, both selectable in the ritual file. Option A: use Anthropic's invoice date and the day's ECB rate to convert USD into your home currency, then re-bill in the client's currency at your own daily rate. Option B: carry the USD amount through unchanged and let the client's accounting tool convert it. Option A is common for UK consultants billing EU clients in EUR. Option B is common when you want the client to see a one-to-one line against the Anthropic PDF attached. Clone stamps the chosen FX policy into the line label.
What if my accountant wants to see the working, not just the number?+
Every draft invoice Clone produces has the Anthropic PDF attached. The expense lines on your own books link back to the same PDF in your shared folder, and the action log records the percentage applied and the rule block from the markdown file at run time. You can hand your accountant three things: the markdown file (the rules), the month folder of PDFs (the source), and the action log (the math). That is the working, on one screen.
Does this mean I can finally drop Expensify or Dext for this one line item?+
For the Anthropic passthrough, yes. Expensify and Dext cannot sign into platform.claude.com, so today you download the PDF yourself and email it in. With Clone running the ritual, the PDF lands in your accounting tool with the right categorisation and the client line already drafted, which is everything those tools exist to do for this category. You can keep them for other expense categories if that is simpler. The architectural principle in src/components/architecture.tsx lines 56 to 58, 'Tool agnostic by design', is literal here: you remove one tool from your stack, you do not add one.
I do not use Claude for every client. Can the ritual skip non-Claude engagements?+
Yes. Only engagements listed in the splits block for the current month are touched. If an engagement is not in the list, Clone does not open that client's draft. If you ramp a new client onto Claude mid-month, you pro-rate the share in the markdown file for that month and re-run the ritual. The file is the source of truth, and every number on every invoice is traceable back to a line in it.
Is it safe to let Clone sign into platform.claude.com with my credentials?+
The credentials stay in your Mac keychain. Clone reads them from the keychain the same way a browser auto-fill does, types them into the login form, and discards them from memory after sign-in. Your Anthropic account itself is protected by two-factor if you have it on, which you should, and Clone does not bypass two-factor. When a TOTP prompt appears the first time in a session, Clone surfaces it to you in the chat and you type the code. The session cookie lives for the session, nothing more.
How does this compare to hiring a bookkeeper to do it every month?+
A bookkeeper running this reconciliation well costs two to four hours of billable time a month. In the UK that is roughly 80 to 200 GBP. In the US it is 150 to 400 USD. A virtual assistant capable of the same work runs 3,000 to 6,000 USD a month for full coverage. Clone is 49 USD a month and runs every first business day without asking. The tradeoff is the same as elsewhere in Clone: you write the rules once in plain English, the software executes the rules, your accountant still exists to review and file, not to pipe data.
What is the anchor fact on this page?+
The ritual file at memory/rituals/anthropic-passthrough.md is the whole design. Specifically the splits block (engagement key mapped to percentage share, summing to 100) paired with the vat_treatment block (per client, country, B2B status, rate, note, line label). Nothing else on the internet treats the Anthropic invoice as an input to a monthly consulting ritual. Every ranking page stops at 'here is how Anthropic charges VAT to you'. This page starts there.