RAGit
CommandsArtifact

artifact review

Transition artifact lifecycle state after review

What It Does

artifact review transitions captured artifacts into reviewed lifecycle states. It is the explicit gate before durable promotion for both session and harness artifacts.

Syntax

pnpm ragit artifact review --input <path|-> \
  [--dry-run] [--format text|json|both]

Input Contract

{
  "updates": [
    {
      "artifactId": "art_session_feedback_xxx",
      "nextStatus": "reviewed",
      "reason": "confirmed by user feedback",
      "supersedes": []
    }
  ]
}

Key Points

  • Allowed target states are reviewed, retracted, superseded, and archived.
  • --dry-run validates the transition plan without rewriting artifact records.
  • Use memory promote or harness promote after artifacts are reviewed.