{
  "schemaVersion": "1.0",
  "item": {
    "slug": "firefly-iii",
    "name": "Firefly III",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pushp1997/firefly-iii",
    "canonicalUrl": "https://clawhub.ai/pushp1997/firefly-iii",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/firefly-iii",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=firefly-iii",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/firefly-iii"
    },
    "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/firefly-iii",
    "agentPageUrl": "https://openagent3.xyz/skills/firefly-iii/agent",
    "manifestUrl": "https://openagent3.xyz/skills/firefly-iii/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/firefly-iii/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": "Firefly III",
        "body": "Firefly III is a self-hosted personal finance manager. This skill provides API access for managing finances."
      },
      {
        "title": "Configuration",
        "body": "Required environment:\n\nFIREFLY_URL: Base URL (e.g., https://budget.example.com)\nFIREFLY_TOKEN: Personal Access Token (stored at ~/.firefly_token)\n\nGet token: Profile → OAuth → Personal Access Tokens → Create new token"
      },
      {
        "title": "API Basics",
        "body": "TOKEN=$(cat ~/.firefly_token)\nBASE=\"$FIREFLY_URL/api/v1\"\ncurl -s \"$BASE/endpoint\" \\\n  -H \"Authorization: Bearer $TOKEN\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\""
      },
      {
        "title": "Accounts",
        "body": "# List accounts\ncurl \"$BASE/accounts?type=asset\" # asset|expense|revenue|liability\n# Create account\ncurl -X POST \"$BASE/accounts\" -d '{\n  \"name\": \"Bank Account\",\n  \"type\": \"asset\",\n  \"account_role\": \"defaultAsset\",\n  \"currency_code\": \"EUR\"\n}'\n\nAccount types: asset, expense, revenue, liability\nAsset roles: defaultAsset, savingAsset, sharedAsset, ccAsset"
      },
      {
        "title": "Transactions",
        "body": "# List transactions\ncurl \"$BASE/transactions?type=withdrawal&start=2026-01-01&end=2026-01-31\"\n# Create withdrawal (expense)\ncurl -X POST \"$BASE/transactions\" -d '{\n  \"transactions\": [{\n    \"type\": \"withdrawal\",\n    \"date\": \"2026-01-15\",\n    \"amount\": \"50.00\",\n    \"description\": \"Groceries\",\n    \"source_name\": \"Bank Account\",\n    \"destination_name\": \"Supermarket\",\n    \"category_name\": \"Groceries\"\n  }]\n}'\n# Create deposit (income)\ncurl -X POST \"$BASE/transactions\" -d '{\n  \"transactions\": [{\n    \"type\": \"deposit\",\n    \"date\": \"2026-01-01\",\n    \"amount\": \"3000.00\",\n    \"description\": \"Salary\",\n    \"source_name\": \"Employer\",\n    \"destination_name\": \"Bank Account\",\n    \"category_name\": \"Salary\"\n  }]\n}'\n# Create transfer\ncurl -X POST \"$BASE/transactions\" -d '{\n  \"transactions\": [{\n    \"type\": \"transfer\",\n    \"date\": \"2026-01-05\",\n    \"amount\": \"500.00\",\n    \"description\": \"Savings\",\n    \"source_name\": \"Bank Account\",\n    \"destination_name\": \"Savings Account\"\n  }]\n}'\n\nTransaction types: withdrawal, deposit, transfer"
      },
      {
        "title": "Categories",
        "body": "# List categories\ncurl \"$BASE/categories\"\n# Create category\ncurl -X POST \"$BASE/categories\" -d '{\"name\": \"Groceries\"}'"
      },
      {
        "title": "Budgets",
        "body": "# List budgets\ncurl \"$BASE/budgets\"\n# Create budget\ncurl -X POST \"$BASE/budgets\" -d '{\"name\": \"Food\", \"active\": true}'\n# Set budget limit for period\ncurl -X POST \"$BASE/budgets/{id}/limits\" -d '{\n  \"start\": \"2026-01-01\",\n  \"end\": \"2026-01-31\",\n  \"amount\": \"500.00\"\n}'"
      },
      {
        "title": "Piggy Banks (Savings Goals)",
        "body": "# List piggy banks\ncurl \"$BASE/piggy-banks\"\n# Create piggy bank\ncurl -X POST \"$BASE/piggy-banks\" -d '{\n  \"name\": \"Vacation Fund\",\n  \"target_amount\": \"2000.00\",\n  \"accounts\": [{\"account_id\": \"1\"}],\n  \"start_date\": \"2026-01-01\",\n  \"target_date\": \"2026-12-31\",\n  \"transaction_currency_code\": \"EUR\"\n}'\n# Add money to piggy bank\ncurl -X POST \"$BASE/piggy-banks/{id}/events\" -d '{\"amount\": \"100.00\"}'"
      },
      {
        "title": "Subscriptions (Bills)",
        "body": "# List subscriptions\ncurl \"$BASE/subscriptions\"\n# Create subscription\ncurl -X POST \"$BASE/subscriptions\" -d '{\n  \"name\": \"Netflix\",\n  \"amount_min\": \"12.99\",\n  \"amount_max\": \"12.99\",\n  \"date\": \"2026-01-15\",\n  \"repeat_freq\": \"monthly\",\n  \"currency_code\": \"EUR\"\n}'\n\nRepeat frequencies: weekly, monthly, quarterly, half-year, yearly"
      },
      {
        "title": "Recurring Transactions",
        "body": "# List recurring transactions\ncurl \"$BASE/recurrences\"\n# Create recurring transaction\ncurl -X POST \"$BASE/recurrences\" -d '{\n  \"type\": \"withdrawal\",\n  \"title\": \"Rent\",\n  \"first_date\": \"2026-01-01\",\n  \"repeat_until\": \"2026-12-31\",\n  \"repetitions\": [{\n    \"type\": \"monthly\",\n    \"moment\": \"1\"\n  }],\n  \"transactions\": [{\n    \"amount\": \"1000.00\",\n    \"description\": \"Monthly rent\",\n    \"source_id\": \"1\",\n    \"destination_name\": \"Landlord\",\n    \"category_name\": \"Rent\"\n  }]\n}'"
      },
      {
        "title": "Rules (Auto-categorization)",
        "body": "# List rules\ncurl \"$BASE/rules\"\n# Create rule\ncurl -X POST \"$BASE/rules\" -d '{\n  \"title\": \"Categorize groceries\",\n  \"trigger\": \"store-journal\",\n  \"active\": true,\n  \"strict\": false,\n  \"triggers\": [\n    {\"type\": \"description_contains\", \"value\": \"ALDI\"}\n  ],\n  \"actions\": [\n    {\"type\": \"set_category\", \"value\": \"Groceries\"}\n  ]\n}'\n\nTrigger types: description_contains, description_starts, description_ends, amount_less, amount_more, source_account_is, etc.\nAction types: set_category, set_budget, add_tag, set_description, etc."
      },
      {
        "title": "Tags",
        "body": "# List tags\ncurl \"$BASE/tags\"\n# Create tag\ncurl -X POST \"$BASE/tags\" -d '{\"tag\": \"vacation\"}'"
      },
      {
        "title": "Reports & Summary",
        "body": "# Account balance over time\ncurl \"$BASE/accounts/{id}/transactions?start=2026-01-01&end=2026-01-31\"\n# Get current balances\ncurl \"$BASE/accounts\" | jq '.data[] | {name: .attributes.name, balance: .attributes.current_balance}'"
      },
      {
        "title": "Get spending by category",
        "body": "curl \"$BASE/categories\" | jq '.data[] | {name: .attributes.name, spent: .attributes.spent}'"
      },
      {
        "title": "Get budget progress",
        "body": "curl \"$BASE/budgets\" | jq '.data[] | {name: .attributes.name, spent: .attributes.spent}'"
      },
      {
        "title": "Search transactions",
        "body": "curl \"$BASE/search/transactions?query=groceries&limit=25\""
      },
      {
        "title": "Error Handling",
        "body": "422 Unprocessable Entity: Check required fields in error response\n401 Unauthorized: Token expired or invalid\n404 Not Found: Resource doesn't exist"
      },
      {
        "title": "Tips",
        "body": "Use source_name/destination_name to auto-create expense/revenue accounts\nCategories are different from budgets (categories for classification, budgets for limits)\nPiggy banks require linking to an asset account\nUse rules to auto-categorize transactions on creation"
      }
    ],
    "body": "Firefly III\n\nFirefly III is a self-hosted personal finance manager. This skill provides API access for managing finances.\n\nConfiguration\n\nRequired environment:\n\nFIREFLY_URL: Base URL (e.g., https://budget.example.com)\nFIREFLY_TOKEN: Personal Access Token (stored at ~/.firefly_token)\n\nGet token: Profile → OAuth → Personal Access Tokens → Create new token\n\nAPI Basics\nTOKEN=$(cat ~/.firefly_token)\nBASE=\"$FIREFLY_URL/api/v1\"\ncurl -s \"$BASE/endpoint\" \\\n  -H \"Authorization: Bearer $TOKEN\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\"\n\nCore Endpoints\nAccounts\n# List accounts\ncurl \"$BASE/accounts?type=asset\" # asset|expense|revenue|liability\n# Create account\ncurl -X POST \"$BASE/accounts\" -d '{\n  \"name\": \"Bank Account\",\n  \"type\": \"asset\",\n  \"account_role\": \"defaultAsset\",\n  \"currency_code\": \"EUR\"\n}'\n\n\nAccount types: asset, expense, revenue, liability Asset roles: defaultAsset, savingAsset, sharedAsset, ccAsset\n\nTransactions\n# List transactions\ncurl \"$BASE/transactions?type=withdrawal&start=2026-01-01&end=2026-01-31\"\n# Create withdrawal (expense)\ncurl -X POST \"$BASE/transactions\" -d '{\n  \"transactions\": [{\n    \"type\": \"withdrawal\",\n    \"date\": \"2026-01-15\",\n    \"amount\": \"50.00\",\n    \"description\": \"Groceries\",\n    \"source_name\": \"Bank Account\",\n    \"destination_name\": \"Supermarket\",\n    \"category_name\": \"Groceries\"\n  }]\n}'\n# Create deposit (income)\ncurl -X POST \"$BASE/transactions\" -d '{\n  \"transactions\": [{\n    \"type\": \"deposit\",\n    \"date\": \"2026-01-01\",\n    \"amount\": \"3000.00\",\n    \"description\": \"Salary\",\n    \"source_name\": \"Employer\",\n    \"destination_name\": \"Bank Account\",\n    \"category_name\": \"Salary\"\n  }]\n}'\n# Create transfer\ncurl -X POST \"$BASE/transactions\" -d '{\n  \"transactions\": [{\n    \"type\": \"transfer\",\n    \"date\": \"2026-01-05\",\n    \"amount\": \"500.00\",\n    \"description\": \"Savings\",\n    \"source_name\": \"Bank Account\",\n    \"destination_name\": \"Savings Account\"\n  }]\n}'\n\n\nTransaction types: withdrawal, deposit, transfer\n\nCategories\n# List categories\ncurl \"$BASE/categories\"\n# Create category\ncurl -X POST \"$BASE/categories\" -d '{\"name\": \"Groceries\"}'\n\nBudgets\n# List budgets\ncurl \"$BASE/budgets\"\n# Create budget\ncurl -X POST \"$BASE/budgets\" -d '{\"name\": \"Food\", \"active\": true}'\n# Set budget limit for period\ncurl -X POST \"$BASE/budgets/{id}/limits\" -d '{\n  \"start\": \"2026-01-01\",\n  \"end\": \"2026-01-31\",\n  \"amount\": \"500.00\"\n}'\n\nPiggy Banks (Savings Goals)\n# List piggy banks\ncurl \"$BASE/piggy-banks\"\n# Create piggy bank\ncurl -X POST \"$BASE/piggy-banks\" -d '{\n  \"name\": \"Vacation Fund\",\n  \"target_amount\": \"2000.00\",\n  \"accounts\": [{\"account_id\": \"1\"}],\n  \"start_date\": \"2026-01-01\",\n  \"target_date\": \"2026-12-31\",\n  \"transaction_currency_code\": \"EUR\"\n}'\n# Add money to piggy bank\ncurl -X POST \"$BASE/piggy-banks/{id}/events\" -d '{\"amount\": \"100.00\"}'\n\nSubscriptions (Bills)\n# List subscriptions\ncurl \"$BASE/subscriptions\"\n# Create subscription\ncurl -X POST \"$BASE/subscriptions\" -d '{\n  \"name\": \"Netflix\",\n  \"amount_min\": \"12.99\",\n  \"amount_max\": \"12.99\",\n  \"date\": \"2026-01-15\",\n  \"repeat_freq\": \"monthly\",\n  \"currency_code\": \"EUR\"\n}'\n\n\nRepeat frequencies: weekly, monthly, quarterly, half-year, yearly\n\nRecurring Transactions\n# List recurring transactions\ncurl \"$BASE/recurrences\"\n# Create recurring transaction\ncurl -X POST \"$BASE/recurrences\" -d '{\n  \"type\": \"withdrawal\",\n  \"title\": \"Rent\",\n  \"first_date\": \"2026-01-01\",\n  \"repeat_until\": \"2026-12-31\",\n  \"repetitions\": [{\n    \"type\": \"monthly\",\n    \"moment\": \"1\"\n  }],\n  \"transactions\": [{\n    \"amount\": \"1000.00\",\n    \"description\": \"Monthly rent\",\n    \"source_id\": \"1\",\n    \"destination_name\": \"Landlord\",\n    \"category_name\": \"Rent\"\n  }]\n}'\n\nRules (Auto-categorization)\n# List rules\ncurl \"$BASE/rules\"\n# Create rule\ncurl -X POST \"$BASE/rules\" -d '{\n  \"title\": \"Categorize groceries\",\n  \"trigger\": \"store-journal\",\n  \"active\": true,\n  \"strict\": false,\n  \"triggers\": [\n    {\"type\": \"description_contains\", \"value\": \"ALDI\"}\n  ],\n  \"actions\": [\n    {\"type\": \"set_category\", \"value\": \"Groceries\"}\n  ]\n}'\n\n\nTrigger types: description_contains, description_starts, description_ends, amount_less, amount_more, source_account_is, etc. Action types: set_category, set_budget, add_tag, set_description, etc.\n\nTags\n# List tags\ncurl \"$BASE/tags\"\n# Create tag\ncurl -X POST \"$BASE/tags\" -d '{\"tag\": \"vacation\"}'\n\nReports & Summary\n# Account balance over time\ncurl \"$BASE/accounts/{id}/transactions?start=2026-01-01&end=2026-01-31\"\n# Get current balances\ncurl \"$BASE/accounts\" | jq '.data[] | {name: .attributes.name, balance: .attributes.current_balance}'\n\nCommon Tasks\nGet spending by category\ncurl \"$BASE/categories\" | jq '.data[] | {name: .attributes.name, spent: .attributes.spent}'\n\nGet budget progress\ncurl \"$BASE/budgets\" | jq '.data[] | {name: .attributes.name, spent: .attributes.spent}'\n\nSearch transactions\ncurl \"$BASE/search/transactions?query=groceries&limit=25\"\n\nError Handling\n422 Unprocessable Entity: Check required fields in error response\n401 Unauthorized: Token expired or invalid\n404 Not Found: Resource doesn't exist\nTips\nUse source_name/destination_name to auto-create expense/revenue accounts\nCategories are different from budgets (categories for classification, budgets for limits)\nPiggy banks require linking to an asset account\nUse rules to auto-categorize transactions on creation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pushp1997/firefly-iii",
    "publisherUrl": "https://clawhub.ai/pushp1997/firefly-iii",
    "owner": "pushp1997",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/firefly-iii",
    "downloadUrl": "https://openagent3.xyz/downloads/firefly-iii",
    "agentUrl": "https://openagent3.xyz/skills/firefly-iii/agent",
    "manifestUrl": "https://openagent3.xyz/skills/firefly-iii/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/firefly-iii/agent.md"
  }
}