{
  "schemaVersion": "1.0",
  "item": {
    "slug": "splitwise",
    "name": "Splitwise",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/richieforeman/splitwise",
    "canonicalUrl": "https://clawhub.ai/richieforeman/splitwise",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/splitwise",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=splitwise",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api.md",
      "scripts/add_expense.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "splitwise",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T10:07:28.587Z",
      "expiresAt": "2026-05-08T10:07:28.587Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=splitwise",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=splitwise",
        "contentDisposition": "attachment; filename=\"splitwise-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "splitwise"
      },
      "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/splitwise"
    },
    "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/splitwise",
    "agentPageUrl": "https://openagent3.xyz/skills/splitwise/agent",
    "manifestUrl": "https://openagent3.xyz/skills/splitwise/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/splitwise/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Splitwise Skill",
        "body": "This skill allows an agent to interact with the Splitwise API to automate shared expenses."
      },
      {
        "title": "Requirements",
        "body": "SPLITWISE_API_KEY: A Long-lived User Token obtained from the Splitwise Developer Console."
      },
      {
        "title": "External Endpoints",
        "body": "URLPurposeData Senthttps://secure.splitwise.com/api/v3.0/create_expenseCreate a new expenseCost, description, user IDs, shares, and group ID."
      },
      {
        "title": "Security & Privacy",
        "body": "Data Outbound: This skill sends expense details (cost, description, user IDs) to the Splitwise API.\nCredentials: Your SPLITWISE_API_KEY is sent in the Authorization header to Splitwise. It never leaves the machine except to communicate with the official Splitwise API.\nInput: User input for cost and description is handled safely by the Python urllib.request and argparse libraries."
      },
      {
        "title": "Logging an Expense",
        "body": "The primary script handles creating a 50/50 split between two users.\n\npython3 {baseDir}/scripts/add_expense.py \\\n  --cost \"10.00\" \\\n  --desc \"Lunch\" \\\n  --payer_id \"12345\" \\\n  --other_id \"67890\" \\\n  --via \"whisker\""
      },
      {
        "title": "Parameters",
        "body": "--cost: Total amount (e.g., \"45.00\")\n--desc: Brief description of the expense.\n--payer_id: The Splitwise User ID of the person who paid.\n--other_id: The Splitwise User ID of the person being split with.\n--group_id: (Optional) The ID of a specific Splitwise group.\n--via: (Optional) Appends \"(via name)\" to the description."
      },
      {
        "title": "Setup for Agents",
        "body": "Create a Splitwise App at https://secure.splitwise.com/apps.\nGenerate a \"Long-lived User Token\".\nStore it as SPLITWISE_API_KEY.\nUse the API to find your User IDs and Group IDs."
      },
      {
        "title": "Model Invocation Note",
        "body": "This skill is designed for autonomous invocation by AI models. The model will automatically determine when to call these tools based on user requests (e.g., \"split the $20 lunch with Nancy\")."
      },
      {
        "title": "Trust Statement",
        "body": "By using this skill, data is sent to Splitwise. Only install this skill if you trust Splitwise with your expense data."
      }
    ],
    "body": "Splitwise Skill\n\nThis skill allows an agent to interact with the Splitwise API to automate shared expenses.\n\nRequirements\nSPLITWISE_API_KEY: A Long-lived User Token obtained from the Splitwise Developer Console.\nExternal Endpoints\nURL\tPurpose\tData Sent\nhttps://secure.splitwise.com/api/v3.0/create_expense\tCreate a new expense\tCost, description, user IDs, shares, and group ID.\nSecurity & Privacy\nData Outbound: This skill sends expense details (cost, description, user IDs) to the Splitwise API.\nCredentials: Your SPLITWISE_API_KEY is sent in the Authorization header to Splitwise. It never leaves the machine except to communicate with the official Splitwise API.\nInput: User input for cost and description is handled safely by the Python urllib.request and argparse libraries.\nUsage\nLogging an Expense\n\nThe primary script handles creating a 50/50 split between two users.\n\npython3 {baseDir}/scripts/add_expense.py \\\n  --cost \"10.00\" \\\n  --desc \"Lunch\" \\\n  --payer_id \"12345\" \\\n  --other_id \"67890\" \\\n  --via \"whisker\"\n\nParameters\n--cost: Total amount (e.g., \"45.00\")\n--desc: Brief description of the expense.\n--payer_id: The Splitwise User ID of the person who paid.\n--other_id: The Splitwise User ID of the person being split with.\n--group_id: (Optional) The ID of a specific Splitwise group.\n--via: (Optional) Appends \"(via name)\" to the description.\nSetup for Agents\nCreate a Splitwise App at https://secure.splitwise.com/apps.\nGenerate a \"Long-lived User Token\".\nStore it as SPLITWISE_API_KEY.\nUse the API to find your User IDs and Group IDs.\nModel Invocation Note\n\nThis skill is designed for autonomous invocation by AI models. The model will automatically determine when to call these tools based on user requests (e.g., \"split the $20 lunch with Nancy\").\n\nTrust Statement\n\nBy using this skill, data is sent to Splitwise. Only install this skill if you trust Splitwise with your expense data."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/richieforeman/splitwise",
    "publisherUrl": "https://clawhub.ai/richieforeman/splitwise",
    "owner": "richieforeman",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/splitwise",
    "downloadUrl": "https://openagent3.xyz/downloads/splitwise",
    "agentUrl": "https://openagent3.xyz/skills/splitwise/agent",
    "manifestUrl": "https://openagent3.xyz/skills/splitwise/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/splitwise/agent.md"
  }
}