mergemat/agent-readiness-skills · Archived

collect-task-context

Builds a minimal task-specific context packet for an agent. Use when user wants context for a coding task, needs to prepare an agent handoff, or asks what files, constraints, tests, and evidence should be given to an implementation agent.

First seen Jul 9, 2026

Installation

$ npx skills add mergemat/agent-readiness-skills --skill collect-task-context

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mergemat/agent-readiness-skills.

npx skills add mergemat/agent-readiness-skills

Browse all from mergemat/agent-readiness-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,591 B
  • docs SUMMARY.md 266 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Collect Task Context

Gather the smallest reproducible context packet for one task.

This is not a repo dump. Include only evidence that helps plan, edit, or verify the task.

Process

  1. Identify the task, expected behavior, and acceptance criteria.
  2. Read project agent docs and relevant domain docs.
  3. Map allowed changes, read-only context, and forbidden paths.
  4. Find change candidates, call sites, interfaces, tests, fixtures, and configs.
  5. Record verification commands and known gaps.
  6. Capture provenance: branch, base, date, and commands used.

Use [packet-format.md](references/packet-format.md) when writing a formal packet.

Include

  • task summary
  • relevant files and symbols with why each matters
  • scope and forbidden changes
  • product/domain rules
  • architecture, API, DB, or event contracts when relevant
  • focused tests and broader checks
  • assumptions and open questions

Exclude

  • generated files unless directly relevant
  • vendor and caches
  • broad docs with no task-specific takeaway
  • secrets, tokens, private credentials
  • stale docs unless conflict matters

Output

Return ready, readywithassumptions, or not_ready.

If not ready, name the blocking missing fact. If ready, keep the packet compact enough that another agent can use it immediately.