Add grooming-report skill to backlog-curator - #5
Open
spetrosi wants to merge 1 commit into
Open
Conversation
Grooming touches many tickets across a session, but the backlog-curator agent had no way to record what it did. This adds a durable audit trail and a per-session report so grooming is reviewable by the team. - New skill module/skills/grooming-report with: - SKILL.md: append-only JSONL audit-log format and workflow - generate-md-report.sh: renders the log to grouped-by-session Markdown - Wire grooming-report into the @backlog-curator agent (skills list + behavior note to log actions and regenerate the report) - Document the skill in the README roster and skills table Audit files live in the gitignored local/ directory alongside the user's jira-workflow.md config. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
spetrosi
force-pushed
the
improve/grooming-report
branch
from
August 13, 2026 16:06
96485bb to
9fa44fd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a grooming-report skill that gives the
@backlog-curatoragent a durable, reviewable record of each grooming session.Grooming touches many tickets across a session, but the agent currently has no way to record what it did. This skill maintains an append-only JSONL audit trail and renders it into a per-session Markdown report — so the team can answer "what changed, and when?" and review automated actions after the fact.
This has been in real-world use in a downstream (RHEL System Roles) deployment of these agents; this PR contributes the capability back in a project-agnostic form.
Changes
module/skills/grooming-report/:SKILL.md— append-only audit-log format, per-action field conventions, and the session workflow (start marker → log actions → generate report → report to PO). Readslocal/jira-workflow.mdlike the other skills.generate-md-report.sh— renders the log to Markdown grouped by session (requiresjq).@backlog-curator— added to theskills:list plus a behavior note to log actions and regenerate the report during grooming.Audit files (
grooming_log.jsonl,grooming_report.md) are written to the gitignoredlocal/directory, alongside the user'sjira-workflow.md.Testing
Ran
generate-md-report.shagainst a sample log coveringsession_start,updated,postponed_for_team_review,created_epic, and a summary-only line — all render correctly and grouped by session.🤖 Generated with Claude Code