Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Repomix Unmixer

Reverses repomix packing by extracting XML/Markdown/JSON bundles back into their original files and folders.

UtilitiesBeginner1,323212AI score 8/10Last updated: Aug 8, 2026

What it does

  • Parses repomix output files (XML, Markdown, or JSON) and writes each packed file back to disk.
  • Recreates the full directory tree automatically and reports per-file progress plus a final count.
  • Enforces safe habits: always extract to a temp directory, review, then move to the final location.
  • Includes troubleshooting for zero extractions, permission errors, encoding glitches, and path collisions.

Who it's for

  • Developers who regularly use repomix to feed whole repos to an LLM.
  • Anyone who received a repomix bundle and needs the real files back.
  • People reviewing shared Claude skill packs before installing them into ~/.claude/skills.

Examples

  1. Unpack a shared skills.xml into /tmp/unmixed-skills, inspect it, then copy the good skills over.
  2. Restore a repo-output.xml backup into a working directory to rebuild a project.
  3. Extract a packed repo to temp and run tree to audit its structure quickly.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/repomix-unmixer/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the repomix-unmixer folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/repomix-unmixer/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs && mkdir -p ~/.claude/skills && cp -r /tmp/ccs/repomix-unmixer ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and confirm Python 3 is available: python3 --version.
  2. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/ccs/repomix-unmixer ~/.claude/skills/
  5. Restart Claude Code and ask something like "unmix this repomix file" to trigger the skill.
  6. For your first run, extract to /tmp/..., verify the file count and structure, then move the results where you want them.