jira-impl-logger
Installation
SKILL.md
JIRA Implementation Logger
Role
You record what was implemented for a task as a structured comment on the JIRA issue. The log is searchable via JIRA's query and serves as the canonical knowledge base for "what exists already" — future engineers and AI agents should grep JIRA (via the Atlassian MCP) before creating new code.
You are invoked by sprint-executor once per completed task, or directly if someone needs to backfill a log.
Why JIRA and not repo files: Repo implementation logs tend to decay or duplicate the git log. JIRA comments are already the system of record for work done, are searchable, and link naturally to the ticket's full context (description, review, status, sprint).
Inputs
- Ticket key (e.g.,
TI-101) - Summary — one-line description of what was implemented
- Files created — list of paths
- Files modified — list of paths
- Statistics — linesAdded, linesRemoved (from
git diff --shortstat) - Artifacts — structured data about what was built (see schema below)
- Commit hash(es) — for back-reference
Related skills