Skip to main content

Artifact

A completed deliverable — document, dataset, build, diagram, URL, runbook, slide deck, or any other produced output. A catalogue record, not a work-tracking entity.

ID prefixART
State machinenone
MCP serverartifact-management
Skillartifact-management (Layer 2)

Two usage patterns

Self-hosted — the content lives in the entity file's Markdown body. location is omitted or used as an optional secondary pointer.

Pointer — the content lives externally (Figma, Google Drive, S3, a git path). location is required; the body may be empty or contain a summary.

Fields

Required

FieldTypeDescription
namestringHuman-readable name
kindenumdocument · design · dataset · build · slides · video · spec · diagram · url · other

Optional

FieldTypeDescription
locationstringPath, URL, repo ref, or storage identifier
formatstringFile format or MIME type (pdf, png, application/json, …)
versionstringVersion identifier
checksumstringHash for integrity verification
ownerACTOR-*Actor responsible for this artifact
produced_bystringEntity that produced it (workitem, process, decision ID)
produced_atdatetimeWhen the artifact was produced
tagsstring[]Freeform tags for retrieval

Examples

Self-hosted (document body in the file)

---
apiVersion: processkit.projectious.work/v1
kind: Artifact
metadata:
id: ART-20260411_0903-BrightVale-deploy-runbook
created: '2026-04-11T09:03:00Z'
spec:
name: Deploy Runbook — v0.12.0
kind: document
tags: [runbook, deploy, v0.12.0]
produced_at: '2026-04-11T09:03:00Z'
---

## Steps

1. Run smoke tests: `uv run scripts/smoke-test-servers.py`
2. Stamp provenance: `bash scripts/stamp-provenance.sh vX.Y.Z`
...

Pointer (external file)

---
apiVersion: processkit.projectious.work/v1
kind: Artifact
metadata:
id: ART-20260411_0904-NeatDawn-brand-design-system
created: '2026-04-11T09:04:00Z'
spec:
name: Brand Design System
kind: design
location: https://www.figma.com/file/abc123/brand-design-system
format: figma
owner: ACTOR-design-team
tags: [brand, design-system]
---

Notes

  • Artifact has no state machine — it is a catalogue record, not a work-tracking entity. Use WorkItem to track the work that produces it.
  • query_artifacts supports filtering by kind, tags, and title substring.
  • For long-lived reference documents that agents should read, prefer the context-management skill; for point-in-time deliverables, use Artifact.