
Artifact Release Packager
- 41 installs
- 1 repo stars
- Updated July 31, 2026
- jurgendn/agent-skills
Helps with ai & agent building tasks.
About
artifact-release-packager is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- artifact-release-packager
- AI & Agent Building
- AI-coding skill
Artifact Release Packager by the numbers
- 41 all-time installs (skills.sh)
- Ranked #8,148 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jurgendn/agent-skills --skill artifact-release-packagerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 41 |
|---|---|
| repo stars | ★ 1 |
| Last updated | July 31, 2026 |
| Repository | jurgendn/agent-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
Artifact Release Packager
A paper artifact is not just a GitHub repository. It is the set of materials that lets another researcher understand, run, and trust the work at the level the paper claims.
Use this when
- The user is preparing a code, data, model, or checkpoint release.
- The user needs artifact evaluation instructions.
- The paper's tables or figures need reproduction commands.
- The user wants to know what files, configs, or documentation are missing before release.
- The release may include sensitive, licensed, large, or non-redistributable assets.
Do not use this when
- The user wants to verify an existing result end-to-end. Use
reproducibility-audit. - The user wants to structure, document, or simplify the codebase before release. Use
research-codebase.
Workflow
1. Define the release promise
State what the artifact is supposed to support:
- reproduce main results exactly
- reproduce trends approximately
- run a small smoke test
- inspect trained models or outputs
- reuse a dataset/preprocessing pipeline
- support artifact evaluation within a time budget
The package should not promise more than it can deliver.
2. Map paper claims to artifacts
For each major result, identify:
- paper location: table, figure, or claim
- required code entry point
- config file
- data dependency
- model/checkpoint dependency
- expected output
- expected runtime/hardware
- known variance or nondeterminism
If a result cannot be mapped, mark it as a release gap.
3. Build the release inventory
Check for:
- README with quickstart and reproduction map
- environment file or install instructions
- pinned dependency versions where needed
- data download or access instructions
- preprocessing scripts
- training/evaluation scripts
- configs for reported runs
- checkpoints or instructions for obtaining them
- expected outputs or checksums
- license files
- citation file if relevant
- privacy or redistribution notes
4. Design the reviewer path
Artifact reviewers and future readers need a short path first:
1. install environment 2. run smoke test 3. reproduce one small result 4. reproduce or inspect main result 5. understand full-run cost
Do not make the first successful run require the full expensive experiment.
5. Check release safety
Flag:
- secrets or credentials
- private paths or usernames
- non-redistributable datasets
- model licenses that restrict release
- personally identifiable information
- large files better hosted elsewhere
- generated files that should not be committed
Output format
# Artifact Release Plan
## Release promise
## Claim-to-artifact map
| Paper claim/result | Required artifact | Command/config | Expected output | Status |
|---|---|---|---|---|
## Required package contents
## Smoke test path
## Full reproduction path
## Safety/licensing concerns
## Missing pieces
## Release README outlineQuality bar
A good artifact package lets a skeptical researcher quickly answer: what does this release support, how do I run it, what should I expect, and where are the limits?
{
"skill_name": "artifact-release-packager",
"evals": [
{
"id": 1,
"prompt": "We're releasing code for a paper with Table 1 main results, Figure 2 scaling curves, and a trained checkpoint. The dataset license prevents redistribution. Plan the artifact package and what the README must explain.",
"expected_output": "An artifact release plan with release promise, claim-to-artifact map, required contents, smoke test, full reproduction path, and licensing concerns.",
"files": []
},
{
"id": 2,
"prompt": "Our repo has train.py, eval.py, configs, and notebooks, but no expected outputs or smoke test. What do we need before artifact evaluation?",
"expected_output": "A packaging audit that identifies missing smoke tests, expected outputs, reproduction mapping, and reviewer path.",
"files": []
},
{
"id": 3,
"prompt": "I want to release model checkpoints and generated samples for a paper. Help me check safety, licensing, and how to map them to paper claims.",
"expected_output": "A release plan that includes safety/licensing checks and maps artifacts to paper claims.",
"files": []
}
]
}