Archive capture
Create a new archive document. Use when archiving a note, saving content to the archive, or capturing new information.From its SKILL.md
npx -y skills add m4tice/the-archive --skill archive-captureAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.8 KB, 446 tokens by cl100k_base, as published. Nobody here has run it
Archive Capture
Purpose
Create a new archive document in the appropriate category directory within /archive.
ID System (5-digit format: XNNNN)
| Prefix | Category | Directory | Range |
|---|---|---|---|
| 1 | Policy | /archive/design | 10001–10999 |
| 2 | Projects | /archive/projects | 20001–20999 |
| 3 | Academic | /archive/academic | 30001–30999 |
| 4 | Technical | /archive/technical | 40001–40999 |
| 5 | Personal Interests | /archive/personal-interests | 50001–50999 |
| 6–9 | Reserved | N/A | future use |
Procedure
- Determine category — policy, projects, academic, technical, or personal-interests.
- Generate document title from the content.
- Generate URL-safe slug from the title.
- Assign ID based on category prefix and next available sequential number within that category (e.g., 10001, 20001, 40001, 50001).
- Create filename using pattern
slug.md(no date prefix; preserve original slug when archiving). - Insert metadata header in fixed order at the top of the document using bold inline fields:
**ID:** <XNNNN> **Title:** <title> **Author:** <author> **Date:** <YYYY-MM-DD> **Tags:** <tag1>, <tag2> --- - Save to category directory:
/archive/<category>/slug.md
Constraints
- ID must match the 5-digit format (XNNNN) corresponding to the category.
- Document must be saved in the correct category directory.
- Metadata header is mandatory and must appear first in fixed order.
- Preserve original filenames (slug) when archiving; do not prepend date.
- Document must be valid Markdown.
- Directory
/archive/assetsis reserved for binary assets only.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.