{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hackmd",
    "name": "HackMD",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/nulltea/hackmd",
    "canonicalUrl": "https://clawhub.ai/nulltea/hackmd",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hackmd",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hackmd",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "_meta.json",
      "SKILL.md",
      "scripts/hackmd-track.js"
    ],
    "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/hackmd"
    },
    "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/hackmd",
    "agentPageUrl": "https://openagent3.xyz/skills/hackmd/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hackmd/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hackmd/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": "Requirements",
        "body": "npm install -g @hackmd/hackmd-cli"
      },
      {
        "title": "Read Notes",
        "body": "# List all personal notes\nhackmd-cli notes\n\n# Get note metadata (includes lastChangedAt)\nhackmd-cli notes --noteId=<id> --output json\n\n# Get note content (markdown)\nhackmd-cli export --noteId=<id>\n\n# List teams\nhackmd-cli teams\n\n# List team notes\nhackmd-cli team-notes --teamPath=<path>"
      },
      {
        "title": "Write Notes",
        "body": "# Create note\nhackmd-cli notes create --content='# Title'\n\n# Create from file\ncat file.md | hackmd-cli notes create\n\n# Update note\nhackmd-cli notes update --noteId=<id> --content='# Updated'\n\n# Delete note\nhackmd-cli notes delete --noteId=<id>"
      },
      {
        "title": "Team Notes",
        "body": "hackmd-cli team-notes create --teamPath=<path> --content='# Team Note'\nhackmd-cli team-notes update --teamPath=<path> --noteId=<id> --content='...'\nhackmd-cli team-notes delete --teamPath=<path> --noteId=<id>"
      },
      {
        "title": "Change Tracking",
        "body": "Use hackmd-track.js (in scripts/) to detect document changes efficiently."
      },
      {
        "title": "Track a Note",
        "body": "node scripts/hackmd-track.js add <noteId>"
      },
      {
        "title": "Check for Changes",
        "body": "# Single note - outputs content only if changed\nnode scripts/hackmd-track.js changes <noteId>\n\n# All tracked notes\nnode scripts/hackmd-track.js changes --all\n\n# JSON output for parsing\nnode scripts/hackmd-track.js changes <noteId> --json"
      },
      {
        "title": "Manage Tracking",
        "body": "node scripts/hackmd-track.js list              # Show tracked notes\nnode scripts/hackmd-track.js remove <noteId>   # Stop tracking\nnode scripts/hackmd-track.js reset <noteId>    # Reset (next check shows as changed)"
      },
      {
        "title": "How It Works",
        "body": "hackmd-track.js add stores note's lastChangedAt timestamp\nhackmd-track.js changes compares current lastChangedAt with stored value\nIf changed: outputs content and updates stored timestamp\nIf unchanged: outputs nothing (use --verbose for status)\n\nState stored in ./.hackmd/tracked-notes.json (current working directory)"
      },
      {
        "title": "Note Metadata Fields",
        "body": "When using --output json, notes include:\n\nFieldDescriptionlastChangedAtUnix timestamp of last modificationlastChangeUser{name, userPath, photo} of last editortitleUpdatedAtWhen title changedtagsUpdatedAtWhen tags changed"
      },
      {
        "title": "Rate Limits",
        "body": "100 calls per 5 minutes\n2000 calls/month (10k on Prime plan)"
      }
    ],
    "body": "HackMD Integration\nRequirements\nnpm install -g @hackmd/hackmd-cli\n\nQuick Reference\nRead Notes\n# List all personal notes\nhackmd-cli notes\n\n# Get note metadata (includes lastChangedAt)\nhackmd-cli notes --noteId=<id> --output json\n\n# Get note content (markdown)\nhackmd-cli export --noteId=<id>\n\n# List teams\nhackmd-cli teams\n\n# List team notes\nhackmd-cli team-notes --teamPath=<path>\n\nWrite Notes\n# Create note\nhackmd-cli notes create --content='# Title'\n\n# Create from file\ncat file.md | hackmd-cli notes create\n\n# Update note\nhackmd-cli notes update --noteId=<id> --content='# Updated'\n\n# Delete note\nhackmd-cli notes delete --noteId=<id>\n\nTeam Notes\nhackmd-cli team-notes create --teamPath=<path> --content='# Team Note'\nhackmd-cli team-notes update --teamPath=<path> --noteId=<id> --content='...'\nhackmd-cli team-notes delete --teamPath=<path> --noteId=<id>\n\nChange Tracking\n\nUse hackmd-track.js (in scripts/) to detect document changes efficiently.\n\nTrack a Note\nnode scripts/hackmd-track.js add <noteId>\n\nCheck for Changes\n# Single note - outputs content only if changed\nnode scripts/hackmd-track.js changes <noteId>\n\n# All tracked notes\nnode scripts/hackmd-track.js changes --all\n\n# JSON output for parsing\nnode scripts/hackmd-track.js changes <noteId> --json\n\nManage Tracking\nnode scripts/hackmd-track.js list              # Show tracked notes\nnode scripts/hackmd-track.js remove <noteId>   # Stop tracking\nnode scripts/hackmd-track.js reset <noteId>    # Reset (next check shows as changed)\n\nHow It Works\nhackmd-track.js add stores note's lastChangedAt timestamp\nhackmd-track.js changes compares current lastChangedAt with stored value\nIf changed: outputs content and updates stored timestamp\nIf unchanged: outputs nothing (use --verbose for status)\n\nState stored in ./.hackmd/tracked-notes.json (current working directory)\n\nNote Metadata Fields\n\nWhen using --output json, notes include:\n\nField\tDescription\nlastChangedAt\tUnix timestamp of last modification\nlastChangeUser\t{name, userPath, photo} of last editor\ntitleUpdatedAt\tWhen title changed\ntagsUpdatedAt\tWhen tags changed\nRate Limits\n100 calls per 5 minutes\n2000 calls/month (10k on Prime plan)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nulltea/hackmd",
    "publisherUrl": "https://clawhub.ai/nulltea/hackmd",
    "owner": "nulltea",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hackmd",
    "downloadUrl": "https://openagent3.xyz/downloads/hackmd",
    "agentUrl": "https://openagent3.xyz/skills/hackmd/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hackmd/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hackmd/agent.md"
  }
}