# Send Og Board 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": "og-board-manager",
    "name": "Og Board Manager",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/jatin-31/og-board-manager",
    "canonicalUrl": "https://clawhub.ai/jatin-31/og-board-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/og-board-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=og-board-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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/og-board-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/og-board-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/og-board-manager",
    "agentUrl": "https://openagent3.xyz/skills/og-board-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/og-board-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/og-board-manager/agent.md"
  }
}
```
## Documentation

### Board Manager

Delegate and track work using OpenGoat tools.

Use tools directly. Do not run shell CLI commands like sh ./opengoat ....

### Allowed Actions

Create tasks for yourself.
Assign tasks to your direct or indirect reportees.
Read and update task state.
Add blockers, artifacts, and worklogs.

Important: replace amazon-senior-manager with your agent ID.

opengoat_agent_info({ "agentId": "amazon-senior-manager" })

### Task Tools

opengoat_task_list({ "assignee": "amazon-senior-manager" })
opengoat_task_get({ "taskId": "<task-id>" })
opengoat_task_create({
  "actorId": "amazon-senior-manager",
  "title": "...",
  "description": "...",
  "assignedTo": "<agent-id>",
  "project": "<path>"
})
opengoat_task_update_status({
  "actorId": "amazon-senior-manager",
  "taskId": "<task-id>",
  "status": "todo|doing|blocked|pending|done",
  "reason": "<optional-reason>"
})
opengoat_task_add_blocker({ "actorId": "amazon-senior-manager", "taskId": "<task-id>", "blocker": "..." })
opengoat_task_add_artifact({ "actorId": "amazon-senior-manager", "taskId": "<task-id>", "content": "..." })
opengoat_task_add_worklog({ "actorId": "amazon-senior-manager", "taskId": "<task-id>", "content": "..." })

### 1. Confirm org context

opengoat_agent_info({ "agentId": "amazon-senior-manager" })

Use the output to ensure:

You assign only to your reportees (direct or indirect) or yourself.
You choose task granularity appropriate to your layer in the org.

### 2. Review tasks

opengoat_task_list({ "assignee": "amazon-senior-manager" })
opengoat_task_get({ "taskId": "<task-id>" })

### 3. Delegate by creating a task

Create one task per owner and outcome.

opengoat_task_create({
  "actorId": "amazon-senior-manager",
  "title": "<verb>: <deliverable>",
  "description": "<context + deliverable + acceptance criteria>",
  "assignedTo": "<agent-id>",
  "project": "<path>"
})

### Self-assigning (do the work yourself)

If the task is small enough and you have the tools and context to complete it efficiently, do not delegate. Create a task for yourself so the work is still tracked.

Rules:

Use "assignedTo": "amazon-senior-manager".
Keep the task scoped to a single, verifiable outcome.
Include acceptance criteria so done is unambiguous.

Example:

opengoat_task_create({
  "actorId": "amazon-senior-manager",
  "title": "Fix: <short description>",
  "description": "Context:\\n- ...\\n\\nDeliverable:\\n- ...\\n\\nAcceptance criteria:\\n- ...",
  "assignedTo": "amazon-senior-manager",
  "project": "<path>"
})

### Task sizing and detail level

Do not blindly break tasks down small. Size tasks based on where you sit in the org and who you are assigning to.

### If you are a higher-level manager

Write outcome-focused tasks:

What result is needed
Why it matters
Constraints and success criteria
Optional milestones (not step-by-step instructions)

Expect your reportee to create smaller tasks for their own direct reportees if needed.

### If you are the last manager before execution

Write execution-ready tasks:

Concrete steps when helpful
File paths and edge cases
Clear validation steps

### Title

Use a verb + deliverable:

Implement: <feature>
Fix: <bug>
Investigate: <question>
Decide: <tradeoff>

### Description

Context:
- Why this matters (1–3 bullets)

Deliverable:
- What to produce (code/doc/decision)

Acceptance criteria:
- Observable checks (tests pass, output, link, screenshot, etc.)

Constraints:
- Scope boundaries, dependencies, must-use tools, performance limits

### Troubleshooting

Task creation fails: you are likely assigning to someone who is not in your reportee tree. Reassign to a valid reportee (direct or indirect) or assign to yourself.
If a tool call fails, inspect the tool error and retry with corrected parameters.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jatin-31
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/og-board-manager)
- [Send to Agent page](https://openagent3.xyz/skills/og-board-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/og-board-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/og-board-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/og-board-manager)