summarize-issue

summarize-issue is a skill for Claude Code, Codex from encoreshao/encore-skills. It costs 35 tokens per session (663 once invoked), scanned A, original, MIT.

A procedure for writing a high-level summary of completed work and posting it as a comment on a GitLab issue. It is intended for use after the issue has been fixed and a merge request has been created.

In plain words
What is it for?
Use it to collect GitLab issue and merge-request details, review the relevant commits, describe what shipped, and post the completed-work summary to the issue.
Why use it?
It gives future readers the outcome without requiring them to read the entire code change or discussion. It also bases the summary on the actual issue, merge request, and commits rather than memory or the original plan.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to collect GitLab issue and merge-request details, review the relevant commits, describe what shipped, and post the completed-work summary to the issue.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/encoreshao/encore-skills/summarize-issue
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add encoreshao/encore-skills --skill summarize-issue
Clone the repo
git clone --depth 1 https://github.com/encoreshao/encore-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for summarize-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/encoreshao/encore-skills/summarize-issue/github.svg)](https://agentmods.dev/skills/encoreshao/encore-skills/summarize-issue)
Your own site
<a href="https://agentmods.dev/skills/encoreshao/encore-skills/summarize-issue"><img src="https://agentmods.dev/badge/skills/encoreshao/encore-skills/summarize-issue/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for summarize-issue

Your own site · 80×15
<a href="https://agentmods.dev/skills/encoreshao/encore-skills/summarize-issue"><img src="https://agentmods.dev/badge/skills/encoreshao/encore-skills/summarize-issue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 663 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.00663
Opus 5 $0.00017 $0.00331
Sonnet 5 $0.00007 $0.00133
Haiku 4.5 $0.00003 $0.00066

Measured 10d ago against content hash 6314366b153a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

summarize-issue scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/summarize-issue/SKILL.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Summarize Issue

Use when the user asks to summarize completed work and post it to the issue — e.g. "summarize this and post it to the issue", "add a summary comment to #42". Typically comes right after create-mr, once the issue is fixed and the MR exists (open or merged).

This is not the one-line "Fixed in !123" note create-mr already posts. This is a fuller, high-level recap for anyone landing on the issue later — reporter, reviewer, or future-you — who wants to know what happened without reading the diff or the whole comment thread.

Gather context

Don't summarize from memory alone — pull the actual issue, MR, and commits so the summary reflects what shipped, not what was planned.

GITLAB="$HOME/.claude/skills/gitlab-config/scripts/gitlab_api.py"

python $GITLAB sync-issue <project> <issue_iid>       # issue body + existing notes
python $GITLAB get-mr <project> <mr_iid>              # MR title, description, state
git log origin/<base>..<branch> --oneline             # commits that make up the fix

If the MR is already merged, note that. If it's still open, say so instead of implying it's done.

Write the summary

High-level only — this is a recap, not a diff. No file-by-file listings, no line-count stats. Markdown, always:

## Summary

<2-3 sentences: what was wrong and what changed, in plain language.>

## Root cause

<1-2 sentences — only if non-obvious. Skip this section if the fix was straightforward.>

## Changes

- <what changed, one bullet per logical change — not per file>
- <...>

## Verified

- <what confirms this is actually fixed — test added, manually reproduced and checked, etc.>

## MR

!<mr-number> — <merged / open, awaiting review>

Omit any section that has nothing to say — don't pad it out. Keep the whole thing skimmable in under 30 seconds.

Post the comment

# Default — API script (works across configured instances)
GITLAB="$HOME/.claude/skills/gitlab-config/scripts/gitlab_api.py"
python $GITLAB post-issue-comment <project> <issue_iid> "$SUMMARY"

# Fallback — glab
glab issue note <issue_number> --message "$SUMMARY"

Read the full file on GitHub · 73 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 73 lines · 35 tokens per session scan A 6314366b153a

Subscribe to this mod's changes

summarize-issue is a skill published in the GitHub repository encoreshao/encore-skills (2 stars, last pushed 21d ago), licensed MIT. It adds 35 tokens to every session and 663 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, splitting uncommitted work in a messy working tree into clean atomic commits, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple…

addyosmani/agent-skills · 89 tokens

chinese-commit-conventions

A Chinese-language guide to Conventional Commits, a format for writing consistent Git commit messages, plus related changelog, commit-checking, and commit-helper configuration.

jnMetaCode/superpowers-zh · 65 tokens

awesome-git-history-rebuild

Erases a repository's git history and rebuilds it as a curated commit series over the same tree: an approved split plan (proposed here or supplied by awesome-git-commit-plan), the repo's own commit rules and hooks, paced timestamps, signed commits, a verified mirror backup, a confirmation gate before every…

khasky/awesome-agent-skills · 150 tokens

awesome-git-author-rewrite

Rewrites the author and committer identity on a commit — or on every commit carrying a wrong identity — and force-pushes it safely: ownership and write-access checks, a verified mirror backup, a counted hash blast radius, and a confirmation gate before anything irreversible. Takes a commit URL plus the replacement…

khasky/awesome-agent-skills · 134 tokens

awesome-git-commit-plan

Turns a codebase into a commit plan: a navigation map of its modules and their dependency direction, then a split where every commit builds and tests on its own, so the series is bisectable end to end. Each commit is verified by replaying the ladder in a scratch clone against the repo's own gates. Output is one plan…

khasky/awesome-agent-skills · 144 tokens

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, or when you need to organize work across multiple parallel streams.

borhen68/SkillEngine · 40 tokens