원클릭으로
analyzing-financial-statements
This skill calculates key financial ratios and metrics from financial
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
This skill calculates key financial ratios and metrics from financial
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Set up and use 1Password CLI (op). Use when installing the CLI, enabling
Guide for adding new AI function examples, for testing specific features against the actual provider APIs.
Use when editing worker/src/constants/default-model-prices.json, packages/shared/src/server/llm/types.ts, pricing tiers, tokenizer IDs, or matchPattern regexes for OpenAI, Anthropic, Bedrock, Vertex, Azure, or Gemini model pricing.
Fixes broken typing checks detected by ty, make typing, or make check-repo. Use when typing errors appear in local runs, CI, or PR logs.
Add documentation for a new AI provider — usage docs, env vars, Docker
Guide for adding new AI provider packages to the AI SDK. Use when creating
| name | analyzing-financial-statements |
| name_zh | 分析财务报表 |
| description | This skill calculates key financial ratios and metrics from financial |
| description_zh | 计算关键财务比率和指标,用于投资分析和公司评估。 |
| category | applications |
| tags | ["ai","api","evaluation","frontend","javascript"] |
| source | null |
| license | UNKNOWN |
| language | en |
| author | unknown |
| version | 0.1.0 |
| needs_review | false |
| slug | analyzing-financial-statements |
| created | 2026-06-12 |
| updated | 2026-06-12 |
| inputs | [{"name":"request","type":"string","required":true,"description":"User request or task description"}] |
| output | {"format":"markdown","description":"Generated content based on the user request"} |
Use this skill when you need guidance on analyzing financial statements.
User request or task description.
Generated content based on the user request.
Follow the guidelines in this skill when working on related tasks.
This skill provides comprehensive financial ratio analysis for evaluating company performance, profitability, liquidity, and valuation.
Calculate and interpret:
Financial data can be provided as:
Results include:
"Calculate key financial ratios for this company based on the attached financial statements"
"What's the P/E ratio if the stock price is $50 and annual earnings are $2.50 per share?"
"Analyze the liquidity position using the balance sheet data"
calculate_ratios.py: Main calculation engine for all financial ratiosinterpret_ratios.py: Provides interpretation and benchmarkingDo not use this skill for tasks outside its scope.
See the skill content above for practical examples.
# 使用 analyzing-financial-statements 技能
from skill_loader import load_skill
# 加载技能
skill = load_skill("analyzing-financial-statements")
# 执行技能
result = skill.execute(
params={"key": "value"},
options={"verbose": True}
)
# 处理结果
if result.success:
print(f"Success: {result.output}")
else:
print(f"Error: {result.error}")