bbs-relay-single-task

bbs-relay-single-task is a skill for Claude Code, Codex from inclusionAI/Avernet. It costs 53 tokens per session (713 once invoked), scanned A, original, Apache-2.0.

A relay procedure for taking over a task from an engine notification, which includes the task's current state.

In plain words
What is it for?
It helps a bot identify unfinished work, attach its own task record, carry out the work, and send the final result back.
Why use it?
It avoids rescanning or claiming work that has already been assigned, while providing a fallback when the notification lacks details.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps a bot identify unfinished work, attach its own task record, carry out the work, and send the final result back.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/inclusionai/avernet/bbs-relay-single-task
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add inclusionAI/Avernet --skill bbs-relay-single-task
Clone the repo
git clone --depth 1 https://github.com/inclusionAI/Avernet

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bbs-relay-single-task

README.md
[![agentmods](https://agentmods.dev/badge/skills/inclusionai/avernet/bbs-relay-single-task/github.svg)](https://agentmods.dev/skills/inclusionai/avernet/bbs-relay-single-task)
Your own site
<a href="https://agentmods.dev/skills/inclusionai/avernet/bbs-relay-single-task"><img src="https://agentmods.dev/badge/skills/inclusionai/avernet/bbs-relay-single-task/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bbs-relay-single-task

Your own site · 80×15
<a href="https://agentmods.dev/skills/inclusionai/avernet/bbs-relay-single-task"><img src="https://agentmods.dev/badge/skills/inclusionai/avernet/bbs-relay-single-task.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 713 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.00713
Opus 5 $0.00026 $0.00357
Sonnet 5 $0.00011 $0.00143
Haiku 4.5 $0.00005 $0.00071

Measured 10d ago against content hash 06a1f233a710, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

bbs-relay-single-task scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/backend/specs/2026-08-09-task-goal-driven-bbs-active-relay/bbs-relay-single-task/SKILL.md · 48 lines

What it actually says

bbs-relay-single-task

触发

收到引擎主动发的任务消息(含 task_id + backend base url + 自身 bot_id + 内联任务态快照 JSON)。 引擎已替你占根(bbs_owner已设为你的bot_id)——不需要 scan、不需要 claim、不需要自判

执行步骤

步骤① 据消息内联快照归纳剩余事项(dashboard 仅兜底)

  • 引擎发的任务消息已内联任务态快照(JSON):goal(objective+acceptances)、instructionbackgrounddone_children(已 DONE 子节点+output)、gapsloop_roundtask_id/node_id
  • 直接据快照归纳"剩余事项":剩余 = goal.acceptances 全集 − {done_children 的 output 并集},再按 gaps 细化;正常路径不读 dashboard
  • 仅当快照缺字段 / 字段不全时,才 GET {backend}/api/v1/collaboration/tasks/dashboard?task_id={task_id} 兜底补全。
  • 自己组织 task_spec(metadata{title, instruction}, context{background}, goal{objective, acceptances[]})覆盖你将要做的剩余子集。

步骤② attach(挂 scoped 节点)

  • POST {backend}/api/v1/collaboration/tasks/bbs/attach
  • body: {"task_id": "{task_id}", "parent_node_id": "{root_node_id}", "task_spec": {你组织的}, "bot_id": "{你自身bot_id}"}
  • 200 → 读 data.node_id(你的 scoped 节点 id)
  • 409 → 结束(不应发生,引擎已占根;若发生说明被释放,结束不重试)

步骤③ 执行

用自身能力执行 task_spec.instruction(产出对应 deliverable + acceptance 内容)。

步骤④ result(回投终态)

  • POST {backend}/api/v1/collaboration/tasks/bbs/result
  • body: {"task_id": "{task_id}", "node_id": "{步骤②的node_id}", "bot_id": "{你自身bot_id}", "acceptance_result": {"verdict": "PASS", "acceptances_metric": [...]}, "output_patch": {"{deliverable_key}": {产出}}}
  • 200 → 接力完成(框架经 on_bbs_report 收口)

环境约束

  • bot_id 必须用消息中给的"你自身 bot_id",不用引擎账号。
  • backend base url 从消息里取,不假设。
Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 48 lines · 53 tokens per session scan A 06a1f233a710

Subscribe to this mod's changes

bbs-relay-single-task is a skill published in the GitHub repository inclusionAI/Avernet (540 stars, last pushed today), licensed Apache-2.0. It adds 53 tokens to every session and 713 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

coordinate-agents

Route Codex-native multi-agent orchestration in a Git repository through a local-first, recoverable Agent Bus. Use for role-based planning, task execution, review, recovery, adapters, and human-gated release workflows. The plugin supports Codex CLI, Google Antigravity CLI, Claude, and other configured coding agents.…

hogancv/coordinate-agents · 87 tokens

coordinate-task

Run a Coordinate Agents Task from requirement clarification through planning, implementation, review, and the human release gate. Hide Agent Bus transport details behind the durable Task API.

hogancv/coordinate-agents · 35 tokens

coordinate-recover

Diagnose and safely resume Coordinate Agents Tasks after executable failure, non-zero exit, timeout, stale claim, processing message, or Implementer ERROR. Recovery is explicit and never an automatic retry loop.

hogancv/coordinate-agents · 43 tokens

coordinate-setup

Discover coding CLIs on the current computer and configure a Coordinate Agents implementation agent. Use for setup, executable checks, registered agents, user-level configuration, and project-over-user precedence.

hogancv/coordinate-agents · 40 tokens

coordinate-review

Review a Coordinate Agents implementation as the Codex Reviewer. Verify the real commit, diff, tests, validation evidence, and specification without modifying the Implementer's product code.

hogancv/coordinate-agents · 36 tokens

deliberated-review

Review code with multiple specialist subagents, then use gemot to find where they disagree and why. Requires gemot MCP server configured.

justinstimatze/gemot · 32 tokens