By ipletnjov-tw
A simple framework of reusable prompts that makes it easy to implement features & projects of almost any level of complexity while maintaining a high level of code quality.
Add a new task to an existing implementation plan. DO NOT use a subagent unless explicitly prompted.
Perform a thorough & critical review of ALL code in the plan. DO NOT use a subagent unless you are explicitly prompted to do so.
Code review focused on project conventions and patterns. DO NOT use a subagent unless you are explicitly prompted to do so.
Perform a thorough & critical code review. DO NOT use a subagent unless you are explicitly prompted to do so.
Complete task with TDD and automatic review cycle. DO NOT use a subagent unless you are explicitly prompted to do so.
No model invocation
Executes directly as bash, bypassing the AI model
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
This is a simple framework of reusable prompts that makes it easy to use LLMs to implement features & projects of almost any level of complexity while maintaining a high level of code quality.
Works well with Anthropic Claude Sonnet 3.7, 4.0 and 4.5. Tested using the Cursor IDE (VSCode), Cursor Background Agents, Claude Code CLI and Claude Code Web.
Packaged and distributed as a Claude Code plugin. Also works with OpenAI Codex CLI and other LLM tools. For usage outside of Claude Code and Codex CLI, please refer to PROMPTS.md.
Heavily inspired by Taskmaster and wbern/claude-instructions.
/plugin marketplace add ipletnjov-tw/taskie
/plugin install taskie@taskie
Latest version: v2.3.0
Run the installation script from the Taskie directory:
./install-codex.sh
This copies all prompts to ~/.codex/prompts/ with taskie- prefix. Restart Codex CLI or start a new session to load the prompts.
The Codex installation includes 19 files:
taskie-new-plan.md, taskie-continue-plan.md, etc.)taskie-ground-rules.md)All prompts reference ~/.codex/prompts/taskie-ground-rules.md to load shared ground rules at runtime. This design:
Note: Task-specific workflow instructions (like the phases in complete-task prompts) remain inlined since they're unique to those workflows, not cross-cutting concerns.
CODEX_HOME Limitation: If using a custom CODEX_HOME environment variable, you must manually edit all prompt files to update the ground rules path from ~/.codex/prompts/taskie-ground-rules.md to your custom location.
| Tool | Syntax Pattern | Example |
|---|---|---|
| Claude Code | /taskie:command-name | /taskie:new-plan |
| Codex CLI | /prompts:taskie-command-name | /prompts:taskie-new-plan |
new-plan - Create a new implementation plancontinue-plan - Continue an existing plan from git historyplan-review - Review and critique the current planpost-plan-review - Address plan review commentscreate-tasks - Generate tasks from the current planadd-task - Add a new task to an existing implementation plantasks-review - Review the task list and task filespost-tasks-review - Address task review commentsnext-task - Start implementing the next taskcontinue-task - Continue working on the current taskcode-review - Critically review implemented codecode-review-conventions - Code review focused on project conventions and patternspost-code-review - Apply code review feedbackall-code-review - Review ALL code across ALL tasks in the planpost-all-code-review - Apply complete implementation review feedbacknext-task-tdd - Implement next task using strict TDD (red-green-refactor)complete-task-tdd - TDD implementation with automatic review cyclecomplete-task - Implement + review + fix in one commandcomplete-task-tdd - TDD variant of complete-taskAll commands support appending additional instructions. Most of the time, your prompts will look exactly like this:
/taskie:command-name
Or with additional context:
/taskie:command-name Additional instructions here
For Codex CLI, use the /prompts:taskie- prefix:
/prompts:taskie-command-name
Or with additional instructions:
/prompts:taskie-command-name Additional instructions here
The workflow is identical to Claude Code. Examples below use Claude Code syntax; for Codex CLI, replace /taskie: with /prompts:taskie-.
Your first prompt should look like this:
/taskie:new-plan I need to implement feature X, it needs to be A, B, and C. You will have to use Y and please make sure you don't forget X.
You will want to read the generated plan and refine the details with the LLM. In addition, you can prompt /taskie:plan-review to get the LLM to critically review and scrutinize the plan.
After the review is written, use /taskie:post-plan-review for the LLM to address the review comments. You may want to add what review comments it should leave unaddressed, in case you disagree with any of them.
npx claudepluginhub ipletnjov-tw/taskie --plugin taskieIterative plan review and execution workflow for Claude Code
Commands for automating repetitive tasks and workflows
Describe your goal, approve the spec, then step away — Claude and Codex loop together until it's right.
Implementation planning, execution, and PR creation workflows with multi-agent collaboration
Plan and autonomously build a software task end-to-end. Recons the codebase, applies preloaded memory, decomposes into the right number of phases, gets one confirmation, then prepares a single ready-to-paste /goal command — one paste between you and done — that drives execution to completion with built-in retry, fix-spec recovery, and per-phase memory writeback. Works on Claude Code and Codex.
A structured development pipeline: task bootstrapping, project planning, feature planning, task generation, TDD implementation, and code review