{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dex",
    "name": "Dex Task Tracking",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/gricha/dex",
    "canonicalUrl": "https://clawhub.ai/gricha/dex",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex",
    "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",
      "slug": "dex",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T13:05:15.003Z",
      "expiresAt": "2026-05-09T13:05:15.003Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex",
        "contentDisposition": "attachment; filename=\"dex-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dex"
      },
      "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/dex"
    },
    "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/dex",
    "agentPageUrl": "https://openagent3.xyz/skills/dex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dex/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": "Dex Task Tracking",
        "body": "Track async work: coding agent dispatches, multi-step projects, anything needing follow-up."
      },
      {
        "title": "Commands",
        "body": "dex create -d \"Description\" --context \"Background, goal, done-when\"\ndex list                    # Pending tasks\ndex list --all              # Include completed\ndex show <id>               # View task\ndex show <id> --full        # Full context\ndex complete <id> --result \"What was done, decisions, follow-ups\"\ndex edit <id> --context \"Updated context\"\ndex delete <id>"
      },
      {
        "title": "Task Structure",
        "body": "Description: One-line summary\nContext: Background, requirements, done criteria\nResult: What was built, decisions, follow-ups"
      },
      {
        "title": "Example",
        "body": "# Before dispatching agent\ndex create -d \"Add caching to API\" --context \"Workspace: feat1 (100.x.x.x)\nBranch: feat/cache\nDone when: PR merged, CI green\"\n\n# After work complete\ndex complete abc123 --result \"Merged PR #50. Redis caching with 5min TTL.\""
      },
      {
        "title": "Storage",
        "body": ".dex/tasks/{id}.json — one file per task, git-friendly."
      }
    ],
    "body": "Dex Task Tracking\n\nTrack async work: coding agent dispatches, multi-step projects, anything needing follow-up.\n\nCommands\ndex create -d \"Description\" --context \"Background, goal, done-when\"\ndex list                    # Pending tasks\ndex list --all              # Include completed\ndex show <id>               # View task\ndex show <id> --full        # Full context\ndex complete <id> --result \"What was done, decisions, follow-ups\"\ndex edit <id> --context \"Updated context\"\ndex delete <id>\n\nTask Structure\nDescription: One-line summary\nContext: Background, requirements, done criteria\nResult: What was built, decisions, follow-ups\nExample\n# Before dispatching agent\ndex create -d \"Add caching to API\" --context \"Workspace: feat1 (100.x.x.x)\nBranch: feat/cache\nDone when: PR merged, CI green\"\n\n# After work complete\ndex complete abc123 --result \"Merged PR #50. Redis caching with 5min TTL.\"\n\nStorage\n\n.dex/tasks/{id}.json — one file per task, git-friendly."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gricha/dex",
    "publisherUrl": "https://clawhub.ai/gricha/dex",
    "owner": "gricha",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dex",
    "downloadUrl": "https://openagent3.xyz/downloads/dex",
    "agentUrl": "https://openagent3.xyz/skills/dex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dex/agent.md"
  }
}