channel-pickup

channel-pickup is a skill for Claude Code, Codex from Jaxton07/jax-skills. It costs 99 tokens per session (876 once invoked), scanned A, original, MIT.

A session-to-session handoff procedure for coding projects. It reads a HANDOFF.md file and related specifications and plans, then records implementation progress, completion, and review notes in project files.

In plain words
What is it for?
Use it to take over an implementation task, follow a prepared design plan, record progress in IMPL-NOTES.md, and finish with a DONE.md checklist for review.
Why use it?
It prevents a new coding session from needing the previous conversation to understand the task. The handoff files provide the agreed facts, decisions, plan, and review feedback.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Good fit Use it to take over an implementation task, follow a prepared design plan, record progress in IMPL-NOTES.md, and finish with a DONE.md checklist for review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jaxton07/jax-skills/channel-pickup
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 Jaxton07/jax-skills --skill channel-pickup
Clone the repo
git clone --depth 1 https://github.com/Jaxton07/jax-skills

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin channel-pickup/plugin install channel-pickup after adding the marketplace above.

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 channel-pickup

README.md
[![agentmods](https://agentmods.dev/badge/skills/jaxton07/jax-skills/channel-pickup/github.svg)](https://agentmods.dev/skills/jaxton07/jax-skills/channel-pickup)
Your own site
<a href="https://agentmods.dev/skills/jaxton07/jax-skills/channel-pickup"><img src="https://agentmods.dev/badge/skills/jaxton07/jax-skills/channel-pickup/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 channel-pickup

Your own site · 80×15
<a href="https://agentmods.dev/skills/jaxton07/jax-skills/channel-pickup"><img src="https://agentmods.dev/badge/skills/jaxton07/jax-skills/channel-pickup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 876 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.00099 $0.00876
Opus 5 $0.00049 $0.00438
Sonnet 5 $0.00020 $0.00175
Haiku 4.5 $0.00010 $0.00088

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

Security

Grade A, and why

channel-pickup 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 11d 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.

skills/channel-pickup/SKILL.md · 37 lines

What it actually says

接手频道任务(实施会话用)

你没有上一个会话的记忆,也不需要。频道目录 + 设计文档是唯一事实来源,不要找用户复述背景。

开工三步(顺序固定)

  1. 读频道.local/agent-work/channel/<主题>/HANDOFF.md(用户没给主题就 ls .local/agent-work/channel/ 列出让用户选)。若存在 REVIEW.md 也一并读——里面的意见是你工作的一部分。
  2. 读文档:按 HANDOFF 指定顺序读 spec(.local/docs/design/spec/)→ plan(.local/docs/design/plan/)→ 项目根 AGENTS.md / CLAUDE.md + 项目索引(如有 .local/docs/INDEX.md)。
  3. 采信事实表:HANDOFF 里的「已验证事实」是上一会话读源码考证过的,直接用,禁止重复考证;真要推翻,先回 channel 留言说明证据。

执行纪律

  • 按 plan 阶段推进;阶段 0 冒烟验证先行,其断言是后续所有决策的地基。
  • plan/spec 与代码现状冲突、或冒烟断言失败 → 停下来写进 IMPL-NOTES.md 并告知用户,不要自由发挥绕过
  • 遇到 HANDOFF 列的「待决策点」:自行决策,决策与理由记入 IMPL-NOTES.md
  • 项目通用纪律全适用(以仓库根 AGENTS.md / CLAUDE.md 约定为准,有踩坑记录先读)。
  • 测试完毕后关闭过程中起的服务和进程(dev 实例、冒烟脚本、临时端口监听等)。

沟通协议(只认文件)

  • IMPL-NOTES.md:进度、卡点、决策,追加式、倒序(最新在最上)、每条带日期时间并标注所属阶段。
  • DONE.md(完成时写):验收清单逐项打勾 + 改动文件清单 + 自测记录(手测每步的实际结果,不是「应该没问题」)。
  • REVIEW.md:review 方的意见入口;每次复工前先读,逐条回应(改代码或在 IMPL-NOTES 说明不改的理由)。
  • 完成后提醒用户:DONE.md 已就绪,等 review。

收尾(DONE.md 之前必做)

  1. 项目自带的 lint / typecheck / test 全绿(按 package.json scripts 或项目等价命令),输出摘要贴进 DONE.md。
  2. 若项目维护了 .local/docs/INDEX.md 之类的代码索引:把新增/删除/改名的代码文件、变化的导出与签名补进对应清单。spec/plan/channel 文档不要加进索引(索引只标目录不标文件,文档会不定期清理)。
  3. 若实施中发现 spec/plan 过时(决策被推翻、边界调整):在 channel 留言说明,不要顺手改 spec——spec 的修改权在发起会话/用户。
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. 11d ago First seen · 37 lines · 99 tokens per session scan A 21782ec066df

Subscribe to this mod's changes

channel-pickup is a skill published in the GitHub repository Jaxton07/jax-skills (1 stars, last pushed 20d ago), licensed MIT. It adds 99 tokens to every session and 876 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

stakeholder-communication

Communicate effectively with stakeholders across functions and seniority levels. Use this skill when writing status updates, preparing executive reviews, sharing technical decisions with non-technical audiences, managing up, communicating bad news, or designing the communication cadence for a project. Triggers on…

rampstackco/claude-skills · 103 tokens

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

contact-cache

Track all identified/contacted people across strategies. CSV-backed contact database with dedup by LinkedIn URL or email. Prevents duplicate outreach when running strategies on a recurring cadence.

gooseworks-ai/goose-skills · 38 tokens

atlassian

Manage Jira issues and Confluence wiki pages in Atlassian Cloud. Use when: (1) searching/creating/updating Jira issues with JQL, (2) searching/reading/creating Confluence pages with CQL, (3) managing Jira workflows, transitions, and comments, (4) browsing Confluence spaces and page hierarchies. Supports OAuth 2.1 via…

sanjay3290/ai-skills · 96 tokens

beta-program-management

Running closed and open betas that produce real signal. Beta participant selection, structured feedback collection, beta-to-GA decision criteria, and the difference between soft-launch (no structure, no signal), kitchen-sink (everyone in, no actionable feedback), and structured beta (calibrated cohort, intentional…

rampstackco/claude-skills · 155 tokens

service-desk

Runs the IT service desk — intake, triage, prioritization, escalation, knowledge, and the metrics that improve service rather than distort it. Use this to set up or fix a service desk, design ticket priority and escalation, reduce repeat contacts, structure a knowledge base, or work out why a desk hitting its targets…

cbrock84/headcount · 73 tokens