agentify-project
Make a project ready for AI agentic engineering by converging it toward a canonical agent-neutral structure — a lean AGENTS.md index with progressive…
Turn a ticket or requirements document into a concise QA manual-test file a non-author can follow. Invoke manually only.
$ npx -y skills add eai-org/agent-toolkit --skill create-manual-test-instructions --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/create-manual-test-instructionsContext preview
The summary Claude sees to decide when to auto-load this skill.
Turn a ticket or requirements document into a concise QA manual-test file a non-author can follow. Invoke manually only.
name: create-manual-test-instructions description: Turn a ticket or requirements document into a concise QA manual-test file a non-author can follow. Invoke manually only. context: fork license: MIT metadata: version: "1.4"
Read the input ticket or requirements document (and, where needed for accurate navigation, the code it cites). Write the manual-test file in the **same directory**, naming it by replacing `.REQUIREMENTS` or `.TICKET` with `.MANUAL-TEST` (e.g. `FOO.REQUIREMENTS.md` → `FOO.MANUAL-TEST.md`); if the input follows neither convention, append `.MANUAL-TEST` before `.md`. If there is no file (pasted text), follow the project's/user's convention for where plans live (default: `.agents/plans/`), derive a kebab-case `<slug>` from the content, and write `<slug>/<slug>.MANUAL-TEST.md` there. Running forked, you can't ask mid-run: flag any guessed location or slug in the final message for the user to verify.
The file must be followable by someone **unfamiliar with the ticket** — short but complete. Four parts:
1. **What changed** — 1–2 sentences: the feature and the user-visible difference. 2. **How to get there** — concrete navigation to the affected area (entry point, page/screen name, any prerequisite state). 3. **Before vs after** — how the area behaved before, how it should behave now. 4. **What to verify** — checklist of behaviors to confirm, including edge cases (empty values, multiple items, boundaries) where relevant.
Do not modify any source files; the only file you write is the manual-test document.
When done, state the manual-test file's **project-relative path**.
A collection of generic agentic tools for common engineering tasks, designed to work with any AI agent on any kind of software project.
Make a project ready for AI agentic engineering by converging it toward a canonical agent-neutral structure — a lean AGENTS.md index with progressive…
Check how much of a ticket is already implemented — split it into requirement blocks, judge each against the code, and save a human-readable TICKET-STATUS…
Draft, rewrite, or refine a doc for maximum token economy without losing any rule or intent. Use for docs kept in version control and regularly re-read by…
Author or refine a skill for maximum token economy without losing intent. Use when creating any new skill or editing an existing `SKILL.md`.
Audit what auto-loads into an agent session's context window and suggest lean, reversible fixes to cut startup tokens.
Turn a refined requirements document into a structured implementation PLAN.md a fresh session can execute. Planning only — decides the "how", not the "what".…