Help us improve
Share bugs, ideas, or general feedback.
From work-summary
This skill should be used when the user asks to "generate a technical summary", "create a developer summary", "summarize the architecture changes", "list modified files by category", or needs a developer-oriented summary of code changes with file categories, commits, and architecture notes. Can be used standalone or as part of the work-summary workflow.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-3 --plugin oraseslabs-orases-claude-code-marketplaceHow this skill is triggered — by the user, by Claude, or both
Slash command
/work-summary:technical-summary-generatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate a technical summary from git branch changes. This summary targets developers and
Synthesizes code diffs into semantic HTML summaries for PRs, release notes, or change overviews. Invoked via /summary with optional staged or branch argument.
Reads a PR or branch diff and produces a structured YAML change brief for downstream analytics instrumentation. First step in the analytics review workflow.
Generates concise branch summaries for PR descriptions by analyzing git diffs and commit history.
Share bugs, ideas, or general feedback.
Generate a technical summary from git branch changes. This summary targets developers and maintainers — architecture decisions, file categories, commit history, and code quality notes.
This skill requires:
When invoked from the work-summary:work-summary-generator skill, these are provided from
earlier steps. When used standalone, gather them first.
Check for template overrides in settings. If a technical_summary_template path is defined
in the work-summary settings file (.claude/work-summary.local.md, .claude/work-summary.md,
or ~/.claude/work-summary.md), load that template instead of the built-in default.
For file categorization patterns, check the file_categories setting. If not defined, load
defaults from ${CLAUDE_PLUGIN_ROOT}/skills/technical-summary-generator/references/file-categories.md.
If not already available from an earlier workflow step:
git log and git diff commands to gather commit messages, modified files, and statisticsSort modified files into categories based on the configured patterns. Files not matching any pattern are grouped under "Other". For each category, calculate:
Produce these sections (omit any that do not apply):
Refer to the template at ${CLAUDE_PLUGIN_ROOT}/skills/technical-summary-generator/templates/technical-summary-template.md
for the complete Markdown structure. If a template override is configured in settings, use
that instead.
${CLAUDE_PLUGIN_ROOT}/skills/technical-summary-generator/templates/technical-summary-template.md - Default Markdown structure for the technical summary${CLAUDE_PLUGIN_ROOT}/skills/technical-summary-generator/references/file-categories.md - Default file categorization patterns and custom category examples