| name | artifact-publisher |
| description | Publish and share artifacts to the project. Use when a user wants to save, share, or finalize generated artifacts. |
| version | 2 |
| model | sonnet |
| invoked_by | both |
| user_invocable | true |
| tools | ["Read","Write","Edit","Bash","Glob","Grep"] |
| best_practices | ["Version all artifacts","Include metadata (date, author, purpose)","Save to appropriate artifacts directory","Link related artifacts"] |
| error_handling | graceful |
| streaming | supported |
Artifact Publisher Skill
Artifact Publisher - Handles the lifecycle of artifacts, ensuring they are properly versioned, saved, and documented.
- Saving artifacts to project directories
- Versioning artifact files
- Adding metadata to artifacts
- Linking related artifacts
Step 1: Identify Artifact Type
Determine the artifact type and appropriate location:
| Type | Location | Format |
|---|
| Plan | .claude/context/plans/ | plan-{id}.md |
| Report | .claude/context/reports/ | report-{type}-{date}.md |
| Architecture | .claude/context/artifacts/ | architecture-{name}.md |
| Schema | .claude/context/artifacts/ | schema-{name}.json |
| Config | .claude/context/artifacts/ | config-{name}.yaml |
Step 2: Add Metadata
Include standard metadata in the artifact:
---
id: artifact-{timestamp}
type: plan|report|architecture|schema|config
title: Artifact Title
created: 2026-01-23T12:00:00Z
author: agent-name
workflow_id: workflow-123
status: draft|final
tags: [tag1, tag2]
---
Step 3: Save Artifact
Write the artifact to the appropriate location:
Write file_path=".claude/context/plans/plan-auth-2026-01-23.md" content="..."
Step 4: Update References
If the artifact is part of a workflow, update the workflow documentation:
## Artifacts
- Plan: `.claude/context/plans/plan-auth-2026-01-23.md`
- Architecture: `.claude/context/artifacts/architecture-auth.md`
Step 5: Notify Completion
Report the artifact location:
## Artifact Published
: Plan
:
: Final
**Publish Request**: