From creation-daemon
Apply feedback or a small change to a cd:in-progress or cd:in-review ticket's branch — commit, push, write an adjustment artifact
How this skill is triggered — by the user, by Claude, or both
Slash command
/creation-daemon:cd-adjustThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Apply this adjustment: $ARGUMENTS
Apply this adjustment: $ARGUMENTS
The argument format is <issue-number> <feedback text> — the first whitespace-separated token is the issue number, the rest is the feedback.
Parse arguments. Split $ARGUMENTS into <issue-number> and <feedback>.
Load context. Call cd_get_ticket with the parsed issue number. Read the refinement artifact and any prior adjustments.
Check out the ticket branch. Discover the branch name via Bash rather than re-deriving the slug (the title may have changed since implementation):
git branch --list "cd/<issue-number>-*" --format="%(refname:short)" | head -n1
Check out the result. If the command returns empty, the ticket has no implementation branch yet — stop and tell the user.
Make the change. Apply the feedback. Keep edits minimal and focused.
Commit. Run via Bash:
git commit -am "[cd#<issue-number>] adjust: <short summary of feedback>"
Push. Run git push via Bash. This updates the open PR.
Write the adjustment artifact. Call cd_write_artifact with:
issue_number: the parsed issue number
type: adjustment
content:
# Adjustment for #<n>
## Requested change
<feedback verbatim>
## What changed
<files and summary>
## Rationale
<why this approach>
/cd-adjust leaves the ticket in whatever state it was in.npx claudepluginhub rainbowrider5/creation-daemon --plugin creation-daemonCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.