task-publish

task-publish is a skill for Claude Code, Codex from ozzy-labs/suasor. It costs 128 tokens per session (1,531 once invoked), scanned A, original, MIT.

Instructions for sending confirmed tasks to GitHub Issues, Jira, or Slack Lists, and for changing the status of or commenting on those tasks. They require identifying the task first and getting the user's approval before sending anything outside the local system.

In plain words
What is it for?
Use them to publish a task, mark an external ticket complete, reopen it, or add a progress comment after the user confirms the target and destination.
Why use it?
They prevent the assistant from publishing or changing external tasks by mistake and clarify which system remains the source of truth after publication.

Skill for Claude CodeCodex

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

Good fit Use them to publish a task, mark an external ticket complete, reopen it, or add a progress comment after the user confirms the target and destination.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ozzy-labs/suasor/task-publish
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 ozzy-labs/suasor --skill task-publish
Clone the repo
git clone --depth 1 https://github.com/ozzy-labs/suasor

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 task-publish

README.md
[![agentmods](https://agentmods.dev/badge/skills/ozzy-labs/suasor/task-publish/github.svg)](https://agentmods.dev/skills/ozzy-labs/suasor/task-publish)
Your own site
<a href="https://agentmods.dev/skills/ozzy-labs/suasor/task-publish"><img src="https://agentmods.dev/badge/skills/ozzy-labs/suasor/task-publish/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 task-publish

Your own site · 80×15
<a href="https://agentmods.dev/skills/ozzy-labs/suasor/task-publish"><img src="https://agentmods.dev/badge/skills/ozzy-labs/suasor/task-publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 128 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,531 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.
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.00128 $0.01531
Opus 5 $0.00064 $0.00766
Sonnet 5 $0.00026 $0.00306
Haiku 4.5 $0.00013 $0.00153

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

Security

Grade A, and why

task-publish 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 8d 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.

docs/skills/task-publish/SKILL.md · 50 lines

How it starts

The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.

task-publish

確定タスクを外部ホーム(GitHub Issues / Jira / Slack List)へ起票し、状態を遠隔操作する HITL write skill(ADR-0036 / ADR-0004)。Suasor は「横断捕捉・AI 提案・優先付け・由来」に徹し、公開したタスクの住処は外部ツールに委ねる(single pane)。ホームは destination(github / jira / slack)ごとに独立設定でき、task.publish は任意の destination 引数(省略時 [tasks].default)で行き先を選ぶ(ADR-0036 改訂 R1-2)。tasks projection は published task については状態の正本ではなく、優先ビュー表示用の読み取りキャッシュ + provenance(状態の正本は外部ホーム=D1)。未 publish タスクは private tier(ローカルが正本・R1-4)task-update が Suasor 内 lifecycle を動かすのに対し、本 skill は外部への egress write / 遠隔操作を担う。

いつ発火するか

  • 「このタスク GitHub に起票して」「タスクを外部に publish して」(→ task.publish
  • 「Jira のチケット完了にして」「あの ticket を done に」(→ task.act complete)
  • 「再オープンして」「やっぱり open に戻して」(→ task.act reopen)
  • 「あの issue にコメント付けて」「進捗をコメントしといて」(→ task.act comment)

何をするか(MCP tool flow)

read で対象を特定して、egress write は HITL。auto-apply 経路は存在しないADR-0004)。egress(外部送信)を伴うため、ローカル draft.export 以上に確認は厳格にする(ADR-0003 §egress 境界)。

  1. task.liststate で絞り可)で対象 task を特定する。各 task は id / title / state / 既存の外部 id(publish 済みか)
  2. どの task をどのホーム(GitHub / Jira / Slack List)にどう操作するかをユーザーに提示して確認を取る(native framing: ホスト側で人の承認を促す)。送信先・本文(コメント等)を明示する
  3. 承認後:
    • 未起票の確定タスク → task.publish(任意 destination or [tasks].default[tasks.homes.<destination>] へ起票。TaskPublished を append、外部 id を記録)
    • 起票済みタスク → task.actcomplete / reopen / commentTaskActionIssued を append)。actuator 設定はその task 自身の published_destination で解決される(R1-3)ので、既定を乗り換えても既存 published task の操作は壊れない

制約

  • HITL。人の承認なしに task.publish / task.act を呼ばない。auto-apply しない。task.list は read(特定)
  • 行き先は destination ごとの typed ホームADR-0036 改訂 R1)。task.publish の任意 destination 引数(省略時 [tasks].default)で振り分ける(R1-2)。公開済み task の操作/読み戻しは task 自身の published_destination で config 解決(R1-3)
  • 冪等・二重起票回避: actuator は冪等 label(例 suasor + suasor-task-<id>)で同一タスクの重複起票を防ぐ。「外部起票成功 → ローカル event append 失敗」の二重起票リスクに注意し、再実行時は既存外部 id を確認してから操作する
  • connector(read 専用・ADR-0007)と actuator(write)は型レベルで別 capability。actuator 未実装のソースへは publish できない(status で報告、throw しない)
  • Slack List actuator は comment 非対応など、ホームごとに対応操作に差がある(ADR-0036)。非対応操作は unsupported として報告する
  • 本 skill は手順書のみで実処理を持たない

Read the full file on GitHub · 50 lines

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. 8d ago First seen · 50 lines · 128 tokens per session scan A cab5731cd1ce

Subscribe to this mod's changes

task-publish is a skill published in the GitHub repository ozzy-labs/suasor (0 stars, last pushed 29d ago), licensed MIT. It adds 128 tokens to every session and 1,531 once invoked, about $0.0006 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-31.