{
  "schemaVersion": "1.0",
  "item": {
    "slug": "inkjet",
    "name": "InkJet - Bluetooth Thermal Printer",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/AaronChartier/inkjet",
    "canonicalUrl": "https://clawhub.ai/AaronChartier/inkjet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/inkjet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=inkjet",
    "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-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/inkjet"
    },
    "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/inkjet",
    "agentPageUrl": "https://openagent3.xyz/skills/inkjet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/inkjet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/inkjet/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": "Thermal Printer Skill",
        "body": "Print text, images, and QR codes to a small cheap Bluetooth thermal printer like the X6h, GT01, and childrens toy cat printers using the inkjet CLI. Thermal paper is extremely low-cost, enabling high-frequency physical output."
      },
      {
        "title": "Setup",
        "body": "Preparation: Ensure your printer is turned ON. The printer does NOT need to be paired to the host computer's Bluetooth settings; inkjet connects directly via BLE.\n\nScan for printers and set default:\n\ninkjet scan\n\nCheck current configuration:\n\ninkjet whoami"
      },
      {
        "title": "Print Text",
        "body": "Print strings directly. Supports standard escape sequences like \\n for multiline output. Do not use emojis.\n\ninkjet print text \"Hello, World!\"\ninkjet print text \"Line 1\\nLine 2\\nLine 3\"\ninkjet print text \"Big Text\" --size 72"
      },
      {
        "title": "Print Markdown",
        "body": "Render high-fidelity formatted content using Markdown syntax. This is the recommended way for agents to output complex receipts or logs without saving temporary files. Do not use emojis.\n\ninkjet print text \"# Order 104\\n- 1x Coffee\\n- 1x Donut\" --markdown"
      },
      {
        "title": "Print Files",
        "body": "Output the contents of a local file. Supports plain text (.txt) and Markdown (.md).\n\ninkjet print file ./receipt.txt\ninkjet print file ./README.md"
      },
      {
        "title": "Print Images",
        "body": "inkjet print image ./photo.png\ninkjet print image ./logo.jpg --dither"
      },
      {
        "title": "Print QR Codes",
        "body": "Generates and prints QR codes. Smartphone scanners (iPhone/Android) can reliably read codes down to --size 75.\n\ninkjet print qr \"https://pypi.org/project/inkjet\"\ninkjet print qr \"WiFi:S:NetworkName;P:example123;;\" --size 75"
      },
      {
        "title": "Paper Control",
        "body": "inkjet feed 100      # Feed paper forward (steps)"
      },
      {
        "title": "Configuration",
        "body": "Manage settings globally or locally per project. If a .inkjet/ folder exists in the current workspace, it will be prioritized (config setting with --local to create).\n\ninkjet config show                    # Show all settings\ninkjet config set printer <UUID>      # Set the default device\ninkjet config set energy 12000        # Set local project darkness\ninkjet config alias kitchen <UUID>    # Save a friendly name"
      },
      {
        "title": "Default Config Schema",
        "body": "{\n  \"default_printer\": \"UUID\",\n  \"printers\": { \"alias\": \"UUID\" },\n  \"energy\": 12000,\n  \"print_speed\": 10,\n  \"quality\": 3,\n  \"padding_left\": 0,\n  \"padding_top\": 10,\n  \"line_spacing\": 8,\n  \"align\": \"left\",\n  \"font_size\": 18\n}"
      },
      {
        "title": "Multi-Printer Orchestration",
        "body": "If the environment (e.g., TOOLS.md) contains multiple printer UUIDs or aliases, target specific hardware using the --address / -a flag. Use -a default to explicitly target the primary configured device."
      },
      {
        "title": "Orchestration Strategies:",
        "body": "Role-Based Routing: Route content based on hardware role (e.g., Stickers vs Receipts).\ninkjet print text \"Label\" -a stickers\nHigh-Throughput (Load Balancing): Distribute jobs across a farm of printers (Round-Robin) to maximize prints-per-minute.\n\n# Orchestrated Print Examples\ninkjet print text \"Main Status\" -a office\ninkjet print text \"Order #104\" -a kitchen\ninkjet print qr \"https://pypi.org/project/inkjet\" -a default\ninkjet print file ./log.txt -a \"UUID_EXT_1\""
      },
      {
        "title": "JSON Output (for scripting)",
        "body": "Commands support --json for machine-readable output:\n\ninkjet scan --json\ninkjet whoami --json"
      },
      {
        "title": "Best Practices for Worksheets & Handwriting",
        "body": "Thermal paper is narrow and low-cost. To make usable worksheets for children or manual notes:\n\nSize for Visibility: Use ## (H2 headers) for the main content. Standard text is often too small for children to read/write comfortably.\nManual Numbering: Avoid Markdown lists (1. content). They auto-indent and reduce horizontal space. Use ## 1) 5 + 2 = ___ instead.\nThe \"Cheap Paper\" Rule: Use triple newlines (\\n\\n\\n) between items. Thermal paper is essentially free; use vertical space to provide actual \"writing room.\"\nHorizontal Rules: Use --- at the end of a job to provide a clear tear-off line that doesn't cut off the last problem."
      },
      {
        "title": "Troubleshooting",
        "body": "If printer not found:\n\ninkjet doctor"
      }
    ],
    "body": "Thermal Printer Skill\n\nPrint text, images, and QR codes to a small cheap Bluetooth thermal printer like the X6h, GT01, and childrens toy cat printers using the inkjet CLI. Thermal paper is extremely low-cost, enabling high-frequency physical output.\n\nSetup\n\nPreparation: Ensure your printer is turned ON. The printer does NOT need to be paired to the host computer's Bluetooth settings; inkjet connects directly via BLE.\n\nScan for printers and set default:\n\ninkjet scan\n\n\nCheck current configuration:\n\ninkjet whoami\n\nPrint Text\n\nPrint strings directly. Supports standard escape sequences like \\n for multiline output. Do not use emojis.\n\ninkjet print text \"Hello, World!\"\ninkjet print text \"Line 1\\nLine 2\\nLine 3\"\ninkjet print text \"Big Text\" --size 72\n\nPrint Markdown\n\nRender high-fidelity formatted content using Markdown syntax. This is the recommended way for agents to output complex receipts or logs without saving temporary files. Do not use emojis.\n\ninkjet print text \"# Order 104\\n- 1x Coffee\\n- 1x Donut\" --markdown\n\nPrint Files\n\nOutput the contents of a local file. Supports plain text (.txt) and Markdown (.md).\n\ninkjet print file ./receipt.txt\ninkjet print file ./README.md\n\nPrint Images\ninkjet print image ./photo.png\ninkjet print image ./logo.jpg --dither\n\nPrint QR Codes\n\nGenerates and prints QR codes. Smartphone scanners (iPhone/Android) can reliably read codes down to --size 75.\n\ninkjet print qr \"https://pypi.org/project/inkjet\"\ninkjet print qr \"WiFi:S:NetworkName;P:example123;;\" --size 75\n\nPaper Control\ninkjet feed 100      # Feed paper forward (steps)\n\nConfiguration\n\nManage settings globally or locally per project. If a .inkjet/ folder exists in the current workspace, it will be prioritized (config setting with --local to create).\n\ninkjet config show                    # Show all settings\ninkjet config set printer <UUID>      # Set the default device\ninkjet config set energy 12000        # Set local project darkness\ninkjet config alias kitchen <UUID>    # Save a friendly name\n\nDefault Config Schema\n{\n  \"default_printer\": \"UUID\",\n  \"printers\": { \"alias\": \"UUID\" },\n  \"energy\": 12000,\n  \"print_speed\": 10,\n  \"quality\": 3,\n  \"padding_left\": 0,\n  \"padding_top\": 10,\n  \"line_spacing\": 8,\n  \"align\": \"left\",\n  \"font_size\": 18\n}\n\nMulti-Printer Orchestration\n\nIf the environment (e.g., TOOLS.md) contains multiple printer UUIDs or aliases, target specific hardware using the --address / -a flag. Use -a default to explicitly target the primary configured device.\n\nOrchestration Strategies:\nRole-Based Routing: Route content based on hardware role (e.g., Stickers vs Receipts). inkjet print text \"Label\" -a stickers\nHigh-Throughput (Load Balancing): Distribute jobs across a farm of printers (Round-Robin) to maximize prints-per-minute.\n# Orchestrated Print Examples\ninkjet print text \"Main Status\" -a office\ninkjet print text \"Order #104\" -a kitchen\ninkjet print qr \"https://pypi.org/project/inkjet\" -a default\ninkjet print file ./log.txt -a \"UUID_EXT_1\"\n\nJSON Output (for scripting)\n\nCommands support --json for machine-readable output:\n\ninkjet scan --json\ninkjet whoami --json\n\nBest Practices for Worksheets & Handwriting\n\nThermal paper is narrow and low-cost. To make usable worksheets for children or manual notes:\n\nSize for Visibility: Use ## (H2 headers) for the main content. Standard text is often too small for children to read/write comfortably.\nManual Numbering: Avoid Markdown lists (1. content). They auto-indent and reduce horizontal space. Use ## 1) 5 + 2 = ___ instead.\nThe \"Cheap Paper\" Rule: Use triple newlines (\\n\\n\\n) between items. Thermal paper is essentially free; use vertical space to provide actual \"writing room.\"\nHorizontal Rules: Use --- at the end of a job to provide a clear tear-off line that doesn't cut off the last problem.\nTroubleshooting\n\nIf printer not found:\n\ninkjet doctor"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/AaronChartier/inkjet",
    "publisherUrl": "https://clawhub.ai/AaronChartier/inkjet",
    "owner": "AaronChartier",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/inkjet",
    "downloadUrl": "https://openagent3.xyz/downloads/inkjet",
    "agentUrl": "https://openagent3.xyz/skills/inkjet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/inkjet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/inkjet/agent.md"
  }
}