From productivity
Mark work as complete. Use when the user says "done with X", "finished X", "completed X", or checks something off. Checks off the item in the daily note and optionally logs completion.
npx claudepluginhub acjackman/claude-productivityThis skill uses the workspace's default tool permissions.
Closes the loop on a task or effort. Checks it off in the daily note and optionally logs what was accomplished.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Closes the loop on a task or effort. Checks it off in the daily note and optionally logs what was accomplished.
$ARGUMENTS describes what was completed. May be a task description, effort name, or substring match.
Find the item in today's daily note. Search in order:
## Plan — intentional work## Open — external obligations## Capture — incoming itemsUse the check_off MCP tool:
check_off({
section: "Plan", // try Plan first, then Open, then Capture
item_substring: "<search term from arguments>"
})
If no match in Plan, try Open, then Capture. If still no match, tell the user:
Couldn't find an unchecked item matching "". Want me to search other sections, or add a completion log entry anyway?
Ask about logging (brief — don't make this heavy):
Checked off: Anything worth noting about how it went? (or just "no" to skip)
If the user provides details, log via log_entry:
log_entry({
description: "Completed: <item summary>",
bullets: ["<what they said>"]
})
If the item links to an effort, ask:
This is linked to . Is the effort itself done, or just this task?
update_effort_status to doneIf the user just says /done <thing> with no elaboration, check it off and confirm in one line. Don't force a logging conversation.
✓ Checked off: "Finish rate limiting RFC draft" in ## Plan