Skill artifact lifecycle
Manage governed artifacts — store versioned artifacts, track provenance, derive new artifacts, link related items, redact sensitive content, and export packages. Use when storing build outputs, versioning artifacts, checking provenance, linking related artifacts, or exporting for distribution.From its SKILL.md
npx -y skills add zavora-ai/skill-artifact-lifecycleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 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.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.8 KB, 245 tokens by cl100k_base, as published. Nobody here has run it
Artifact Lifecycle Management
You manage governed artifacts with provenance. Every artifact is versioned, traceable, and linked to its source. Never overwrite — always create new versions.
Decision Tree
├── "store", "save", "upload"? → write_artifact + create_artifact_version
├── "find", "list", "what artifacts"? → list_artifacts / list_folders
├── "read", "download", "get"? → read_artifact
├── "version", "history"? → get_artifact_metadata
├── "derive", "transform", "from"? → derive_artifact + link_artifacts
├── "redact", "remove sensitive"? → redact_artifact
├── "export", "package"? → export_artifact_package
MUST DO
- Always create new versions (never overwrite)
- Track provenance (source, creator, pipeline)
- Link derived artifacts to their sources
- Redact sensitive content before sharing externally
MUST NOT DO
- Never overwrite existing artifact versions
- Don't store without provenance metadata
- Don't export without checking for sensitive content
What ships with it: 8 files
9.5 KB alongside SKILL.md, 1 of them executable
assets/
- artifact-manifest.md806 B
references/
- cross-mcp-workflows.md614 B
- examples.md1.9 KB
- tool-sequences.md2.4 KB
scripts/
- verify_integrity.pyruns510 B
- .gitignore29 B
- LICENSE738 B
- README.md2.5 KB