{
  "schemaVersion": "1.0",
  "item": {
    "slug": "task-father",
    "name": "Task Father",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/moodykong/task-father",
    "canonicalUrl": "https://clawhub.ai/moodykong/task-father",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/task-father",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-father",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "config.env",
      "scripts/task_father.py"
    ],
    "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/task-father"
    },
    "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/task-father",
    "agentPageUrl": "https://openagent3.xyz/skills/task-father/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-father/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-father/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": "task-father",
        "body": "Create and manage durable, file-based task state machines under the OpenClaw workspace.\n\nTarget filesystem shape:\n\nTASK_REGISTRY.md (global index)\ntasks/<task_slug>/\n\nTASK.md (front matter + purpose/decisions/blockers/changelog + capabilities)\nTODOS.md (checklist)\nscripts/\ncrons/\nartifacts/\noptional queue-state files (queue.jsonl, done.jsonl, failed.jsonl, lock.json)"
      },
      {
        "title": "Prerequisites",
        "body": "Run on host where OpenClaw is running:\n\npython3 --version\nopenclaw status\nopenclaw cron --help"
      },
      {
        "title": "Configuration (portable)",
        "body": "Skill-local config files:\n\nExample (shareable): config.env.example\nReal machine config: config.env\n\nKeys:\n\nWORKSPACE_DIR (default: /home/miles/.openclaw/workspace)\nTASKS_DIR (default: tasks)\nREGISTRY_FILE (default: TASK_REGISTRY.md)\nDEFAULT_AGENT_ID (default: main)\nDEFAULT_CRON_TZ (default: America/Indianapolis)"
      },
      {
        "title": "Preferred (chat-first)",
        "body": "Answer in chat:\n\ntask slug (filesystem-safe)\ntask title\ntask purpose\noptional skills/plugins/tools expected for this task\nwhether queue files are needed\nwhether a cron job should be created now\n\nThen run:\n\npython3 scripts/task_father.py init <slug> --title \"...\" --purpose \"...\" --skills \"a,b\" --plugins \"x,y\" --tools \"read,write,exec\"\noptional queue mode:\n\npython3 scripts/task_father.py enable-queue <slug>\n\n\noptional cron setup:\n\npython3 scripts/task_father.py cron-add <slug> --cron \"*/10 * * * *\" --message \"<worker prompt>\" --name \"task-<slug>\""
      },
      {
        "title": "Optional (terminal)",
        "body": "cp config.env.example config.env\nEdit config.env\nInitialize task:\n\npython3 scripts/task_father.py init <slug> --title \"...\""
      },
      {
        "title": "Lifecycle commands",
        "body": "Set task status (updates state.json + changelog):\n\npython3 scripts/task_father.py set-state <slug> active\n\n\nAppend changelog entry:\n\npython3 scripts/task_father.py log <slug> \"blocked by API quota\"\n\n\nEnable queue files:\n\npython3 scripts/task_father.py enable-queue <slug>\n\n\nAdd cron:\n\npython3 scripts/task_father.py cron-add <slug> --cron \"*/5 * * * *\" --message \"...\" --name \"task-<slug>\"\n\n\nRemove cron:\n\npython3 scripts/task_father.py cron-rm <slug> --name \"task-<slug>\""
      },
      {
        "title": "Task documentation contract",
        "body": "Each task must contain:\n\nTASK.md with front matter and sections:\n\nPurpose\nImportant Decisions\nBlockers\nCapabilities (skills/plugins/tools)\nChange Log (timestamp + short description)\n\nTODOS.md with checklist items.\n\n\nIf queue-style long processing is used:\n\nqueue.jsonl, done.jsonl, failed.jsonl, lock.json.\n\nScripts under:\n\n<task_folder>/scripts/\n\nCron files under:\n\n<task_folder>/crons/"
      },
      {
        "title": "Reproducibility notes",
        "body": "Keep machine-specific values in config.env, not in SKILL.md.\nKeep logs append-only where possible.\nUse small resumable batches for long work."
      }
    ],
    "body": "task-father\n\nCreate and manage durable, file-based task state machines under the OpenClaw workspace.\n\nTarget filesystem shape:\n\nTASK_REGISTRY.md (global index)\ntasks/<task_slug>/\nTASK.md (front matter + purpose/decisions/blockers/changelog + capabilities)\nTODOS.md (checklist)\nscripts/\ncrons/\nartifacts/\noptional queue-state files (queue.jsonl, done.jsonl, failed.jsonl, lock.json)\nPrerequisites\n\nRun on host where OpenClaw is running:\n\npython3 --version\nopenclaw status\nopenclaw cron --help\nConfiguration (portable)\n\nSkill-local config files:\n\nExample (shareable): config.env.example\nReal machine config: config.env\n\nKeys:\n\nWORKSPACE_DIR (default: /home/miles/.openclaw/workspace)\nTASKS_DIR (default: tasks)\nREGISTRY_FILE (default: TASK_REGISTRY.md)\nDEFAULT_AGENT_ID (default: main)\nDEFAULT_CRON_TZ (default: America/Indianapolis)\nInitialization / Installation / Onboarding\nPreferred (chat-first)\n\nAnswer in chat:\n\ntask slug (filesystem-safe)\ntask title\ntask purpose\noptional skills/plugins/tools expected for this task\nwhether queue files are needed\nwhether a cron job should be created now\n\nThen run:\n\npython3 scripts/task_father.py init <slug> --title \"...\" --purpose \"...\" --skills \"a,b\" --plugins \"x,y\" --tools \"read,write,exec\"\noptional queue mode:\npython3 scripts/task_father.py enable-queue <slug>\noptional cron setup:\npython3 scripts/task_father.py cron-add <slug> --cron \"*/10 * * * *\" --message \"<worker prompt>\" --name \"task-<slug>\"\nOptional (terminal)\ncp config.env.example config.env\nEdit config.env\nInitialize task:\npython3 scripts/task_father.py init <slug> --title \"...\"\nLifecycle commands\nSet task status (updates state.json + changelog):\npython3 scripts/task_father.py set-state <slug> active\nAppend changelog entry:\npython3 scripts/task_father.py log <slug> \"blocked by API quota\"\nEnable queue files:\npython3 scripts/task_father.py enable-queue <slug>\nAdd cron:\npython3 scripts/task_father.py cron-add <slug> --cron \"*/5 * * * *\" --message \"...\" --name \"task-<slug>\"\nRemove cron:\npython3 scripts/task_father.py cron-rm <slug> --name \"task-<slug>\"\nTask documentation contract\n\nEach task must contain:\n\nTASK.md with front matter and sections:\nPurpose\nImportant Decisions\nBlockers\nCapabilities (skills/plugins/tools)\nChange Log (timestamp + short description)\n\nTODOS.md with checklist items.\n\nIf queue-style long processing is used:\n\nqueue.jsonl, done.jsonl, failed.jsonl, lock.json.\nScripts under:\n<task_folder>/scripts/\nCron files under:\n<task_folder>/crons/\nReproducibility notes\nKeep machine-specific values in config.env, not in SKILL.md.\nKeep logs append-only where possible.\nUse small resumable batches for long work."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/moodykong/task-father",
    "publisherUrl": "https://clawhub.ai/moodykong/task-father",
    "owner": "moodykong",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/task-father",
    "downloadUrl": "https://openagent3.xyz/downloads/task-father",
    "agentUrl": "https://openagent3.xyz/skills/task-father/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-father/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-father/agent.md"
  }
}