# Send Init Manager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/init-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=init-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "version.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "init-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T09:23:56.049Z",
      "expiresAt": "2026-05-11T09:23:56.049Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=init-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=init-manager",
        "contentDisposition": "attachment; filename=\"init-manager-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "init-manager"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Init Manager Skill

This skill enables AI agents to work with Init Manager as a project management backend — picking up tasks, doing work, and closing them out.

### Setup

Your workspace needs these in TOOLS.md or environment:

Init Manager URL (e.g. https://manager.init.hr)
API Key (Bearer token, starts with initm_)
Your User ID (UUID)

### AI Guides (Instruction Hierarchy)

There are three levels of AI instructions. Always follow them. More specific wins on conflict:

Global AI Guide — GET /api/settings?key=ai_global_guide
Per-User AI Guide — GET /api/users/<your-user-id> → aiGuide field
Project AI Guide — GET /api/projects/<project-id> → aiGuide field

On first boot and periodically: fetch all three and follow the combined instructions.

### Task Workflow

Pick up tasks in ready status assigned to you
Move to in_progress before starting work
Read full description + all comments + project AI guide before writing code
If unsure — comment asking for clarification, keep in ready, assign to a human
When done — move to done, add comment with commit/PR link + summary
If blocked — comment with details, assign to a human

### Authentication

All requests need:

Authorization: Bearer initm_<your-key>

### Key Endpoints

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

### Create a Task

POST /api/tasks
{
  "projectId": "<uuid>",
  "title": "Task title",
  "type": "task",           // epic | task | bug
  "status": "backlog",      // backlog | ready | in_progress | done | verified
  "priority": "medium",     // low | medium | high | urgent
  "description": "...",     // plain text or Tiptap JSON
  "parentId": "<uuid>",     // optional, makes subtask
  "dueDate": "2026-03-01T00:00:00.000Z"
}

### Update a Task

PATCH /api/tasks/<id>
{
  "status": "in_progress",
  "title": "New title",
  "priority": "high"
}

All fields optional — only include what changes.

### Add a Comment

POST /api/tasks/<id>/comments
{
  "body": "Your comment text"
}

⚠️ Use body field, not content.

### Assign a User

POST /api/tasks/<id>/assign
{ "userId": "<uuid>" }

### Labels

GET    /api/labels?projectId=<uuid>
POST   /api/labels                        { "name": "Bug", "color": "#ef4444", "projectId": "<uuid>" }
POST   /api/tasks/<id>/labels             { "labelId": "<uuid>" }
DELETE /api/tasks/<id>/labels             { "labelId": "<uuid>" }

### Behavior Notes

Assignments auto-complete when task moves to done or verified
Moving task back to ready/backlog clears notification flags and assignment completion
Comments created via API are flagged viaApi: true
Task keys (e.g. IMG-32) are auto-generated from project prefix

### Error Responses

{ "error": "Description" }

StatusMeaning400Bad request / validation401Invalid or missing API key403Not allowed for your role404Resource not found409Conflict500Server error

### Common Workflow: Check for Tasks

# Get all projects
curl -H "Authorization: Bearer $KEY" $URL/api/projects

# Check each project board for ready tasks assigned to you
curl -H "Authorization: Bearer $KEY" $URL/api/projects/$PID/board

# Pick up a task
curl -X PATCH -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \\
  -d '{"status":"in_progress"}' $URL/api/tasks/$TID

# ... do the work ...

# Close it out
curl -X PATCH -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \\
  -d '{"status":"done"}' $URL/api/tasks/$TID

curl -X POST -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \\
  -d '{"body":"Done. Commit: https://..."}' $URL/api/tasks/$TID/comments
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tomislavpet
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T09:23:56.049Z
- Expires at: 2026-05-11T09:23:56.049Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/init-manager)
- [Send to Agent page](https://openagent3.xyz/skills/init-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/init-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/init-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/init-manager)