โ† All skills
Tencent SkillHub ยท Productivity

Og Board Individual

Use when you need to work with tasks: view tasks, list tasks, update task status, add blockers, artifacts, and worklogs.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use when you need to work with tasks: view tasks, list tasks, update task status, add blockers, artifacts, and worklogs.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc