tres-onboarding

작성자: anthropic

TRES Finance에 신규 엔티티, 고객 또는 계정을 온보딩하는 엔드투엔드 프로세스입니다. 지갑 업로드, 데이터 수집(커밋), 잔액… 순서대로 8단계를 조정합니다.

npx skills add https://github.com/anthropics/claude-plugins-community --skill tres-onboarding

TRES Finance — Full Entity Onboarding

Orchestrate the complete onboarding of a new entity/customer/account into TRES Finance. This skill does not contain its own low-level logic — instead, it drives the user through 8 sequential steps, invoking the dedicated skill for each one. Think of it as a conductor that keeps the onboarding moving forward while each sub-skill handles the details.


Before You Start

No visualizations for input gathering. Do NOT use show_widget, HTML widgets, interactive forms, AskUserQuestion widgets, or any visualization tool when collecting initial context from the user or presenting the onboarding roadmap. Ask all questions and present the roadmap as plain text in the chat. This keeps the flow fast and responsive — building a widget just to ask for a name and wallet list adds unnecessary latency. Visualizations are fine later when individual sub-skills need them (e.g., balance validation dashboards, recon gap tables), but the onboarding kick-off and step transitions must be text-only.

  1. Confirm intent. The user must have explicitly requested a full onboarding (new entity, new customer, new account). If the request is ambiguous, ask: "Are you looking to run the full onboarding flow for a new entity, or do you just need help with a specific step (like uploading wallets or validating balances)?"

  2. Collect context. Ask the user in plain text (no widgets, no forms) for:

    • The entity/customer/account name
    • Any wallets or exchange accounts they already have ready (file, list, etc.)
    • Whether they have a target date in mind for the onboarding
  3. Present the roadmap. Before diving in, show the user the roadmap as plain text in the chat (not as an HTML widget or visualization) so they know what to expect. Use something like:

    Here's the onboarding roadmap for [Entity Name]:

    1. Upload Wallets — Add on-chain wallets and/or exchange accounts
    2. Data Collection (Commit) — Pull on-chain data for the uploaded wallets
    3. Validate Balances — Cross-check TRES balances against on-chain sources
    4. Reconciliation — Review and resolve any balance gaps
    5. Cost Basis — Configure and run cost basis calculation
    6. Export Unidentified Addresses — Extract 3rd-party addresses from transactions
    7. Import Contacts — Label and import the identified addresses back into TRES
    8. Rollup Rules — Set up transaction aggregation for high-volume wallets

    We'll go through each step together. Ready to start?


The Onboarding Pipeline

Work through each step in order. After completing each step, briefly summarize what was accomplished and ask the user if they're ready to move on. If a step isn't relevant (e.g., no high-volume wallets that need rollup rules), the user can skip it.

Important: For each step, invoke the corresponding skill by name. Read its SKILL.md and follow its instructions. The sub-skill handles all the details — your job is to transition smoothly between steps and keep the user oriented.

Step 1: Upload Wallets

Skill: tres-wallets-upload

Invoke the tres-wallets-upload skill. This guides the user through adding their on-chain wallets and/or exchange accounts into TRES. Once wallets are created, confirm the count and proceed.

Transition: "Wallets are uploaded. Next, we'll collect on-chain data for them."


Step 2: Data Collection (Commit)

Skill: tres-data-collection-commit

Invoke the tres-data-collection-commit skill. This triggers on-chain data collection for the wallets that were just uploaded. The commit may take some time depending on the number of wallets and their history.

Transition: "Data collection is in progress / complete. Next, let's validate that the balances TRES pulled match what's actually on-chain."


Step 3: Validate Balances

Skill: tres-asset-balance-validation

Invoke the tres-asset-balance-validation skill. This compares TRES balances against DeBank (for EVM wallets) and generates a discrepancy report. Review any issues with the user.

Transition: "Balance validation is done. Let's move on to reconciliation to close any remaining gaps."


Step 4: Reconciliation

Skill: tres-recon-gaps

Invoke the tres-recon-gaps skill. This fetches reconciliation gap data, displays it, and helps the user resolve any on-chain vs. book balance discrepancies. If there are no gaps, celebrate and move on.

Transition: "Reconciliation is squared away. Now let's set up cost basis calculation."


Step 5: Cost Basis

Skill: tres-cost-basis

Invoke the tres-cost-basis skill. This walks through strategy selection if needed, triggers cost basis calculation, surfaces per-asset results and financial issues, and covers reevaluations, spec-ID rules, and related cost basis operations as needed. Review any financial issues (negative balances, missing fiat prices) that surface.

Transition: "Cost basis is configured and running. Next, let's identify the external addresses your wallets have been interacting with."


Step 6: Export Unidentified Addresses

Skill: tres-export-3rd-party-contacts

Invoke the tres-export-3rd-party-contacts skill. This extracts all unidentified external addresses from the entity's transactions and exports them as an XLSX workbook. The user will need to review and label these addresses (who each address belongs to).

Transition: "The unidentified addresses have been exported. Once you've labeled them, we'll import them back as contacts. If you need time to fill in the names, we can pause here and come back to the next step later — just say 'continue onboarding' when ready."

Note: This step produces output that the user needs to review and fill in offline. Offer to pause the onboarding here and resume later. If the user wants to continue immediately (maybe they'll label contacts later), that's fine — skip to Step 8.


Step 7: Import Contacts

Skill: tres-import-contacts

Invoke the tres-import-contacts skill. This reads the user's labeled contacts file and imports the address-to-name mappings into the TRES address book.

Transition: "Contacts are imported! Last step — let's set up rollup rules for any high-volume wallets."


Step 8: Rollup Rules

Skill: tres-rollup-rules

Invoke the tres-rollup-rules skill. This helps the user identify wallets with high transaction volume and create daily or monthly rollup rules to consolidate small sub-transactions (gas fees, staking rewards, etc.) into cleaner aggregated entries.

If no wallets need rollup rules, skip this step.


Completion

Once all steps are done (or skipped where appropriate), wrap up with a summary:

Onboarding complete for [Entity Name]!

Here's what we accomplished:

  • Uploaded X wallets across Y networks
  • Collected on-chain data
  • Validated balances (note any outstanding issues)
  • Reconciled gaps (note status)
  • Configured cost basis strategy: [strategy]
  • Exported and imported Z contacts
  • Set up N rollup rules

The entity is ready to go in TRES Finance.


Handling Interruptions and Resumption

The user may need to pause and come back later (especially around Step 6-7 where they need to label contacts offline). Keep track of which step was last completed. If the user comes back and says something like "continue onboarding" or "where were we with onboarding [entity]?", pick up from the next incomplete step.

Skipping Steps

The user can skip any step if it's not relevant. For example:

  • No EVM wallets → skip balance validation (Step 3)
  • No gaps → reconciliation completes quickly (Step 4)
  • No need for contacts right now → skip Steps 6-7
  • No high-volume wallets → skip rollup rules (Step 8)

Always respect the user's choice and move to the next step.

anthropic의 다른 스킬

analyzing-financial-statements
anthropic
이 스킬은 재무제표 데이터로부터 투자 분석을 위한 주요 재무 비율과 지표를 계산합니다.
applying-brand-guidelines
anthropic
이 스킬은 생성된 모든 문서에 일관된 기업 브랜딩과 스타일(색상, 글꼴, 레이아웃, 메시징 포함)을 적용합니다.
creating-financial-models
anthropic
이 스킬은 DCF 분석, 민감도 테스트, 몬테카를로 시뮬레이션, 시나리오 플래닝을 포함한 고급 재무 모델링 제품군을 투자…에 제공합니다.
board-minutes
anthropic
이사회 또는 위원회 회의록을 사내 형식으로 작성합니다. 캘린더에서 예정된 이사회 및 위원회 회의를 자동으로 감지하고, 안건을 요청한 후…
crm-cleanup
anthropic
HubSpot에서 오래된 거래, 중복 연락처, 누락된 필드를 스캔한 후 소유자가 승인한 항목을 수정합니다. 선택적 범위 인수를 받아 거래, 연락처 등을 지정할 수 있습니다.
redshift-api
anthropic
Amazon Redshift에 대해 SQL 실행 — 명령문 제출, 상태 폴링, 결과 페이지 탐색, 데이터베이스/스키마/테이블 탐색. 사용자가 원할 때마다 이 기능을 사용하세요…
ticket-deflector
anthropic
고객이 전달한 이메일이나 티켓을 읽고, PayPal에서 주문/환불 상태를 가져오며, HubSpot에서 계정 내역을 조회한 후, 소유자의 어조에 맞춰 답변을 작성합니다.
reg-feed-watcher
anthropic
규제 피드를 지금 확인하고, 마지막 확인 이후 새로 추가된 내용을 사용자의 중요도 기준에 따라 필터링하여 보고합니다. 사용자가 "피드 확인해 줘"라고 말할 때 사용하세요.