Releases: manaporkun/claude-plugins
Releases · manaporkun/claude-plugins
v1.6.1
v1.6.0
v1.5.1
v1.5.0
v1.4.0
v1.3.0
v1.2.0 — Security hardening & config extensibility
Security
- Trust warning for
agentCommands— Custom commands execute in your shell; only use in trusted projects.
Fixed
- Phase reference in README —
agents.codeReviewnow correctly references Phase 5b.
Added
.gitignore— Excludes local Claude Code artifacts from version control.configVersion— Schema versioning for forward compatibility.skipReviewThreshold— Configurable small-plan threshold for skipping external review.maxCodeReviewIterations— Configurable code review iteration limit.- Installer robustness —
install.shchecks for Claude Code before proceeding. - Parallel agent detection — Single loop instead of sequential
whichcalls.
Removed
- Stale development plan file.
Full Changelog: v1.1.1...v1.2.0
v1.1.1 — Documentation & consistency fixes
What's Changed
Fixed
- Phase numbering consistency — Promoted Approve to its own Phase 3 and renumbered all phases 1-6, matching README documentation
- BUILD vs IMPLEMENT naming — README diagram now says "IMPL" to match SKILL.md phase naming
- Missing
requirements.txtin project detection — Python projects usingrequirements.txtare now detected alongsidepyproject.toml - Temp file cleanup on failure — Cleanup instructions now explicitly require running even if the agent call failed or timed out
- Corrected installation instructions — Added
marketplace.jsonfor plugin marketplace support
Added
- Plugin marketplace support — Repo can now be added as a Claude Code marketplace
- Config validation —
do-config.jsonis validated for correct shape before use; malformed config falls back to auto-detection with a warning $CLAUDE_SKILL_DIRdocumentation — Inline note explaining the variable is injected by Claude Code at runtime- Privacy note — README now warns that cloud agents (Gemini, Codex) receive plan and diff content
Install
From within Claude Code:
/plugin marketplace add manaporkun/task-workflow-skill
/plugin install task-workflow-skill@task-workflow-skill
/reload-plugins
Or clone and run ./install.sh for symlink installation.
Full Changelog: v1.1.0...v1.1.1
v1.1.0 — Security Hardening
Security
- Fix command injection in Codex invocation — Replaced
codex exec "$(cat ...)"with stdin-pipedcat ... | codex exec -q -to prevent shell metacharacter expansion from prompt contents. - Scope
git add -Nto plan-relevant files — Phase 4b no longer runsgit add -N ., which could expose unrelated files (.env, credentials) in diffs sent to external agents. - Use
mktempfor temp files — Plan-review and code-review temp files now use randomized names viamktempinstead of predictable paths, with cleanup after use.
Added
- Input validation — Rejects empty
/doinvocations with a usage message. - Large diff truncation — Truncates diffs exceeding 15,000 lines to the most relevant files.
- Version field in
plugin.jsonfor plugin ecosystem compatibility.
Upgrade
claude plugin add manaporkun/task-workflow-skillOr if installed via symlink: git pull
v1.0.0 — Initial Release
/do — Structured Task Workflow
Initial release of the Claude Code skill that turns any task into a systematic, quality-controlled workflow with external agent review.
Highlights
- 6-phase workflow: Plan → Analyze → Approve → Implement → QC → Present
- Multi-agent support: Gemini CLI, Codex CLI, and Ollama (local models)
- Cached environment detection at
~/.claude/do-env.json - Per-phase agent routing via
.claude/do-config.json - Prompt templates for plan review and code review
- Auto-detection for Node.js, iOS/macOS, Python, Go, and Rust projects
Install
From within Claude Code:
/plugin marketplace add manaporkun/task-workflow-skill
/plugin install task-workflow-skill@task-workflow-skill
/reload-plugins
Or clone and run ./install.sh for symlink installation.