Skip to content
Development
Skill

/archive-workspace

Bundle a finished John workspace from Codex. Use when the user wants to archive, package, hand off, or preserve a John project, or wants the Claude command equivalent of /john:archive.

From plugin
joharnessburg
928 skills5 agents5 commands
Install
$ npx -y skills add kitchen-engineer42/joharnessburg --skill archive-workspace --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/archive-workspace

Context preview

The summary Claude sees to decide when to auto-load this skill.

Bundle a finished John workspace from Codex. Use when the user wants to archive, package, hand off, or preserve a John project, or wants the Claude command equivalent of /john:archive.

SKILL.md

archive-workspace.SKILL.md
name: archive-workspace
description: Bundle a finished John workspace from Codex. Use when the user wants to archive, package, hand off, or preserve a John project, or wants the Claude command equivalent of /john:archive.

archive-workspace

This is the Codex equivalent of Claude Code's `/john:archive` command.

Procedure

1. Parse the user's request:

  • optional label: used in the default archive filename
  • optional `--output PATH`: write to a specific zip path
  • optional `--force`: overwrite an existing archive

2. Resolve the plugin root:

  • In a Codex plugin install, this skill lives under `<plugin-root>/skills/archive-workspace/SKILL.md`.
  • The script is at `<plugin-root>/scripts/archive_workspace.py`.
  • In a source checkout, use `plugins/joharnessburg/scripts/archive_workspace.py`.

3. Run the script from the user's project directory:

python3 "<plugin-root>/scripts/archive_workspace.py" <label-if-any> <--output PATH> <--force>

4. Parse the JSON on stdout and tell the user:

  • archive path
  • file count
  • archive size

The archive includes durable John artifacts such as `PLAN.md`, `CLAUDE.md`, `AGENTS.md`, `.john/`, `.claude/skills/`, and `.agents/skills/`. It excludes git metadata, dependency folders, Python bytecode, and other local noise.

Ships withjoharnessburg

中文版: README_ZH.md John turns unstructured source material into a working knowledge-dense app. It keeps knowledge engineering and app building in one durable run, coordinates large per-entry fan-outs, and leaves auditable events and checkpoints on disk.

Get the whole plugin

Other skills on joharnessburg.