Agent Skillsevolution-foundation/evo-nexus › fin-weekly-report

fin-weekly-report

GitHub

自动汇总Stripe、Omie和Evo Academy数据,生成包含收入、支出、现金流预测及差异分析的周报。

.claude/skills/fin-weekly-report/SKILL.md evolution-foundation/evo-nexus

Trigger Scenarios

financial weekly weekly financial report financial summary of the week

Install

npx skills add evolution-foundation/evo-nexus --skill fin-weekly-report -g -y
More Options

Non-standard path

npx skills add https://github.com/evolution-foundation/evo-nexus/tree/main/.claude/skills/fin-weekly-report -g -y

Use without installing

npx skills use evolution-foundation/evo-nexus@fin-weekly-report

指定 Agent (Claude Code)

npx skills add evolution-foundation/evo-nexus --skill fin-weekly-report -a claude-code -g -y

安装 repo 全部 skill

npx skills add evolution-foundation/evo-nexus --all -g -y

预览 repo 内 skill

npx skills add evolution-foundation/evo-nexus --list

SKILL.md

Frontmatter
{
    "name": "fin-weekly-report",
    "description": "Weekly financial report — consolidates Stripe, Omie and Evo Academy data for the week: revenue (courses, subscriptions, tickets), expenses, cash flow projection, overdue accounts, and variance analysis. Trigger when user says 'financial weekly', 'weekly financial report', or 'financial summary of the week'."
}

Financial Weekly — Weekly Financial Report

Weekly routine that consolidates the week's financial data: revenue, expenses, Stripe, Omie, Evo Academy, projected cash flow, and analysis.

Always respond in English.

Step 1 — Collect the week's revenue (silently)

1a. Stripe — revenue

Use /int-stripe to fetch:

  • Succeeded charges for the week (Mon-Sun) → group by type/plan
  • Compare with previous week
  • Current MRR vs start of week
  • New customers vs cancellations
  • Payment failures

1b. Omie — revenue

Use /int-omie to fetch:

  • Confirmed receipts for the week
  • Invoices issued during the week

1c. Evo Academy — revenue

Call GET /api/v1/analytics/summary?period=7d (env: $EVO_ACADEMY_BASE_URL, auth: Bearer $EVO_ACADEMY_API_KEY):

  • revenue.total → receita bruta da semana
  • orders.completed → número de vendas
  • subscriptions.active / subscriptions.cancelled → net change

Fetch orders da semana: GET /api/v1/analytics/orders?status=completed&created_after=YYYY-MM-DD&per_page=100

  • Itere por cursor até has_more=false
  • Some amount → receita total Evo Academy na semana
  • Separe: renovações vs novos, one-time vs assinatura

Fetch assinaturas novas na semana: GET /api/v1/analytics/subscriptions?status=active&created_after=YYYY-MM-DD&per_page=100

  • MRR adicionado = soma dos plan.price de assinaturas criadas na semana

Group revenue by category:

  • Stripe Subscriptions
  • Evo Academy — Courses & Subscriptions
  • Evo Academy — One-time (tickets, packs)
  • Services / Consulting
  • Partnerships
  • Other

Step 2 — Collect the week's expenses (silently)

2a. Omie — expenses

Use /int-omie to fetch:

  • Payments made during the week
  • Categorize: Personnel, Infrastructure, Services, Marketing, Taxes, Other

2b. Comparison

  • Calculate variance vs previous week for each category
  • Calculate % of total for each category

Step 3 — Detailed Stripe metrics

Consolidate the week's Stripe metrics:

  • MRR and variance
  • Total active subscriptions and variance
  • Churn rate
  • New customers
  • Payment failures and at-risk amount

Step 4 — Detailed Omie metrics

Consolidate the week's Omie metrics:

  • Overdue receivables (delinquency)
  • Next week's payables
  • Invoices pending issuance
  • Invoices issued during the week
  • Confirmed receipts

Step 4.5 — Detailed Evo Academy metrics

Consolidate Evo Academy's week metrics:

  • MRR (sum of all active subscription plan.price) and variance vs prior week
  • New subscriptions vs cancellations
  • One-time revenue (tickets, packs, live events)
  • Top-selling products of the week
  • Students enrolled (students.new_in_period)

Step 5 — Cash flow projection (4 weeks)

Based on collected data, project:

  • Expected inflows (Stripe recurring + Evo Academy subscriptions + receivables)
  • Expected outflows (payables + recurring expenses)
  • Balance and cumulative by week

Step 6 — Overdue accounts

List all overdue accounts (receivable and payable):

  • Client/Vendor, type, amount, due date, days overdue

Step 7 — Analysis and recommendations

Write a brief analysis (3-5 bullets) covering:

  • Revenue trend (growing/stable/declining)
  • Out-of-pattern spending
  • Delinquency status
  • Cash flow (comfortable or tight)

Write recommended actions (bullets):

  • Collections to make
  • Invoices to issue
  • Payments to expedite/postpone
  • Any flags for the responsible person or finance team

Step 8 — Classify financial health

Health badge (CSS class):

  • green "Healthy": revenue > expenses, no significant delinquency, positive cash flow
  • yellow "Warning": tight margins, or delinquency > R$ 2,000, or projected negative cash flow
  • red "Risk": expenses > revenue, or delinquency > R$ 10,000, or runway < 3 months

Step 9 — Generate HTML

Read the template at .claude/templates/html/custom/financial-weekly.html and replace ALL {{PLACEHOLDER}}.

For dynamic revenue/expense tables:

<tr>
  <td>Category Name</td>
  <td class="right">R$ X,XXX.XX</td>
  <td class="right">XX%</td>
  <td class="right var-positive/var-negative">+X% / -X%</td>
</tr>

For cash flow:

<tr>
  <td>Week DD/MM - DD/MM</td>
  <td class="right">R$ X,XXX</td>
  <td class="right">R$ X,XXX</td>
  <td class="right" style="color:var(--green/--red)">R$ X,XXX</td>
  <td class="right">R$ XX,XXX</td>
</tr>

Values in Brazilian format: R$ 1.234,56

Step 10 — Save

Save to:

workspace/finance/reports/weekly/[C] YYYY-WXX-financial-weekly.html

Create the directory workspace/finance/reports/weekly/ if it does not exist.

Step 11 — Confirm

## Financial Weekly generated

**File:** workspace/finance/reports/weekly/[C] YYYY-WXX-financial-weekly.html
**Revenue:** R$ X,XXX ({var}%) | **Expenses:** R$ X,XXX ({var}%)
**MRR total:** R$ X,XXX (Stripe: R$ X,XXX | Evo Academy: R$ X,XXX) | **Projected 30d balance:** R$ XX,XXX
**Alerts:** {N} overdue accounts | {N} pending invoices

Version History

  • 7f5dd76 Current 2026-07-25 04:54

Same Skill Collection

.claude/skills/create-agent/SKILL.md
.claude/skills/create-command/SKILL.md
.claude/skills/create-goal/SKILL.md
.claude/skills/create-heartbeat/SKILL.md
.claude/skills/create-integration/SKILL.md
.claude/skills/create-routine/SKILL.md
.claude/skills/create-ticket/SKILL.md
.claude/skills/cs-ticket-triage/SKILL.md
.claude/skills/data-build-dashboard/SKILL.md
.claude/skills/data-create-viz/SKILL.md
.claude/skills/data-explore/SKILL.md
.claude/skills/data-statistical-analysis/SKILL.md
.claude/skills/data-validate/SKILL.md
.claude/skills/db-mongo/SKILL.md
.claude/skills/db-mysql/SKILL.md
.claude/skills/db-postgres/SKILL.md
.claude/skills/db-redis/SKILL.md
.claude/skills/dev-ai-slop-cleaner/SKILL.md
.claude/skills/dev-ask/SKILL.md
.claude/skills/dev-autopilot/SKILL.md
.claude/skills/dev-cancel/SKILL.md
.claude/skills/dev-ccg/SKILL.md
.claude/skills/dev-configure-notifications/SKILL.md
.claude/skills/dev-deep-dive/SKILL.md
.claude/skills/dev-deep-interview/SKILL.md
.claude/skills/dev-deepinit/SKILL.md
.claude/skills/dev-external-context/SKILL.md
.claude/skills/dev-learner/SKILL.md
.claude/skills/dev-mcp-setup/SKILL.md
.claude/skills/dev-plan/SKILL.md
.claude/skills/dev-project-session-manager/SKILL.md
.claude/skills/dev-ralph/SKILL.md
.claude/skills/dev-ralplan/SKILL.md
.claude/skills/dev-release/SKILL.md
.claude/skills/dev-remember/SKILL.md
.claude/skills/dev-sciomc/SKILL.md
.claude/skills/dev-skillify/SKILL.md
.claude/skills/dev-team/SKILL.md
.claude/skills/dev-trace/SKILL.md
.claude/skills/dev-ultraqa/SKILL.md
.claude/skills/dev-verify/SKILL.md
.claude/skills/dev-visual-verdict/SKILL.md
.claude/skills/discord-create-channel/SKILL.md
.claude/skills/discord-get-messages/SKILL.md
.claude/skills/discord-list-channels/SKILL.md
.claude/skills/discord-manage-channel/SKILL.md
.claude/skills/discord-send-message/SKILL.md
.claude/skills/fin-audit-support/SKILL.md
.claude/skills/fin-close-management/SKILL.md
.claude/skills/fin-daily-pulse/SKILL.md

Metadata

Files
0
Version
7f5dd76
Hash
9aec9913
Indexed
2026-07-25 04:54

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-22 04:26
浙ICP备14020137号-1 $mapa de visitantes$