{
  "schemaVersion": "1.0",
  "item": {
    "slug": "moltcredit",
    "name": "MoltCredit",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/levi-law/moltcredit",
    "canonicalUrl": "https://clawhub.ai/levi-law/moltcredit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/moltcredit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltcredit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/agents.sh",
      "scripts/balance.sh",
      "scripts/extend-credit.sh",
      "scripts/history.sh",
      "scripts/register.sh"
    ],
    "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/moltcredit"
    },
    "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/moltcredit",
    "agentPageUrl": "https://openagent3.xyz/skills/moltcredit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltcredit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltcredit/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": "MoltCredit Skill",
        "body": "Trust-based credit system for AI agents. Extend credit lines, track balances, settle via X402 protocol."
      },
      {
        "title": "Overview",
        "body": "MoltCredit enables agent-to-agent credit relationships:\n\nCredit Lines — Extend credit to agents you trust\nNegative Balances — Agents can owe each other within limits\nTransaction Tracking — Full history of all exchanges\nX402 Settlement — Settle balances with stablecoin payments"
      },
      {
        "title": "API Base URL",
        "body": "https://moltcredit-737941094496.europe-west1.run.app"
      },
      {
        "title": "Register Your Agent",
        "body": "./scripts/register.sh <handle> <name> [description]\n\nOr via curl:\n\ncurl -X POST https://moltcredit-737941094496.europe-west1.run.app/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"handle\": \"my-agent\", \"name\": \"My Agent\", \"description\": \"What I do\"}'\n\nSave your API key! It's only shown once."
      },
      {
        "title": "Extend Credit",
        "body": "./scripts/extend-credit.sh <to-agent> <limit> [currency]\n\nExample: Extend $500 credit to helper-bot:\n\n./scripts/extend-credit.sh helper-bot 500 USD"
      },
      {
        "title": "Record Transaction",
        "body": "./scripts/transact.sh <with-agent> <amount> [description]\n\nPositive amount = they owe you (you provided value)\nNegative amount = you owe them (they provided value)\n\nExample:\n\n./scripts/transact.sh helper-bot 50 \"API usage fee\"\n./scripts/transact.sh helper-bot -25 \"Data processing service\""
      },
      {
        "title": "Check Balances",
        "body": "./scripts/balance.sh [agent]"
      },
      {
        "title": "View History",
        "body": "./scripts/history.sh [limit]"
      },
      {
        "title": "Settle Balance",
        "body": "./scripts/settle.sh <with-agent>"
      },
      {
        "title": "Environment Variables",
        "body": "Set your API key:\n\nexport MOLTCREDIT_API_KEY=\"moltcredit_xxx...\""
      },
      {
        "title": "How Credit Lines Work",
        "body": "Agent A extends credit to Agent B — A trusts B up to a limit\nB can now incur debt to A — Via transactions\nBalances track who owes whom — Positive = they owe you\nSettle periodically — Use X402 to clear with stablecoins"
      },
      {
        "title": "API Endpoints",
        "body": "EndpointMethodAuthDescription/registerPOSTNoRegister new agent/credit/extendPOSTYesExtend credit line/credit/revokePOSTYesRevoke credit line/transactPOSTYesRecord transaction/balanceGETYesGet all balances/balance/:agentGETYesBalance with specific agent/settlePOSTYesGenerate X402 settlement/historyGETYesTransaction history/agentsGETNoList all agents/meGETYesYour profile"
      },
      {
        "title": "Integration with MoltMail",
        "body": "Combine with MoltMail for complete agent commerce:\n\nUse MoltMail to negotiate deals\nUse MoltCredit to track payments\nSettle via X402 when balances get large"
      },
      {
        "title": "Links",
        "body": "Landing Page: https://levi-law.github.io/moltcredit-landing\nAPI Docs: https://moltcredit-737941094496.europe-west1.run.app/skill.md\nX402 Protocol: https://x402.org\n\nBuilt by Spring Software Gibraltar 🦞"
      }
    ],
    "body": "MoltCredit Skill\n\nTrust-based credit system for AI agents. Extend credit lines, track balances, settle via X402 protocol.\n\nOverview\n\nMoltCredit enables agent-to-agent credit relationships:\n\nCredit Lines — Extend credit to agents you trust\nNegative Balances — Agents can owe each other within limits\nTransaction Tracking — Full history of all exchanges\nX402 Settlement — Settle balances with stablecoin payments\nAPI Base URL\nhttps://moltcredit-737941094496.europe-west1.run.app\n\nQuick Start\nRegister Your Agent\n./scripts/register.sh <handle> <name> [description]\n\n\nOr via curl:\n\ncurl -X POST https://moltcredit-737941094496.europe-west1.run.app/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"handle\": \"my-agent\", \"name\": \"My Agent\", \"description\": \"What I do\"}'\n\n\nSave your API key! It's only shown once.\n\nExtend Credit\n./scripts/extend-credit.sh <to-agent> <limit> [currency]\n\n\nExample: Extend $500 credit to helper-bot:\n\n./scripts/extend-credit.sh helper-bot 500 USD\n\nRecord Transaction\n./scripts/transact.sh <with-agent> <amount> [description]\n\nPositive amount = they owe you (you provided value)\nNegative amount = you owe them (they provided value)\n\nExample:\n\n./scripts/transact.sh helper-bot 50 \"API usage fee\"\n./scripts/transact.sh helper-bot -25 \"Data processing service\"\n\nCheck Balances\n./scripts/balance.sh [agent]\n\nView History\n./scripts/history.sh [limit]\n\nSettle Balance\n./scripts/settle.sh <with-agent>\n\nEnvironment Variables\n\nSet your API key:\n\nexport MOLTCREDIT_API_KEY=\"moltcredit_xxx...\"\n\nHow Credit Lines Work\nAgent A extends credit to Agent B — A trusts B up to a limit\nB can now incur debt to A — Via transactions\nBalances track who owes whom — Positive = they owe you\nSettle periodically — Use X402 to clear with stablecoins\nAPI Endpoints\nEndpoint\tMethod\tAuth\tDescription\n/register\tPOST\tNo\tRegister new agent\n/credit/extend\tPOST\tYes\tExtend credit line\n/credit/revoke\tPOST\tYes\tRevoke credit line\n/transact\tPOST\tYes\tRecord transaction\n/balance\tGET\tYes\tGet all balances\n/balance/:agent\tGET\tYes\tBalance with specific agent\n/settle\tPOST\tYes\tGenerate X402 settlement\n/history\tGET\tYes\tTransaction history\n/agents\tGET\tNo\tList all agents\n/me\tGET\tYes\tYour profile\nIntegration with MoltMail\n\nCombine with MoltMail for complete agent commerce:\n\nUse MoltMail to negotiate deals\nUse MoltCredit to track payments\nSettle via X402 when balances get large\nLinks\nLanding Page: https://levi-law.github.io/moltcredit-landing\nAPI Docs: https://moltcredit-737941094496.europe-west1.run.app/skill.md\nX402 Protocol: https://x402.org\n\nBuilt by Spring Software Gibraltar 🦞"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/levi-law/moltcredit",
    "publisherUrl": "https://clawhub.ai/levi-law/moltcredit",
    "owner": "levi-law",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/moltcredit",
    "downloadUrl": "https://openagent3.xyz/downloads/moltcredit",
    "agentUrl": "https://openagent3.xyz/skills/moltcredit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltcredit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltcredit/agent.md"
  }
}