Skip to content

Skills

Skills are multi-step workflows defined in SKILL.md files. Each skill gives Open Accountant domain-specific instructions for a particular financial task — tax preparation, subscription auditing, cash flow forecasting, and more.

When you invoke a skill, Open Accountant follows the instructions step-by-step, using its tools (transaction search, categorization, spending summary, anomaly detection, export) to produce a comprehensive result.

Open Accountant has 44 open-source financial skills available from the skills repository.

Terminal window
# Install all skills
npx skills add openaccountant/skills
# Install a single skill
npx skills add openaccountant/skills --skill tax-prep
# Browse available skills
npx skills add openaccountant/skills --list
Terminal window
# Install all skills
wilson skills install openaccountant/skills
# Install a single skill
wilson skills install openaccountant/skills --skill tax-prep
Terminal window
git clone https://github.com/openaccountant/skills.git ~/.openaccountant/skills

Skills are placed in ~/.openaccountant/skills/ and automatically discovered by Wilson on startup.

/skill tax-prep

Or ask naturally:

Help me prepare my taxes

Open Accountant automatically detects when a skill is relevant based on your query and the skill’s trigger description.

Terminal window
wilson --run "Run the tax prep skill"
SkillDescription
import-transactionsGuided transaction import from CSV, OFX, or QIF files
smart-categorizeAI-powered batch categorization of uncategorized transactions
spending-reviewComprehensive spending analysis with anomaly detection
subscription-auditFind forgotten subscriptions and recurring charges
year-end-summaryFull year financial review with trends and insights
SkillDescriptionPrice
Tax PrepSchedule C categorization and deduction tracking$29/yr
Quarterly TaxesEstimated tax payment calculation for self-employed$25/yr
Rental PropertySchedule E tracking for landlords$29/yr
Contractor Tracking1099-NEC payment tracking and filing prep$25/yr
Cash Flow Forecast3-6 month income and expense projections$25/yr
Profit & LossIncome statement generation for any period$25/yr

Open Accountant discovers skills from three directories, in order:

LocationPurposePriority
src/skills/Built-in skills shipped with Open AccountantLowest
~/.openaccountant/skills/User-wide custom skillsMedium
.openaccountant/skills/Project-specific skillsHighest

Later discoveries override earlier ones with the same name. This lets you customize or replace built-in skills.