{
  "schemaVersion": "1.0",
  "item": {
    "slug": "frappecli",
    "name": "Frappecli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pasogott/frappecli",
    "canonicalUrl": "https://clawhub.ai/pasogott/frappecli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/frappecli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=frappecli",
    "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/frappecli"
    },
    "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/frappecli",
    "agentPageUrl": "https://openagent3.xyz/skills/frappecli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/frappecli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/frappecli/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": "frappecli",
        "body": "CLI for managing Frappe Framework instances via REST API."
      },
      {
        "title": "Installation",
        "body": "brew tap pasogott/tap\nbrew install frappecli\n\nOr from source:\n\ngit clone https://github.com/pasogott/frappecli.git\ncd frappecli && uv sync && uv pip install -e ."
      },
      {
        "title": "Configuration",
        "body": "Create ~/.config/frappecli/config.yaml:\n\nsites:\n  production:\n    url: https://erp.company.com\n    api_key: your_api_key\n    api_secret: your_api_secret\n  staging:\n    url: https://staging.company.com\n    api_key: your_staging_key\n    api_secret: your_staging_secret\n\ndefault_site: production"
      },
      {
        "title": "Site Management",
        "body": "frappecli site doctypes                    # List all doctypes\nfrappecli site doctypes --module \"Core\"    # Filter by module\nfrappecli site info \"User\"                 # Get doctype details"
      },
      {
        "title": "Document CRUD",
        "body": "# List documents\nfrappecli doc list Customer\nfrappecli doc list Customer --filters '{\"status\":\"Active\"}' --limit 10\n\n# Get single document\nfrappecli doc get Customer CUST-001\nfrappecli doc get Customer CUST-001 --fields name,customer_name,status\n\n# Create document\nfrappecli doc create Customer --data '{\"customer_name\":\"Acme\",\"customer_type\":\"Company\"}'\n\n# Update document\nfrappecli doc update Customer CUST-001 --data '{\"status\":\"Inactive\"}'\n\n# Delete document\nfrappecli doc delete Customer CUST-001"
      },
      {
        "title": "File Management",
        "body": "# Upload file (private by default)\nfrappecli file upload invoice.pdf --doctype \"Sales Invoice\" --docname \"INV-001\"\n\n# Upload public file\nfrappecli file upload logo.png --public\n\n# Download file\nfrappecli file download /private/files/invoice.pdf -o ./downloads/\n\n# List files for document\nfrappecli file list --doctype \"Sales Invoice\" --docname \"INV-001\""
      },
      {
        "title": "Reports",
        "body": "# Run report (JSON output)\nfrappecli report run \"General Ledger\" --filters '{\"company\":\"My Company\"}'\n\n# Export to CSV\nfrappecli report run \"Accounts Receivable\" --format csv -o report.csv"
      },
      {
        "title": "RPC Methods",
        "body": "# Call custom method\nfrappecli rpc frappe.ping\n\n# With arguments\nfrappecli rpc myapp.api.process_data --args '{\"doc_id\":\"DOC-001\"}'"
      },
      {
        "title": "Multi-Site",
        "body": "# Use specific site\nfrappecli --site staging doc list Customer\n\n# Switch default site\nfrappecli config set default_site staging"
      },
      {
        "title": "Output Formats",
        "body": "frappecli doc list Customer --format table   # Pretty table (default)\nfrappecli doc list Customer --format json    # JSON\nfrappecli doc list Customer --format csv     # CSV"
      },
      {
        "title": "Bulk Operations",
        "body": "# Export all active customers\nfrappecli doc list Customer --filters '{\"status\":\"Active\"}' --format csv > customers.csv\n\n# Get document with child tables\nfrappecli doc get \"Sales Invoice\" INV-001 --fields '*'"
      },
      {
        "title": "Integration with jq",
        "body": "# Get customer names only\nfrappecli doc list Customer --format json | jq -r '.[].customer_name'\n\n# Count by status\nfrappecli doc list Customer --format json | jq 'group_by(.status) | map({status: .[0].status, count: length})'"
      },
      {
        "title": "Links",
        "body": "Repository: https://github.com/pasogott/frappecli\nHomebrew: brew install pasogott/tap/frappecli"
      }
    ],
    "body": "frappecli\n\nCLI for managing Frappe Framework instances via REST API.\n\nInstallation\nbrew tap pasogott/tap\nbrew install frappecli\n\n\nOr from source:\n\ngit clone https://github.com/pasogott/frappecli.git\ncd frappecli && uv sync && uv pip install -e .\n\nConfiguration\n\nCreate ~/.config/frappecli/config.yaml:\n\nsites:\n  production:\n    url: https://erp.company.com\n    api_key: your_api_key\n    api_secret: your_api_secret\n  staging:\n    url: https://staging.company.com\n    api_key: your_staging_key\n    api_secret: your_staging_secret\n\ndefault_site: production\n\nCommands\nSite Management\nfrappecli site doctypes                    # List all doctypes\nfrappecli site doctypes --module \"Core\"    # Filter by module\nfrappecli site info \"User\"                 # Get doctype details\n\nDocument CRUD\n# List documents\nfrappecli doc list Customer\nfrappecli doc list Customer --filters '{\"status\":\"Active\"}' --limit 10\n\n# Get single document\nfrappecli doc get Customer CUST-001\nfrappecli doc get Customer CUST-001 --fields name,customer_name,status\n\n# Create document\nfrappecli doc create Customer --data '{\"customer_name\":\"Acme\",\"customer_type\":\"Company\"}'\n\n# Update document\nfrappecli doc update Customer CUST-001 --data '{\"status\":\"Inactive\"}'\n\n# Delete document\nfrappecli doc delete Customer CUST-001\n\nFile Management\n# Upload file (private by default)\nfrappecli file upload invoice.pdf --doctype \"Sales Invoice\" --docname \"INV-001\"\n\n# Upload public file\nfrappecli file upload logo.png --public\n\n# Download file\nfrappecli file download /private/files/invoice.pdf -o ./downloads/\n\n# List files for document\nfrappecli file list --doctype \"Sales Invoice\" --docname \"INV-001\"\n\nReports\n# Run report (JSON output)\nfrappecli report run \"General Ledger\" --filters '{\"company\":\"My Company\"}'\n\n# Export to CSV\nfrappecli report run \"Accounts Receivable\" --format csv -o report.csv\n\nRPC Methods\n# Call custom method\nfrappecli rpc frappe.ping\n\n# With arguments\nfrappecli rpc myapp.api.process_data --args '{\"doc_id\":\"DOC-001\"}'\n\nMulti-Site\n# Use specific site\nfrappecli --site staging doc list Customer\n\n# Switch default site\nfrappecli config set default_site staging\n\nOutput Formats\nfrappecli doc list Customer --format table   # Pretty table (default)\nfrappecli doc list Customer --format json    # JSON\nfrappecli doc list Customer --format csv     # CSV\n\nExamples\nBulk Operations\n# Export all active customers\nfrappecli doc list Customer --filters '{\"status\":\"Active\"}' --format csv > customers.csv\n\n# Get document with child tables\nfrappecli doc get \"Sales Invoice\" INV-001 --fields '*'\n\nIntegration with jq\n# Get customer names only\nfrappecli doc list Customer --format json | jq -r '.[].customer_name'\n\n# Count by status\nfrappecli doc list Customer --format json | jq 'group_by(.status) | map({status: .[0].status, count: length})'\n\nLinks\nRepository: https://github.com/pasogott/frappecli\nHomebrew: brew install pasogott/tap/frappecli"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pasogott/frappecli",
    "publisherUrl": "https://clawhub.ai/pasogott/frappecli",
    "owner": "pasogott",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/frappecli",
    "downloadUrl": "https://openagent3.xyz/downloads/frappecli",
    "agentUrl": "https://openagent3.xyz/skills/frappecli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/frappecli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/frappecli/agent.md"
  }
}