# 安装 tax-season-organizer

- 类型: Skill 技能
- 说明: Prepares tax-season materials for small business owners — framed as deliverables for their accountant, not tax advice. Two modes: (1) quarterly estimated tax calculation — pulls YTD net income from QuickBooks and calculates the federal income tax + self-employment tax liability and quarterly payment due; (2) year-end 1099 prep — scans QuickBooks, PayPal, and Stripe for contractors paid over $600, builds a 1099-NEC candidate list with missing W-9 flags, and produces a plain-English summary a CPA can work from directly.
Trigger this skill whenever the user mentions: quarterly taxes, estimated tax payment, how much to set aside for taxes, 1099s, 1099-NEC, year-end tax prep, contractor payments, W-9s, or any phrase suggesting they are preparing for a tax deadline or handing materials to an accountant. Also trigger proactively when a user asks about net profit or YTD income in a context that suggests they are worried about their tax bill.

- 仓库: https://github.com/anthropics/knowledge-work-plugins

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "tax-season-organizer" 技能：
1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/small-business/skills/tax-season-organizer/SKILL.md
2. 保存为 ~/.claude/skills/tax-season-organizer/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Codex
```
请帮我安装 askskill 上的 "tax-season-organizer" 技能：
1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/small-business/skills/tax-season-organizer/SKILL.md
2. 保存为 ~/.codex/skills/tax-season-organizer/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Cursor
```
请帮我安装 askskill 上的 "tax-season-organizer" 技能：
1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/small-business/skills/tax-season-organizer/SKILL.md
2. 保存为 ~/.cursor/skills/tax-season-organizer/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
mkdir -p '~/.claude/skills/tax-season-organizer' && curl -fsSL 'https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/small-business/skills/tax-season-organizer/SKILL.md' -o '~/.claude/skills/tax-season-organizer/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/tax-season-organizer' && curl -fsSL 'https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/small-business/skills/tax-season-organizer/SKILL.md' -o '~/.codex/skills/tax-season-organizer/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/tax-season-organizer' && curl -fsSL 'https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/small-business/skills/tax-season-organizer/SKILL.md' -o '~/.cursor/skills/tax-season-organizer/SKILL.md'
```
