From atlassian-suite
This skill should be used when the user asks to "show commit", "what changed in commit X", "commit details", "show me commit Y", or runs `/atlassian-suite:commit-show`. Pulls a commit's metadata, diff, diffstat, and CI/build statuses.
npx claudepluginhub acendas/acendas-marketplace --plugin atlassian-suiteThis skill is limited to using the following tools:
`$1` = Repo slug.
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.
$1 = Repo slug.
$2 = Commit SHA (full or short).
Fetch in parallel:
get_commit — author, date, message, parentsget_commit_diffstat — files changed + line countslist_commit_statuses — CI build statuseslist_commit_comments — discussion (limit 10)Render:
commit {sha}
{author} <{email}> {date}
{message}
Files: {n} (+{added}/-{deleted})
{file1}: +{a}/-{d}
...
Build statuses:
{state} {key} {name} {url}
...
If user wants the full diff, call get_commit_diff — warn if large (>1000 lines) before printing.