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…
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 when the user wants to post, publish, push, or sync a Markdown file to a Confluence space or page. Requires a configured
$ npx -y skills add testdouble/han --skill markdown-to-confluence --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/markdown-to-confluenceContext preview
The summary Claude sees to decide when to auto-load this skill.
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 when the user wants to post, publish, push, or sync a Markdown file to a Confluence space or page. Requires a configured
name: markdown-to-confluence
description: >
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 when the user wants to post, publish, push, or sync a Markdown file to a
Confluence space or page. Requires a configured Atlassian MCP server. Does not write or generate the Markdown itself —
point it at an existing file, or use project-documentation-to-confluence for the document-then-publish flow, or
plan-a-feature-to-confluence for the plan-then-publish flow. Does not publish to Jira — use work-items-to-jira.
argument-hint:
"[path to markdown file] [confluence location: page URL or space + parent] [--mode draft|live (default draft)]"
allowed-tools:
Read, Glob, Grep, Bash(find *), mcp__claude_ai_Atlassian__getAccessibleAtlassianResources,
mcp__claude_ai_Atlassian__atlassianUserInfo, mcp__claude_ai_Atlassian__getConfluenceSpaces,
mcp__claude_ai_Atlassian__getConfluencePage, mcp__claude_ai_Atlassian__getPagesInConfluenceSpace,
mcp__claude_ai_Atlassian__getConfluencePageDescendants, mcp__claude_ai_Atlassian__createConfluencePage,
mcp__claude_ai_Atlassian__updateConfluencePage,
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 takes one local Markdown file and publishes it to a Confluence location that **the user must specify** — creating a new page or updating an existing one through the Atlassian MCP server. It owns everything about the posting itself: the MCP preflight, resolving the destination, reading the file, the create-or-update call, and reporting the result. It does not write the Markdown; the caller supplies an existing file.
Callers that supply an explicit publish mode and location (for example `han-atlassian:project-documentation-to-confluence`) run this skill straight through without re-asking. Invoked on its own with pieces missing, it asks for them and defaults to a safe unpublished draft.
This skill cannot run without a configured and connected Atlassian MCP server.
Confirm the server is reachable by calling `mcp__claude_ai_Atlassian__getAccessibleAtlassianResources` to 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 the skill once it is connected.
If more than one cloud / site is accessible, note which sites are available; you will confirm the correct one while resolving the location in Step 2.
Resolve the Markdown file path from the arguments or conversation. Read it and confirm it exists and has content. If no file path was provided, or the path does not resolve to a readable file, ask the user for the path with `AskUserQuestion` and do not proceed without one. This is the exact content that will be posted; do not rewrite, summarize, or restructure it.
A body may legitimately contain embedded Confluence storage macros mixed into the Markdown — for example, an orchestrating skill such as `han-atlassian:plan-a-feature-to-confluence` rewrites its cross-page links into title-based page-link macros (the `<ac:link><ri:page ri:content-title="..."/>…</ac:link>` form, link body included) before handing the file over. Post these verbatim along with the rest of the body; do not strip or escape them.
**This skill does not search Confluence for the right place.** A typical Confluence instance is large and full of duplicate or similarly-named pages, so guessing the destination is unreliable. The user must name the exact location.
1. **Find a location in the request.** Check the arguments and conversation for either of:
2. **If no location was provided, ask for one.** Use `AskUserQuestion` to request it, and explain plainly that the skill needs an exact destination because it does not search Confluence. Offer both accepted forms (a page URL, or a space plus parent page). This is required: do not proceed without a location. 3. **Resolve the location concretely now, so failures surface early.** Use the cloud ID from Step 0 for every call.
`mcp__claude_ai_Atlassian__getConfluencePage` to confirm it exists and to read its space and title. Then determine the intent: **update that page**, or **create a new child page under it**. If the user did not already say, ask with `AskUserQuestion`.
key or name. If a parent page was named, find it with `mcp__claude_ai_Atlassian__getPagesInConfluenceSpace` or `mcp__claude_ai_Atlassian__getConfluencePageDescendants` (or by page ID/URL) to get the parent page ID. With no
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…
Produces a progressive-disclosure overview of unfamiliar code or a pull request's changes with code-overview and publishes the resulting overview to a…
Runs an evidence-based investigation of a bug, failure, or unexpected behavior with investigate and publishes the resulting investigation report to a…
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…