Agent Skillsnyldn/claude-octopus › skill-intake

skill-intake

GitHub

用于对堆积的 Issue 和 PR 进行整理、分类、验证并分配状态,确保每个项目可执行或关闭。适用于队列混乱或新报告需排序的场景。

.claude/skills/skill-intake/SKILL.md nyldn/claude-octopus

Trigger Scenarios

Issue 或 PR 堆积无人处理 收到未分类的新报告需要排序 问题状态不清需明确下一步行动 规划前需梳理当前待办队列

Install

npx skills add nyldn/claude-octopus --skill skill-intake -g -y
More Options

Non-standard path

npx skills add https://github.com/nyldn/claude-octopus/tree/main/.claude/skills/skill-intake -g -y

Use without installing

npx skills use nyldn/claude-octopus@skill-intake

指定 Agent (Claude Code)

npx skills add nyldn/claude-octopus --skill skill-intake -a claude-code -g -y

安装 repo 全部 skill

npx skills add nyldn/claude-octopus --all -g -y

预览 repo 内 skill

npx skills add nyldn/claude-octopus --list

SKILL.md

Frontmatter
{
    "name": "skill-intake",
    "description": "Move incoming issues and pull requests through triage states until each is actionable or closed — use when the queue has piled up or a report arrives unsorted",
    "disable-model-invocation": true
}

Intake

Work the incoming queue. Each item moves through a small set of states until it is either actionable by someone who did not write it, or closed with a reason.

A pull request is an issue with attached code. Same states, same moves, with the deltas noted below. Resolving a bare #42 means checking both.

Adapted from triage in mattpocock/skills (MIT), cut down to the states this repo can actually represent and retargeted at gh and bd.

When To Use

  • Open issues or PRs have accumulated and nobody knows which are real.
  • A new report arrives and needs sorting before anyone works it.
  • An issue has been sitting because it is not clear what it is asking for.
  • Before planning, to establish what is actually in the queue.

When Not To Use

  • To do the work an item describes. Triage decides what happens to it, not how.
  • For local, private notes. That is skill-issues and .octo/ISSUES.md.
  • To review a PR's code quality. That is skill-code-review or skill-staged-review; intake decides whether the PR should be reviewed at all.

Inputs

An issue or PR reference, or nothing — with nothing, take the queue in order. gh issue list and gh pr list for the public surface; bd ready and bd blocked for tracked work.

Workflow

1. Categorise

What kind of thing is it: a bug, an enhancement, a question, or noise. For a PR, also: does it correspond to an existing issue, or arrive unannounced?

Do not skip this because the title looks obvious. Titles are written by people who already know what they meant.

2. Verify

The step that earns the whole skill. For a bug: reproduce it, or establish that you cannot. For a PR: check the claim it makes is the change it contains.

An unverified bug report is a hypothesis. Filing it as fact wastes whoever picks it up. If reproduction needs something you do not have — credentials, a dataset, a platform — that is needs-info, not verified.

3. Assign a state

  • needs-triage — arrived, not yet sorted. The entry state.
  • needs-info — blocked on the reporter. Say exactly what is missing; "more detail" is not a request anyone can act on.
  • verified — reproduced or confirmed, ready to be worked.
  • needs-decision — real, but what to do is a judgement call the maintainer has not made. Do not resolve these by inference. Escalate, or run skill-pressure-test with the maintainer.
  • closed — not a bug, out of scope, duplicate, or fixed. Always with a reason, and for out-of-scope, why.

4. Write the brief

For anything reaching verified, write what someone picking it up needs and would otherwise have to rediscover: where the relevant code is, what you already ruled out, and how to tell when it is fixed. This is the difference between an item that gets worked and one that gets re-triaged.

For a PR, add: whether it has tests, whether CI is green, and whether it conflicts with anything in flight.

5. Record it

For public comment text, stream the completed note through the outbound gate:

printf '%s\n' "$TRIAGE_NOTE" | \
  "${CLAUDE_PLUGIN_ROOT:-${HOME}/.claude-octopus/plugin}/scripts/safe-gh-comment.sh" \
    --repo OWNER/REPO issue-comment ISSUE_NUMBER -

Use gh issue edit --add-label only for the label mutation. Use bd update for tracked work. If bd writes are blocked by pending migrations, say so and do not run the migration — see skill-work-slicing for that constraint.

Provider Or Data Priority

  1. The repository — reproduce against the actual code.
  2. CI logs and run history for anything claiming a failure.
  3. The reporter, for what only they can supply.
  4. Never assume the report is accurate because it is detailed.

Stop Or Checkpoint Rules

  • Stop before closing anything a human filed deliberately, unless it is a clear duplicate. Closing is the one move that is rude to get wrong.
  • Stop before needs-decision items and surface them rather than guessing.
  • Do not merge or push as part of triage, even for a PR that looks ready.
  • One item at a time. Batch-labelling a queue without reading it is how real reports end up buried under a label.

Output Contract

Per item:

  1. Reference and category.
  2. State assigned, and why.
  3. Verification result — reproduced, could not reproduce, or not attempted with the reason.
  4. Brief — for verified items only.
  5. Action taken — labels, comments, or the exact commands not run and why.

Then a queue summary: counts by state, and which items are now takeable.

Verification

  • Every verified item was actually reproduced, or says explicitly that it was not and why.
  • Every needs-info names the specific missing thing.
  • Every closure carries a reason.
  • Nothing was merged, pushed, or fixed during triage.

Version History

  • 242e51d Current 2026-08-20 09:30

Same Skill Collection

.claude/skills/extract-skill/SKILL.md
.claude/skills/flow-deliver/SKILL.md
.claude/skills/flow-parallel/SKILL.md
.claude/skills/flow-spec/SKILL.md
.claude/skills/skill-agent-topology/SKILL.md
.claude/skills/skill-architecture/SKILL.md
.claude/skills/skill-audit/SKILL.md
.claude/skills/skill-authoring/SKILL.md
.claude/skills/skill-claw/SKILL.md
.claude/skills/skill-code-review/SKILL.md
.claude/skills/skill-content-pipeline/SKILL.md
.claude/skills/skill-context-detection/SKILL.md
.claude/skills/skill-copilot-provider/SKILL.md
.claude/skills/skill-cost-projections/SKILL.md
.claude/skills/skill-coverage-audit/SKILL.md
.claude/skills/skill-debate/SKILL.md
.claude/skills/skill-debug/SKILL.md
.claude/skills/skill-decision-support/SKILL.md
.claude/skills/skill-deck/SKILL.md
.claude/skills/skill-deep-research/SKILL.md
.claude/skills/skill-design-lineage/SKILL.md
.claude/skills/skill-doc-delivery/SKILL.md
.claude/skills/skill-doc-sync/SKILL.md
.claude/skills/skill-doctor/SKILL.md
.claude/skills/skill-factory/SKILL.md
.claude/skills/skill-finish-branch/SKILL.md
.claude/skills/skill-intent-contract/SKILL.md
.claude/skills/skill-issues/SKILL.md
.claude/skills/skill-iterative-loop/SKILL.md
.claude/skills/skill-knowledge-work/SKILL.md
.claude/skills/skill-meta-prompt/SKILL.md
.claude/skills/skill-native-escalation-routing/SKILL.md
.claude/skills/skill-parallel-agents/SKILL.md
.claude/skills/skill-prd/SKILL.md
.claude/skills/skill-pressure-test/SKILL.md
.claude/skills/skill-quick/SKILL.md
.claude/skills/skill-resume/SKILL.md
.claude/skills/skill-review-response/SKILL.md
.claude/skills/skill-rollback/SKILL.md
.claude/skills/skill-security-audit/SKILL.md
.claude/skills/skill-security-framing/SKILL.md
.claude/skills/skill-ship/SKILL.md
.claude/skills/skill-staged-review/SKILL.md
.claude/skills/skill-status/SKILL.md
.claude/skills/skill-task-management-v2/SKILL.md
.claude/skills/skill-tdd/SKILL.md
.claude/skills/skill-thought-partner/SKILL.md
.claude/skills/skill-ui-ux-design/SKILL.md
.claude/skills/skill-verification-gate/SKILL.md

Metadata

Files
0
Version
242e51d
Hash
3c36e79e
Indexed
2026-08-20 09:30

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 04:42
浙ICP备14020137号-1 $방문자$