artifact-lifecyclelisted
Install: claude install-skill zavora-ai/skill-artifact-lifecycle
# 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