{
  "schemaVersion": "1.0",
  "item": {
    "slug": "init-manager",
    "name": "Init Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tomislavpet/init-manager",
    "canonicalUrl": "https://clawhub.ai/tomislavpet/init-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/init-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=init-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "version.txt"
    ],
    "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/init-manager"
    },
    "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/init-manager",
    "agentPageUrl": "https://openagent3.xyz/skills/init-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/init-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/init-manager/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": "Init Manager Skill",
        "body": "This skill enables AI agents to work with Init Manager as a project management backend — picking up tasks, doing work, and closing them out."
      },
      {
        "title": "Setup",
        "body": "Your workspace needs these in TOOLS.md or environment:\n\nInit Manager URL (e.g. https://manager.init.hr)\nAPI Key (Bearer token, starts with initm_)\nYour User ID (UUID)"
      },
      {
        "title": "AI Guides (Instruction Hierarchy)",
        "body": "There are three levels of AI instructions. Always follow them. More specific wins on conflict:\n\nGlobal AI Guide — GET /api/settings?key=ai_global_guide\nPer-User AI Guide — GET /api/users/<your-user-id> → aiGuide field\nProject AI Guide — GET /api/projects/<project-id> → aiGuide field\n\nOn first boot and periodically: fetch all three and follow the combined instructions."
      },
      {
        "title": "Task Workflow",
        "body": "Pick up tasks in ready status assigned to you\nMove to in_progress before starting work\nRead full description + all comments + project AI guide before writing code\nIf unsure — comment asking for clarification, keep in ready, assign to a human\nWhen done — move to done, add comment with commit/PR link + summary\nIf blocked — comment with details, assign to a human"
      },
      {
        "title": "Authentication",
        "body": "All requests need:\n\nAuthorization: Bearer initm_<your-key>"
      },
      {
        "title": "Key Endpoints",
        "body": "ActionMethodEndpointList projectsGET/api/projectsProject boardGET/api/projects/<id>/boardProject detailsGET/api/projects/<id>List tasksGET/api/tasks?assignee=me&status=readyGet taskGET/api/tasks/<id>Update taskPATCH/api/tasks/<id>Move taskPOST/api/tasks/<id>/moveCreate taskPOST/api/tasksAdd commentPOST/api/tasks/<id>/commentsAssign userPOST/api/tasks/<id>/assignComplete assignmentPOST/api/tasks/<id>/completeActivity logGET/api/activityGlobal AI guideGET/api/settings?key=ai_global_guide"
      },
      {
        "title": "Create a Task",
        "body": "POST /api/tasks\n{\n  \"projectId\": \"<uuid>\",\n  \"title\": \"Task title\",\n  \"type\": \"task\",           // epic | task | bug\n  \"status\": \"backlog\",      // backlog | ready | in_progress | done | verified\n  \"priority\": \"medium\",     // low | medium | high | urgent\n  \"description\": \"...\",     // plain text or Tiptap JSON\n  \"parentId\": \"<uuid>\",     // optional, makes subtask\n  \"dueDate\": \"2026-03-01T00:00:00.000Z\"\n}"
      },
      {
        "title": "Update a Task",
        "body": "PATCH /api/tasks/<id>\n{\n  \"status\": \"in_progress\",\n  \"title\": \"New title\",\n  \"priority\": \"high\"\n}\n\nAll fields optional — only include what changes."
      },
      {
        "title": "Add a Comment",
        "body": "POST /api/tasks/<id>/comments\n{\n  \"body\": \"Your comment text\"\n}\n\n⚠️ Use body field, not content."
      },
      {
        "title": "Assign a User",
        "body": "POST /api/tasks/<id>/assign\n{ \"userId\": \"<uuid>\" }"
      },
      {
        "title": "Labels",
        "body": "GET    /api/labels?projectId=<uuid>\nPOST   /api/labels                        { \"name\": \"Bug\", \"color\": \"#ef4444\", \"projectId\": \"<uuid>\" }\nPOST   /api/tasks/<id>/labels             { \"labelId\": \"<uuid>\" }\nDELETE /api/tasks/<id>/labels             { \"labelId\": \"<uuid>\" }"
      },
      {
        "title": "Behavior Notes",
        "body": "Assignments auto-complete when task moves to done or verified\nMoving task back to ready/backlog clears notification flags and assignment completion\nComments created via API are flagged viaApi: true\nTask keys (e.g. IMG-32) are auto-generated from project prefix"
      },
      {
        "title": "Error Responses",
        "body": "{ \"error\": \"Description\" }\n\nStatusMeaning400Bad request / validation401Invalid or missing API key403Not allowed for your role404Resource not found409Conflict500Server error"
      },
      {
        "title": "Common Workflow: Check for Tasks",
        "body": "# Get all projects\ncurl -H \"Authorization: Bearer $KEY\" $URL/api/projects\n\n# Check each project board for ready tasks assigned to you\ncurl -H \"Authorization: Bearer $KEY\" $URL/api/projects/$PID/board\n\n# Pick up a task\ncurl -X PATCH -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"status\":\"in_progress\"}' $URL/api/tasks/$TID\n\n# ... do the work ...\n\n# Close it out\ncurl -X PATCH -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"status\":\"done\"}' $URL/api/tasks/$TID\n\ncurl -X POST -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"body\":\"Done. Commit: https://...\"}' $URL/api/tasks/$TID/comments"
      }
    ],
    "body": "Init Manager Skill\n\nThis skill enables AI agents to work with Init Manager as a project management backend — picking up tasks, doing work, and closing them out.\n\nSetup\n\nYour workspace needs these in TOOLS.md or environment:\n\nInit Manager URL (e.g. https://manager.init.hr)\nAPI Key (Bearer token, starts with initm_)\nYour User ID (UUID)\nAI Guides (Instruction Hierarchy)\n\nThere are three levels of AI instructions. Always follow them. More specific wins on conflict:\n\nGlobal AI Guide — GET /api/settings?key=ai_global_guide\nPer-User AI Guide — GET /api/users/<your-user-id> → aiGuide field\nProject AI Guide — GET /api/projects/<project-id> → aiGuide field\n\nOn first boot and periodically: fetch all three and follow the combined instructions.\n\nTask Workflow\nPick up tasks in ready status assigned to you\nMove to in_progress before starting work\nRead full description + all comments + project AI guide before writing code\nIf unsure — comment asking for clarification, keep in ready, assign to a human\nWhen done — move to done, add comment with commit/PR link + summary\nIf blocked — comment with details, assign to a human\nAPI Reference\nAuthentication\n\nAll requests need:\n\nAuthorization: Bearer initm_<your-key>\n\nKey Endpoints\nAction\tMethod\tEndpoint\nList projects\tGET\t/api/projects\nProject board\tGET\t/api/projects/<id>/board\nProject details\tGET\t/api/projects/<id>\nList tasks\tGET\t/api/tasks?assignee=me&status=ready\nGet task\tGET\t/api/tasks/<id>\nUpdate task\tPATCH\t/api/tasks/<id>\nMove task\tPOST\t/api/tasks/<id>/move\nCreate task\tPOST\t/api/tasks\nAdd comment\tPOST\t/api/tasks/<id>/comments\nAssign user\tPOST\t/api/tasks/<id>/assign\nComplete assignment\tPOST\t/api/tasks/<id>/complete\nActivity log\tGET\t/api/activity\nGlobal AI guide\tGET\t/api/settings?key=ai_global_guide\nCreate a Task\nPOST /api/tasks\n{\n  \"projectId\": \"<uuid>\",\n  \"title\": \"Task title\",\n  \"type\": \"task\",           // epic | task | bug\n  \"status\": \"backlog\",      // backlog | ready | in_progress | done | verified\n  \"priority\": \"medium\",     // low | medium | high | urgent\n  \"description\": \"...\",     // plain text or Tiptap JSON\n  \"parentId\": \"<uuid>\",     // optional, makes subtask\n  \"dueDate\": \"2026-03-01T00:00:00.000Z\"\n}\n\nUpdate a Task\nPATCH /api/tasks/<id>\n{\n  \"status\": \"in_progress\",\n  \"title\": \"New title\",\n  \"priority\": \"high\"\n}\n\n\nAll fields optional — only include what changes.\n\nAdd a Comment\nPOST /api/tasks/<id>/comments\n{\n  \"body\": \"Your comment text\"\n}\n\n\n⚠️ Use body field, not content.\n\nAssign a User\nPOST /api/tasks/<id>/assign\n{ \"userId\": \"<uuid>\" }\n\nLabels\nGET    /api/labels?projectId=<uuid>\nPOST   /api/labels                        { \"name\": \"Bug\", \"color\": \"#ef4444\", \"projectId\": \"<uuid>\" }\nPOST   /api/tasks/<id>/labels             { \"labelId\": \"<uuid>\" }\nDELETE /api/tasks/<id>/labels             { \"labelId\": \"<uuid>\" }\n\nBehavior Notes\nAssignments auto-complete when task moves to done or verified\nMoving task back to ready/backlog clears notification flags and assignment completion\nComments created via API are flagged viaApi: true\nTask keys (e.g. IMG-32) are auto-generated from project prefix\nError Responses\n{ \"error\": \"Description\" }\n\nStatus\tMeaning\n400\tBad request / validation\n401\tInvalid or missing API key\n403\tNot allowed for your role\n404\tResource not found\n409\tConflict\n500\tServer error\nCommon Workflow: Check for Tasks\n# Get all projects\ncurl -H \"Authorization: Bearer $KEY\" $URL/api/projects\n\n# Check each project board for ready tasks assigned to you\ncurl -H \"Authorization: Bearer $KEY\" $URL/api/projects/$PID/board\n\n# Pick up a task\ncurl -X PATCH -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"status\":\"in_progress\"}' $URL/api/tasks/$TID\n\n# ... do the work ...\n\n# Close it out\ncurl -X PATCH -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"status\":\"done\"}' $URL/api/tasks/$TID\n\ncurl -X POST -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"body\":\"Done. Commit: https://...\"}' $URL/api/tasks/$TID/comments"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tomislavpet/init-manager",
    "publisherUrl": "https://clawhub.ai/tomislavpet/init-manager",
    "owner": "tomislavpet",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/init-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/init-manager",
    "agentUrl": "https://openagent3.xyz/skills/init-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/init-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/init-manager/agent.md"
  }
}