# Send Nova Net Worth to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nova-net-worth",
    "name": "Nova Net Worth",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/jessewunderlich/nova-net-worth",
    "canonicalUrl": "https://clawhub.ai/jessewunderlich/nova-net-worth",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nova-net-worth",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nova-net-worth",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-docs.md",
      "scripts/nova-api.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "nova-net-worth",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T21:27:57.281Z",
      "expiresAt": "2026-05-06T21:27:57.281Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nova-net-worth",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nova-net-worth",
        "contentDisposition": "attachment; filename=\"nova-net-worth-1.3.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "nova-net-worth"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/nova-net-worth"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nova-net-worth",
    "downloadUrl": "https://openagent3.xyz/downloads/nova-net-worth",
    "agentUrl": "https://openagent3.xyz/skills/nova-net-worth/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nova-net-worth/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nova-net-worth/agent.md"
  }
}
```
## Documentation

### Nova Net Worth API Skill

Query your complete financial picture from Nova Net Worth via the Agent API v1.

### Setup

Set the NOVA_API_KEY environment variable with your Nova API key:

export NOVA_API_KEY=nova_your_key_here

Generate your API key at: app.novanetworth.com → Settings → Integrations
Requires SuperNova ($19.99/mo) or Galaxy (enterprise) subscription.

### Quick Start

For any "how are my finances?" or daily briefing question, use the composite endpoint:

node scripts/nova-api.js briefing --pretty

### Available Commands

Run scripts/nova-api.js with a subcommand:

# Full financial briefing (RECOMMENDED — one call gets everything)
node scripts/nova-api.js briefing
node scripts/nova-api.js briefing --pretty    # Human-readable format

# Net worth summary
node scripts/nova-api.js summary

# All accounts with balances, grouped by type
node scripts/nova-api.js accounts

# Recent transactions with filtering
node scripts/nova-api.js transactions
node scripts/nova-api.js transactions --days 7 --limit 20
node scripts/nova-api.js transactions --category FOOD_AND_DRINK
node scripts/nova-api.js transactions --account acct_123
node scripts/nova-api.js transactions --since 2026-02-20T00:00:00Z  # Delta polling

# Financial goals with progress
node scripts/nova-api.js goals

# Monthly spending by category
node scripts/nova-api.js spending
node scripts/nova-api.js spending --months 3

# AI-generated financial insights
node scripts/nova-api.js insights

# Net worth trend over time
node scripts/nova-api.js history
node scripts/nova-api.js history --days 90

# Financial health score breakdown
node scripts/nova-api.js health

# Investment holdings and positions
node scripts/nova-api.js holdings                    # All holdings
node scripts/nova-api.js holdings --pretty           # Human-readable with gain/loss
node scripts/nova-api.js holdings --account acct_123 # Filter by account
node scripts/nova-api.js holdings --summary          # Aggregate by ticker across accounts

All commands support --pretty for human-readable output or --json (default) for raw JSON.

### When to Use Which Endpoint

User QuestionCommandWhy"How are my finances?" / "Financial update"briefingEverything in one call"What's my net worth?"summaryQuick headline number"Show my accounts" / "How much in savings?"accountsAll accounts with balances"What did I spend on food?" / "Recent purchases"transactions --category FOOD_AND_DRINKFilterable transaction list"Monthly spending breakdown"spendingCategories with comparison"Am I on track for my goals?"goalsProgress tracking"Any financial insights?"insightsAI recommendations"Net worth trend this year"history --days 365Historical snapshots"How's my financial health?"healthScore with recommendations"What stocks do I own?" / "Show my portfolio"holdings --prettyPositions with gain/loss"Total exposure by ticker"holdings --summaryAggregated across accounts

### Response Format

All responses: { success: true, data: {...}, meta: { requestId, timestamp } }

Money values are in cents (integer) with a currency field. Divide by 100 for display.
Example: 45840017 = $458,400.17

### Transaction Categories (Plaid)

Common categories for filtering: FOOD_AND_DRINK, RENT_AND_UTILITIES, TRANSPORTATION, GENERAL_MERCHANDISE, TRANSFER_OUT, TRANSFER_IN, LOAN_PAYMENTS, ENTERTAINMENT, PERSONAL_CARE, MEDICAL, TRAVEL, INCOME, UNCATEGORIZED

### Rate Limits

SuperNova: 100 requests/hour
Galaxy: 1,000 requests/hour
Headers: X-RateLimit-Remaining shows remaining calls

### Delta Polling

For efficient monitoring, use --since with the timestamp of your last request:

node scripts/nova-api.js transactions --since 2026-02-25T12:00:00Z

This returns only new transactions since that time, minimizing data transfer.

### Environment

NOVA_API_KEY (required) — Your Nova API key starting with nova_. Generate at app.novanetworth.com → Settings → Integrations.
NOVA_API_URL (optional) — API base URL, defaults to https://api.novanetworth.com

### API Documentation

OpenAPI spec: https://api.novanetworth.com/api-docs/openapi.yaml
Interactive docs: https://novanetworth.com/api-docs
AI plugin: https://novanetworth.com/.well-known/ai-plugin.json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jessewunderlich
- Version: 1.3.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T21:27:57.281Z
- Expires at: 2026-05-06T21:27:57.281Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nova-net-worth)
- [Send to Agent page](https://openagent3.xyz/skills/nova-net-worth/agent)
- [JSON manifest](https://openagent3.xyz/skills/nova-net-worth/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nova-net-worth/agent.md)
- [Download page](https://openagent3.xyz/downloads/nova-net-worth)