skills/archive-artifacts/SKILL.md
Reports archive candidates and safely archives closed slices, including feature/subfeature scoped summarize-and-archive flows.
npx skillsauth add sirius-cc-wu/sirius-skills archive-artifactsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when a maintainer needs an explicit archival step that preserves durable history without broad cleanup side effects.
system-design.md
before archiving them.--artifact-type slice --artifact-id <id> --apply for one closed-slice archival--artifact-type feature --artifact-id <feature-slug> --apply to summarize
and archive all closed planned slices for one feature--artifact-type subfeature --artifact-id <subfeature-id-or-path> --apply to
summarize and archive all closed planned slices for one subfeature# Report archive candidates
python3 skills/archive-artifacts/scripts/archive_artifacts.py
# Filter to one artifact type
python3 skills/archive-artifacts/scripts/archive_artifacts.py --artifact-type proposal
# Archive one closed slice
python3 skills/archive-artifacts/scripts/archive_artifacts.py \
--artifact-type slice \
--artifact-id rpt-artifact-state-report \
--apply
# Summarize and archive closed slices for one feature
python3 skills/archive-artifacts/scripts/archive_artifacts.py \
--artifact-type feature \
--artifact-id execution-workflow \
--apply
# Summarize and archive closed slices for one subfeature
python3 skills/archive-artifacts/scripts/archive_artifacts.py \
--artifact-type subfeature \
--artifact-id audit-artifacts \
--apply
# Optional: preserve existing structural class/component diagrams too
python3 skills/archive-artifacts/scripts/archive_artifacts.py \
--artifact-type subfeature \
--artifact-id audit-artifacts \
--apply \
--include-structural-diagrams
# Emit machine-readable output
python3 skills/archive-artifacts/scripts/archive_artifacts.py --json
--json: structured candidates and optional apply outcomeExit behavior:
0 when the archive command succeeds2 for unsupported or invalid apply requestssystem-design.md before archiving the targeted closed slices.system-design.md; do not synthesize new diagrams during archive.system-design.md; do
not rely on source or archive path bullets to explain the result.guide-planning/add-subfeature unless the
user explicitly asked to archive anyway.tools
Create or resume a dedicated git worktree for one feature or subfeature, drive `ship` inside that worktree, and hand the finished branch back as a pull request to the original branch.
testing
Reviews one completed feature or subfeature against final implementation and slice artifacts, then records a durable reconciliation block before archive.
development
Tightens durable repo-level rules in AGENTS.md and adjacent governance surfaces when repeated drift reveals a policy gap.
data-ai
Resolves one reviewed feature or subfeature backlog into remaining planned slices and routes each active slice to the next owning execution step with one commit per completed slice.