RAGit
명령어Artifact

artifact review

검토 후 artifact lifecycle 상태를 전이합니다

무엇을 하는 명령인가

artifact review는 captured artifact를 reviewed 계열 상태로 전이합니다. session artifact와 harness artifact 모두 durable promotion 전에 이 명시적 검토 단계를 거칩니다.

기본 구문

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

입력 계약

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

핵심 포인트

  • 허용되는 target state는 reviewed, retracted, superseded, archived입니다.
  • --dry-run은 artifact record를 다시 쓰지 않고 전이 계획만 검증합니다.
  • reviewed 이후에는 memory promote 또는 harness promote로 이어갑니다.