.claude/skills/commit-staged/SKILL.md
Commit currently staged changes with a conventional commit message
npx skillsauth add timtoronto634/timtoronto634.github.io commit-stagedInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Commit the currently staged changes following these steps:
main or master, create a new branch with a descriptive name based on the staged changes (e.g., feat/add-login-page) and switch to it before committinggit status to see staged changesgit diff --cached to review what will be committedgit log --oneline -5 to see recent commit message stylefeat:, fix:, docs:, build:, chore:)Co-Authored-By: Claude Opus 4.6 <[email protected]>git status to confirm the commit succeededtools
Merge a GitHub pull request by number using squash merge
testing
Create a GitHub pull request from the current branch with a summary and test plan
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------