用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/tomes --skill executive-financial-briefing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
> Use when this capability is needed.
Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.
Use when writing a Rust test that exercises a failure path or a MASM test that expects a `panic` / `assert` — assert on the specific expected error variant or error code.
基于 SOC 职业分类
正在显示 SKILL.md
| name | executive-financial-briefing |
| description | Generates a concise executive-level financial briefing or summary suitable |
| metadata | {"author":"awslabs"} |
Produces a one-page executive financial briefing covering the most recent quarter's performance, key KPIs, notable trends, and 3 action items.
No inputs required. Uses the most recent quarter (Q3 2025) as the primary period, with Q2 2025 as the comparison.
Fetch current and prior quarter P&L:
get_financial_data(period="Q3 2025")
get_financial_data(period="Q2 2025")
get_kpi_benchmarks()
Use python_exec to calculate all KPIs for both quarters:
# Q3 2025
r3 = 4200000; c3 = 1890000; o3 = 1050000; e3 = 1260000
# Q2 2025
r2 = 3800000; c2 = 1710000; o2 = 980000; e2 = 1110000
# KPIs
gm3 = round((r3 - c3) / r3 * 100, 1)
em3 = round(e3 / r3 * 100, 1)
op3 = round(o3 / r3 * 100, 1)
qoq3 = round((r3 - r2) / r2 * 100, 1)
gm2 = round((r2 - c2) / r2 * 100, 1)
em2 = round(e2 / r2 * 100, 1)
op2 = round(o2 / r2 * 100, 1)
def status(val, benchmark, higher_better=True):
diff = val - benchmark
if higher_better:
if diff >= 0: return "GREEN"
if diff >= -5: return "YELLOW"
return "RED"
else:
if diff <= 0: return "GREEN"
if diff <= 5: return "YELLOW"
return "RED"
print("=== Q3 2025 EXECUTIVE DASHBOARD ===")
print(f"Revenue: ${r3:,.0f} (QoQ: {qoq3:+.1f}%)")
print(f"EBITDA: ${e3:,.0f} (margin: {em3}%) [{status(em3,15)}]")
print(f"Gross Margin: {gm3}% (benchmark: 40%) [{status(gm3,40)}]")
print(f"OpEx Ratio: {op3}% (benchmark: 30%) [{status(op3,30,False)}]")
print(f"\nQoQ Changes:")
print(f" Revenue: {qoq3:+.1f}%")
print(f" Gross Margin: {gm3-gm2:+.1f}pp")
print(f" EBITDA Margin: {em3-em2:+.1f}pp")
print(f" OpEx Ratio: {op3-op2:+.1f}pp")
Write a structured executive briefing with exactly these sections:
FINANCIAL BRIEFING — Q3 2025 Prepared by Financial Analyst Agent | [today's date]
Headline Numbers
Performance vs Benchmarks
What's Working
Watch List
Recommended Actions
Keep the entire briefing to under 400 words. Write for a time-pressured CFO who reads this in 60 seconds.
Source: awslabs/agentcore-samples — distributed by TomeVault.