Root cause: CLI tools (ai-agent-skills, agent-skills-cli) look for SKILL.md at the specified install path. 7 of 9 domain directories were missing this file, causing "Skill not found" errors for bundle installs like: npx ai-agent-skills install alirezarezvani/claude-skills/engineering-team Fix: - Add root-level SKILL.md with YAML frontmatter to 7 domains - Add .codex/instructions.md to 8 domains (for Codex CLI discovery) - Update INSTALLATION.md with accurate skill counts (53→170) - Add troubleshooting entry for "Skill not found" error All 9 domains now have: SKILL.md + .codex/instructions.md + plugin.json Closes #301 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.3 KiB
Markdown
56 lines
1.3 KiB
Markdown
---
|
|
name: "finance-skills"
|
|
description: "Production-ready financial analyst skill with ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction. 4 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw."
|
|
version: 1.0.0
|
|
author: Alireza Rezvani
|
|
license: MIT
|
|
tags:
|
|
- finance
|
|
- financial-analysis
|
|
- dcf
|
|
- valuation
|
|
- budgeting
|
|
agents:
|
|
- claude-code
|
|
- codex-cli
|
|
- openclaw
|
|
---
|
|
|
|
# Finance Skills
|
|
|
|
Production-ready financial analysis skill for strategic decision-making.
|
|
|
|
## Quick Start
|
|
|
|
### Claude Code
|
|
```
|
|
/read finance/financial-analyst/SKILL.md
|
|
```
|
|
|
|
### Codex CLI
|
|
```bash
|
|
npx agent-skills-cli add alirezarezvani/claude-skills/finance
|
|
```
|
|
|
|
## Skills Overview
|
|
|
|
| Skill | Folder | Focus |
|
|
|-------|--------|-------|
|
|
| Financial Analyst | `financial-analyst/` | Ratio analysis, DCF, budget variance, forecasting |
|
|
|
|
## Python Tools
|
|
|
|
4 scripts, all stdlib-only:
|
|
|
|
```bash
|
|
python3 financial-analyst/scripts/ratio_calculator.py --help
|
|
python3 financial-analyst/scripts/dcf_valuation.py --help
|
|
python3 financial-analyst/scripts/budget_variance_analyzer.py --help
|
|
python3 financial-analyst/scripts/forecast_builder.py --help
|
|
```
|
|
|
|
## Rules
|
|
|
|
- Load only the specific skill SKILL.md you need
|
|
- Always validate financial outputs against source data
|