AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Custom Workflow Implement

skill-assertchris-claude-skills-custom-workflow-implement · by assertchris

Run phased implementation from the current branch's feature doc. Works through each phase in a sub-agent, verifying completion between phases.

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-assertchris-claude-skills-custom-workflow-implement

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-assertchris-claude-skills-custom-workflow-implement)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
25d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Custom Workflow Implement? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Implement

Parameters (from ARGUMENTS)

| Key | Purpose | Default | |---|---|---| | doc-path: | Explicit path to the plan doc (skips feature doc discovery) | — | | impl-context: | Extra context prepended to each sub-agent implementation prompt | — | | pre-commit: | Shell commands to run before committing (newline or semicolon separated) | npm run check | | completion-via: | How to check phase completion: progress (Progress section in doc) or git-log (commit message starts with Phase N:) | progress |

Step 1: Resolve the plan doc path

Check $ARGUMENTS for a doc-path: key.

  • If doc-path: is present: use it directly. Skip feature doc discovery.
  • If doc-path: is absent:
  1. Run git branch --show-current to get the branch name.
  2. Find the feature doc in features/ whose filename starts with the branch number.

If on main and no doc-path: was given, warn the user and stop — implementation should run on a feature branch.

Step 2: Resolve parameters

  • impl-context: — extract from ARGUMENTS, or use empty string.
  • pre-commit: — extract from ARGUMENTS, or default to npm run check.
  • completion-via: — extract from ARGUMENTS, or default to progress.

Step 3: Find incomplete phases

Read the plan doc. It contains phases as headings (e.g. ### Phase 1 — Title or ### Phase 1: Title).

Determine which phases are already complete based on completion-via::

  • progress: The Progress section at the bottom of the doc tracks Completed / In Progress / To Do. Any phase listed under "Completed" is done — skip it.
  • git-log: Run git log --oneline. Any commit whose message starts with Phase N: means that phase is complete — skip it.

Step 4: Implement each incomplete phase

For each incomplete phase, in order:

  1. Launch a sub-agent (using the Agent tool) with the following prompt:

"[impl-context, if any]

You are implementing a single phase of a feature. Here is what to do:

Phase: [phase number and title from the plan doc]

Instructions:

  • Read CLAUDE.md for pre-commit checks, code style rules, and testing conventions
  • Read the plan doc at [path] for full context on this phase
  • Implement ONLY this phase
  • Run the following pre-commit checks and fix any issues: [pre-commit commands]
  • [If completion-via is 'progress':] Update the plan doc's Progress section: move this phase from To Do/In Progress to Completed
  • Commit all changes with a message starting with 'Phase N: ' (e.g. 'Phase 1: Add Question types and extend PlanState')

Do NOT work on any other phase. Stop after committing."

  1. After the sub-agent finishes, verify completion based on completion-via::
  • progress: Re-read the plan doc's Progress section. Confirm this phase now appears under "Completed".
  • git-log: Run git log --oneline -5. Confirm the most recent commit starts with Phase N: for this phase.
  • If verification fails, tell the user which phase failed and stop — do not continue.
  1. Move to the next incomplete phase.

When all phases are done, tell the user: "All phases complete."

If every phase is already complete, report "All phases already complete."

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.