{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nova-net-worth",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nova-net-worth",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-docs.md",
      "scripts/nova-api.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/nova-net-worth",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Nova Net Worth API Skill",
        "body": "Query your complete financial picture from Nova Net Worth via the Agent API v1."
      },
      {
        "title": "Setup",
        "body": "Set the NOVA_API_KEY environment variable with your Nova API key:\n\nexport NOVA_API_KEY=nova_your_key_here\n\nGenerate your API key at: app.novanetworth.com → Settings → Integrations\nRequires SuperNova ($19.99/mo) or Galaxy (enterprise) subscription."
      },
      {
        "title": "Quick Start",
        "body": "For any \"how are my finances?\" or daily briefing question, use the composite endpoint:\n\nnode scripts/nova-api.js briefing --pretty"
      },
      {
        "title": "Available Commands",
        "body": "Run scripts/nova-api.js with a subcommand:\n\n# Full financial briefing (RECOMMENDED — one call gets everything)\nnode scripts/nova-api.js briefing\nnode scripts/nova-api.js briefing --pretty    # Human-readable format\n\n# Net worth summary\nnode scripts/nova-api.js summary\n\n# All accounts with balances, grouped by type\nnode scripts/nova-api.js accounts\n\n# Recent transactions with filtering\nnode scripts/nova-api.js transactions\nnode scripts/nova-api.js transactions --days 7 --limit 20\nnode scripts/nova-api.js transactions --category FOOD_AND_DRINK\nnode scripts/nova-api.js transactions --account acct_123\nnode scripts/nova-api.js transactions --since 2026-02-20T00:00:00Z  # Delta polling\n\n# Financial goals with progress\nnode scripts/nova-api.js goals\n\n# Monthly spending by category\nnode scripts/nova-api.js spending\nnode scripts/nova-api.js spending --months 3\n\n# AI-generated financial insights\nnode scripts/nova-api.js insights\n\n# Net worth trend over time\nnode scripts/nova-api.js history\nnode scripts/nova-api.js history --days 90\n\n# Financial health score breakdown\nnode scripts/nova-api.js health\n\n# Investment holdings and positions\nnode scripts/nova-api.js holdings                    # All holdings\nnode scripts/nova-api.js holdings --pretty           # Human-readable with gain/loss\nnode scripts/nova-api.js holdings --account acct_123 # Filter by account\nnode scripts/nova-api.js holdings --summary          # Aggregate by ticker across accounts\n\nAll commands support --pretty for human-readable output or --json (default) for raw JSON."
      },
      {
        "title": "When to Use Which Endpoint",
        "body": "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"
      },
      {
        "title": "Response Format",
        "body": "All responses: { success: true, data: {...}, meta: { requestId, timestamp } }\n\nMoney values are in cents (integer) with a currency field. Divide by 100 for display.\nExample: 45840017 = $458,400.17"
      },
      {
        "title": "Transaction Categories (Plaid)",
        "body": "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"
      },
      {
        "title": "Rate Limits",
        "body": "SuperNova: 100 requests/hour\nGalaxy: 1,000 requests/hour\nHeaders: X-RateLimit-Remaining shows remaining calls"
      },
      {
        "title": "Delta Polling",
        "body": "For efficient monitoring, use --since with the timestamp of your last request:\n\nnode scripts/nova-api.js transactions --since 2026-02-25T12:00:00Z\n\nThis returns only new transactions since that time, minimizing data transfer."
      },
      {
        "title": "Environment",
        "body": "NOVA_API_KEY (required) — Your Nova API key starting with nova_. Generate at app.novanetworth.com → Settings → Integrations.\nNOVA_API_URL (optional) — API base URL, defaults to https://api.novanetworth.com"
      },
      {
        "title": "API Documentation",
        "body": "OpenAPI spec: https://api.novanetworth.com/api-docs/openapi.yaml\nInteractive docs: https://novanetworth.com/api-docs\nAI plugin: https://novanetworth.com/.well-known/ai-plugin.json"
      }
    ],
    "body": "Nova Net Worth API Skill\n\nQuery your complete financial picture from Nova Net Worth via the Agent API v1.\n\nSetup\n\nSet the NOVA_API_KEY environment variable with your Nova API key:\n\nexport NOVA_API_KEY=nova_your_key_here\n\n\nGenerate your API key at: app.novanetworth.com → Settings → Integrations Requires SuperNova ($19.99/mo) or Galaxy (enterprise) subscription.\n\nQuick Start\n\nFor any \"how are my finances?\" or daily briefing question, use the composite endpoint:\n\nnode scripts/nova-api.js briefing --pretty\n\nAvailable Commands\n\nRun scripts/nova-api.js with a subcommand:\n\n# Full financial briefing (RECOMMENDED — one call gets everything)\nnode scripts/nova-api.js briefing\nnode scripts/nova-api.js briefing --pretty    # Human-readable format\n\n# Net worth summary\nnode scripts/nova-api.js summary\n\n# All accounts with balances, grouped by type\nnode scripts/nova-api.js accounts\n\n# Recent transactions with filtering\nnode scripts/nova-api.js transactions\nnode scripts/nova-api.js transactions --days 7 --limit 20\nnode scripts/nova-api.js transactions --category FOOD_AND_DRINK\nnode scripts/nova-api.js transactions --account acct_123\nnode scripts/nova-api.js transactions --since 2026-02-20T00:00:00Z  # Delta polling\n\n# Financial goals with progress\nnode scripts/nova-api.js goals\n\n# Monthly spending by category\nnode scripts/nova-api.js spending\nnode scripts/nova-api.js spending --months 3\n\n# AI-generated financial insights\nnode scripts/nova-api.js insights\n\n# Net worth trend over time\nnode scripts/nova-api.js history\nnode scripts/nova-api.js history --days 90\n\n# Financial health score breakdown\nnode scripts/nova-api.js health\n\n# Investment holdings and positions\nnode scripts/nova-api.js holdings                    # All holdings\nnode scripts/nova-api.js holdings --pretty           # Human-readable with gain/loss\nnode scripts/nova-api.js holdings --account acct_123 # Filter by account\nnode scripts/nova-api.js holdings --summary          # Aggregate by ticker across accounts\n\n\nAll commands support --pretty for human-readable output or --json (default) for raw JSON.\n\nWhen to Use Which Endpoint\nUser Question\tCommand\tWhy\n\"How are my finances?\" / \"Financial update\"\tbriefing\tEverything in one call\n\"What's my net worth?\"\tsummary\tQuick headline number\n\"Show my accounts\" / \"How much in savings?\"\taccounts\tAll accounts with balances\n\"What did I spend on food?\" / \"Recent purchases\"\ttransactions --category FOOD_AND_DRINK\tFilterable transaction list\n\"Monthly spending breakdown\"\tspending\tCategories with comparison\n\"Am I on track for my goals?\"\tgoals\tProgress tracking\n\"Any financial insights?\"\tinsights\tAI recommendations\n\"Net worth trend this year\"\thistory --days 365\tHistorical snapshots\n\"How's my financial health?\"\thealth\tScore with recommendations\n\"What stocks do I own?\" / \"Show my portfolio\"\tholdings --pretty\tPositions with gain/loss\n\"Total exposure by ticker\"\tholdings --summary\tAggregated across accounts\nResponse Format\n\nAll responses: { success: true, data: {...}, meta: { requestId, timestamp } }\n\nMoney values are in cents (integer) with a currency field. Divide by 100 for display. Example: 45840017 = $458,400.17\n\nTransaction Categories (Plaid)\n\nCommon 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\n\nRate Limits\nSuperNova: 100 requests/hour\nGalaxy: 1,000 requests/hour\nHeaders: X-RateLimit-Remaining shows remaining calls\nDelta Polling\n\nFor efficient monitoring, use --since with the timestamp of your last request:\n\nnode scripts/nova-api.js transactions --since 2026-02-25T12:00:00Z\n\n\nThis returns only new transactions since that time, minimizing data transfer.\n\nEnvironment\nNOVA_API_KEY (required) — Your Nova API key starting with nova_. Generate at app.novanetworth.com → Settings → Integrations.\nNOVA_API_URL (optional) — API base URL, defaults to https://api.novanetworth.com\nAPI Documentation\nOpenAPI spec: https://api.novanetworth.com/api-docs/openapi.yaml\nInteractive docs: https://novanetworth.com/api-docs\nAI plugin: https://novanetworth.com/.well-known/ai-plugin.json"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jessewunderlich/nova-net-worth",
    "publisherUrl": "https://clawhub.ai/jessewunderlich/nova-net-worth",
    "owner": "jessewunderlich",
    "version": "1.3.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}