han-release
Cut a Han release: update CHANGELOG.md with the changes since the last release, bump and tag every plugin that changed as {plugin-name}--v{version} so a…
Produces a progressive-disclosure overview of unfamiliar code or a pull request's changes with code-overview and publishes the resulting overview to a user-specified Confluence location. Use when the user wants code or a PR explained, oriented, or made sense of AND the overview
$ npx -y skills add testdouble/han --skill code-overview-to-confluence --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/code-overview-to-confluenceContext preview
The summary Claude sees to decide when to auto-load this skill.
Produces a progressive-disclosure overview of unfamiliar code or a pull request's changes with code-overview and publishes the resulting overview to a user-specified Confluence location. Use when the user wants code or a PR explained, oriented, or made sense of AND the overview
name: code-overview-to-confluence
description: >
Produces a progressive-disclosure overview of unfamiliar code or a pull request's changes with code-overview and
publishes the resulting overview to a user-specified Confluence location. Use when the user wants code or a PR
explained, oriented, or made sense of AND the overview posted to a Confluence space or page. Requires a configured
Atlassian MCP server. Does not produce the overview to a local file only — use code-overview. Does not publish an
arbitrary existing markdown file — use markdown-to-confluence. Does not document an already-understood feature to
Confluence — use project-documentation-to-confluence. Does not root-cause a bug to Confluence — use
investigate-to-confluence. Does not plan or specify a new feature to Confluence — use plan-a-feature-to-confluence.
Does not publish to Jira — use work-items-to-jira.
argument-hint:
"[size: small | medium | large] [target: file, directory, symbol, or PR reference — defaults to the current branch's
changes] [confluence location: page URL or space + parent] [--mode draft|live (default draft)]"
allowed-tools:
Read, Glob, Grep, Skill, Agent, Bash(find *), mcp__claude_ai_Atlassian__getAccessibleAtlassianResources,
Bash(bash "${CLAUDE_PLUGIN_ROOT}/scripts/han-config-dir.sh")As your first action, use the Read tool on `.han/config.md` inside the `personal config directory` path above. A read that returns no file is no personal configuration: continue silently. When that file or the `project .han/config.md` probe supplies content, apply it per [config-rule.md](../../references/config-rule.md), which governs precedence between the two files, relative-path resolution, and what to do with a file that reads but cannot be used.
This skill runs a progressive-disclosure code overview with the core `han-coding:code-overview` skill, lets the user review the resulting overview, and then publishes it to a Confluence location that **the user must specify**. It is a thin orchestrator: the overview work belongs to `han-coding:code-overview`, and the publishing work belongs to `han-atlassian:markdown-to-confluence`. This skill only validates its inputs, runs the overview to a scratch file, gets the user's review and publish choice, and hands the file to the publisher.
`han-coding:code-overview` produces a **single** scratch file (the overview: what the code does, how it flows, where to start, and — in PR mode — what changed and what to watch when reviewing). It does not produce companion artifacts, so this skill publishes that one file as a single Confluence page — the single-page sibling of `han-atlassian:investigate-to-confluence` and `han-atlassian:project-documentation-to-confluence`, not the parent-plus-children tree of `han-atlassian:plan-a-feature-to-confluence`.
The five steps below are the whole skill. It does not resolve Confluence pages or call the Confluence MCP create/update tools itself; `han-atlassian:markdown-to-confluence` owns all of that.
Confirm the skill has everything it needs before spending effort on an overview:
1. **Atlassian MCP reachable (hard requirement).** Call `mcp__claude_ai_Atlassian__getAccessibleAtlassianResources` to confirm the server is connected and retrieve the cloud ID(s). If the tool is not available, the call errors, or it returns no accessible resources (typically an authentication or configuration problem), **stop immediately**. Tell the user this skill requires the Atlassian MCP server to be installed, configured, and authenticated, and that they can re-run it once it is connected. Do not fall back to a local-only run; for a local-only overview, point them at `han-coding:code-overview`. This preflight runs first so a missing server fails before any overview work begins. 2. **A target to overview (optional).** The target may be a file, directory, symbol, or pull request reference, and an optional size (`small`, `medium`, or `large`). All of this — together with the relevant conversation context — is forwarded to `han-coding:code-overview` verbatim in Step 2. A target is not required: with none given, `han-coding:code-overview` defaults to the current branch's changes. Do not resolve or classify the target here; that is `han-coding:code-overview`'s job. 3. **A Confluence destination.** Confirm the request provides a target location: a **Confluence page URL** (to update that page, or create a child under it), or a **space** (key or name) plus an optional **parent page**. If none was provided, ask for one with `AskUserQuestion`, explaining plainly that the skill needs an exact destination because it does not search Confluence. Do not resolve the page tree here — only confirm a location was given. Carry it through to Step 5; `han-atlassian:markdown-to-confluence` resolves it.
Invoke the `han-coding:code-overview` skill with the **Skill** tool, **forwarding all provided context** verbatim: the target (file, directory, symbol, or PR reference, or none for the current branch's changes), any size the user gave, and the relevant conversation context. Do not summarize, trim, or reinterpret the user's context; pass it through so `han-coding:code-overview` runs exactly as it would on its own (target resolution, mode and size selection, parallel `han-core:codebase-explorer` exploration, synthesis, and the readability-review pass).
`han-coding:code-overview` already writes its overview to a scratch file outside the repository and changes no code — **except** add one explicit instruction: it must write the overview to an explicit scratch path this skill names (for example `${TMPDIR
Han is a suite of AI skills and agents for solo (or small-team) product engineers.
Cut a Han release: update CHANGELOG.md with the changes since the last release, bump and tag every plugin that changed as {plugin-name}--v{version} so a…
Update Han plugin documentation so every skill, agent, guidance doc, index, and cross-reference is current and accurate. On a non-default branch, scopes the…
Runs an evidence-based investigation of a bug, failure, or unexpected behavior with investigate and publishes the resulting investigation report to a…
Publishes a local Markdown file to a user-specified Confluence location, creating a new page or updating an existing one through the Atlassian MCP server. Use…
Builds a feature specification from scratch with plan-a-feature and publishes it to a user-specified Confluence location, posting the spec as a parent page and…
Creates or updates project documentation for a feature, system, or component and publishes it to a user-specified Confluence location. Use when the user wants…