# Send Og Board Individual 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-individual",
    "name": "Og Board Individual",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/jatin-31/og-board-individual",
    "canonicalUrl": "https://clawhub.ai/jatin-31/og-board-individual",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/og-board-individual",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=og-board-individual",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "og-board-individual",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T15:45:13.163Z",
      "expiresAt": "2026-05-07T15:45:13.163Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=og-board-individual",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=og-board-individual",
        "contentDisposition": "attachment; filename=\"og-board-individual-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "og-board-individual"
      },
      "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/og-board-individual"
    },
    "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-individual",
    "downloadUrl": "https://openagent3.xyz/downloads/og-board-individual",
    "agentUrl": "https://openagent3.xyz/skills/og-board-individual/agent",
    "manifestUrl": "https://openagent3.xyz/skills/og-board-individual/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/og-board-individual/agent.md"
  }
}
```
## Documentation

### Board Individual

Use this skill to read and update tasks assigned to you.

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

### Quick Start

Replace amazon-catalog-manager with your agent id.

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

You will typically have one or more <task-id> values to update.

### Relevant Tools

opengoat_task_list({ "assignee": "amazon-catalog-manager" })
opengoat_task_get({ "taskId": "<task-id>" })
opengoat_task_update_status({
  "actorId": "amazon-catalog-manager",
  "taskId": "<task-id>",
  "status": "todo|doing|blocked|pending|done",
  "reason": "<optional-reason>"
})
opengoat_task_add_blocker({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "blocker": "..." })
opengoat_task_add_artifact({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "content": "..." })
opengoat_task_add_worklog({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "content": "..." })

### Show a single task

opengoat_task_get({ "taskId": "<task-id>" })

### List tasks

opengoat_task_list({ "assignee": "amazon-catalog-manager" })

### List latest tasks

opengoat_task_list_latest({ "assignee": "amazon-catalog-manager", "limit": 20 })

### Update Task Status

Statuses: todo, doing, blocked, pending, done.

opengoat_task_update_status({
  "actorId": "amazon-catalog-manager",
  "taskId": "<task-id>",
  "status": "doing|blocked|pending|done|todo",
  "reason": "<reason when needed>"
})

### Reason rules

reason is mandatory when moving to blocked or pending.
reason is optional for other statuses, but recommended when it improves clarity.

Examples:

opengoat_task_update_status({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "status": "doing" })
opengoat_task_update_status({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "status": "blocked", "reason": "Need API token from platform team" })
opengoat_task_update_status({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "status": "pending", "reason": "Waiting for review window on Friday" })
opengoat_task_update_status({ "actorId": "amazon-catalog-manager", "taskId": "<task-id>", "status": "done", "reason": "Merged PR #123 and deployed" })

### Add a blocker entry

opengoat_task_add_blocker({
  "actorId": "amazon-catalog-manager",
  "taskId": "<task-id>",
  "blocker": "Blocked by <thing>. Unblocks when <condition>."
})

### Add an artifact (proof of work)

opengoat_task_add_artifact({
  "actorId": "amazon-catalog-manager",
  "taskId": "<task-id>",
  "content": "PR: <link> | Docs: <link> | Output: <summary>"
})

### Add a worklog update (progress notes)

opengoat_task_add_worklog({
  "actorId": "amazon-catalog-manager",
  "taskId": "<task-id>",
  "content": "Did X. Next: Y. Risk: Z."
})

### Minimal Hygiene

Keep status accurate (todo -> doing -> blocked/pending/done).
When moving to blocked or pending, include a specific reason.
When blocked, add a blocker entry that states what unblocks you.
When done, add at least one artifact that proves completion.
Use worklogs when progress is non-obvious or when handing off.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jatin-31
- Version: 1.0.0
## 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-04-30T15:45:13.163Z
- Expires at: 2026-05-07T15:45:13.163Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/og-board-individual)
- [Send to Agent page](https://openagent3.xyz/skills/og-board-individual/agent)
- [JSON manifest](https://openagent3.xyz/skills/og-board-individual/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/og-board-individual/agent.md)
- [Download page](https://openagent3.xyz/downloads/og-board-individual)