Skip to content

Releases: manaporkun/claude-plugins

v1.6.1

25 Mar 15:09
b018d57

Choose a tag to compare

1.6.1 (2026-03-25)

Bug Fixes

  • build: Configure release-please JSON paths (2f466b5)

v1.6.0

25 Mar 14:48
f11fa49

Choose a tag to compare

1.6.0 (2026-03-25)

Features

  • Switch copilot agent to use copilot CLI instead of token-based API (2ef107d)

v1.5.1

25 Mar 13:34
4fdd099

Choose a tag to compare

1.5.1 (2026-03-25)

Bug Fixes

  • Bump plugin.json and marketplace.json to 1.5.0 (1ce5262)
  • Switch extra-files to generic type so release-please updates version files (9440309)

v1.5.0

25 Mar 12:48
dcd5cbf

Choose a tag to compare

1.5.0 (2026-03-25)

Features

  • Add GitHub Copilot support and /do config subcommands (4a8951a)

v1.4.0

24 Mar 07:53
d8a56d9

Choose a tag to compare

1.4.0 (2026-03-24)

Features

  • Add branch creation, resume, complexity estimate, and safe/risky review (4a34402)
  • Add Claude Code, Aider, and OpenAI-compatible API agent support (a5842a0)
  • Add OpenRouter API integration, remove Antigravity placeholder (a68fb88)

Bug Fixes

  • Prevent parallel Bash call cancellation in environment detection (cb248ee)
  • Relax config field matching in test to support table format (d10b601)
  • Sync release-please manifest, fix CHANGELOG URLs, dynamic version badge (8303405)

v1.3.0

23 Mar 12:02
b5db604

Choose a tag to compare

1.3.0 (2026-03-23)

Features

  • Add test suite, CI, and improve agent timeout reliability (6678165)

Bug Fixes

  • Bash arithmetic compatibility with set -e in test.sh (9f1feee)

v1.2.0 — Security hardening & config extensibility

23 Mar 11:38

Choose a tag to compare

Security

  • Trust warning for agentCommands — Custom commands execute in your shell; only use in trusted projects.

Fixed

  • Phase reference in READMEagents.codeReview now 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 robustnessinstall.sh checks for Claude Code before proceeding.
  • Parallel agent detection — Single loop instead of sequential which calls.

Removed

  • Stale development plan file.

Full Changelog: v1.1.1...v1.2.0

v1.1.1 — Documentation & consistency fixes

22 Mar 16:24

Choose a tag to compare

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.txt in project detection — Python projects using requirements.txt are now detected alongside pyproject.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.json for plugin marketplace support

Added

  • Plugin marketplace support — Repo can now be added as a Claude Code marketplace
  • Config validationdo-config.json is validated for correct shape before use; malformed config falls back to auto-detection with a warning
  • $CLAUDE_SKILL_DIR documentation — 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

22 Mar 15:55

Choose a tag to compare

Security

  • Fix command injection in Codex invocation — Replaced codex exec "$(cat ...)" with stdin-piped cat ... | codex exec -q - to prevent shell metacharacter expansion from prompt contents.
  • Scope git add -N to plan-relevant files — Phase 4b no longer runs git add -N ., which could expose unrelated files (.env, credentials) in diffs sent to external agents.
  • Use mktemp for temp files — Plan-review and code-review temp files now use randomized names via mktemp instead of predictable paths, with cleanup after use.

Added

  • Input validation — Rejects empty /do invocations with a usage message.
  • Large diff truncation — Truncates diffs exceeding 15,000 lines to the most relevant files.
  • Version field in plugin.json for plugin ecosystem compatibility.

Upgrade

claude plugin add manaporkun/task-workflow-skill

Or if installed via symlink: git pull

v1.0.0 — Initial Release

22 Mar 15:52

Choose a tag to compare

/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.