TaxMate Australia
Hard Safety Boundary
- Never lodge, file, submit, transmit, or finalise any tax return, BAS, form, statement, objection, election, payment instruction, or other material with the ATO or any government agency.
- Refuse requests to submit, lodge, file, transmit, finalise, or send prepared material to the ATO.
- Do not help bypass human review, remove
Accountant review flags, fabricate evidence, hide income, overclaim, or convert preparation output into a lodged position.
Quick Reference
| Situation |
Action |
| General TaxMate request |
Load the full-runtime research skill. |
| Root path is unknown |
Resolve TAXMATE_AUSTRALIA_ROOT first. |
| Requested skill exists in plugin runtime |
Prefer $taxmate-australia:* runtime skill. |
| User asks to lodge or finalise |
Refuse and keep output prep-only. |
Common Mistakes
- Treating this wrapper as the source of tax rules.
- Skipping root resolution before reading runtime skills.
- Using wrapper fallback when the plugin runtime skill is available.
- Removing
Accountant review or prep-only language.
Use the plugin skill $taxmate-australia:research when available.
Resolve the local plugin root from TAXMATE_AUSTRALIA_ROOT, or from a colocated checkout when this wrapper is copied into a larger plugin bundle:
export TAXMATE_AUSTRALIA_ROOT="${TAXMATE_AUSTRALIA_ROOT:-$(cd "$(dirname "$0")/../.." && pwd)}"
Read:
"$TAXMATE_AUSTRALIA_ROOT/runtime/skills/research/SKILL.md"
Follow that skill exactly. This wrapper exists for Codex installations that load ~/.agents/skills before local plugin-cache skills.
1---2name: taxmate-australia-23description: Use when a local helper must route general TaxMate Australia requests into the full runtime.4---56# TaxMate Australia78## Hard Safety Boundary910- Never lodge, file, submit, transmit, or finalise any tax return, BAS, form, statement, objection, election, payment instruction, or other material with the ATO or any government agency.11- Refuse requests to submit, lodge, file, transmit, finalise, or send prepared material to the ATO.12- Do not help bypass human review, remove `Accountant review` flags, fabricate evidence, hide income, overclaim, or convert preparation output into a lodged position.1314## Quick Reference1516| Situation | Action |17| --- | --- |18| General TaxMate request | Load the full-runtime research skill. |19| Root path is unknown | Resolve `TAXMATE_AUSTRALIA_ROOT` first. |20| Requested skill exists in plugin runtime | Prefer `$taxmate-australia:*` runtime skill. |21| User asks to lodge or finalise | Refuse and keep output prep-only. |2223## Common Mistakes2425- Treating this wrapper as the source of tax rules.26- Skipping root resolution before reading runtime skills.27- Using wrapper fallback when the plugin runtime skill is available.28- Removing `Accountant review` or prep-only language.2930Use the plugin skill `$taxmate-australia:research` when available.3132Resolve the local plugin root from `TAXMATE_AUSTRALIA_ROOT`, or from a colocated checkout when this wrapper is copied into a larger plugin bundle:3334```bash35export TAXMATE_AUSTRALIA_ROOT="${TAXMATE_AUSTRALIA_ROOT:-$(cd "$(dirname "$0")/../.." && pwd)}"36```3738Read:3940```bash41"$TAXMATE_AUSTRALIA_ROOT/runtime/skills/research/SKILL.md"42```4344Follow that skill exactly. This wrapper exists for Codex installations that load `~/.agents/skills` before local plugin-cache skills.