← Back to list
name: artifacts
description: Create and manage repo-local work artifacts for a user “task request” by generating
0) Bootstrap the required environment under

artifacts
by hyophyop
Codex CLI skill: plan/todo/walkthrough artifacts + repo-local ChromaDB recall
⭐ 0🍴 0📅 Jan 8, 2026
SKILL.md
name: artifacts
description: Create and manage repo-local work artifacts for a user “task request” by generating .artifacts/artifacts/{request_id}/ with plan.md, todo.md, and walkthrough.md, then indexing completed work into ChromaDB stored at .artifacts/chroma_db/ for 7-day recall. Use when the user wants (1) a tracked/confirm-before-execute workflow, (2) a minimal final answer that links to a walkthrough, or (3) to ask “what did we do before with the artifacts skill?” and you should answer by querying the ChromaDB artifacts index.
Artifacts
Workflow
Goal: leave a durable, linkable trace of work in .artifacts/artifacts/{request_id}/, and answer future questions by querying the .artifacts/ ChromaDB index (retained for 7 days).
0) Bootstrap the required environment under .artifacts/ (always)
- Create
.artifacts/.venv/and installchromadbthere:python3 "$CODEX_HOME/skills/artifacts/scripts/artifacts_bootstrap_env.py"
- After bootstrap, run all other commands using
.artifacts/.venv/bin/python(required).
1) Initialize artifacts (always)
- Run the initializer script (from repo root or anywhere inside the repo):
.artifacts/.venv/bin/python "$CODEX_HOME/skills/artifacts/scripts/artifacts_init.py" --request "<user request>"
- The script prints paths for:
.artifacts/artifacts/{request_id}/plan.md.artifacts/artifacts/{request_id}/todo.md.artifacts/artifacts/{request_id}/walkthrough.md
- Reply to the user with:
- The
plan.md+todo.mdpaths - A single confirmation question: “이대로 진행할까?”
- The
- Do not start implementation until the user explicitly confirms.
2) Execute work (after user confirmation)
- Update
.artifacts/artifacts/{request_id}/todo.mdby checking items as they complete. - Do the requested work in the repo (code changes / analysis / commands).
- Write
.artifacts/artifacts/{request_id}/walkthrough.mdas the detailed record (plan snapshot, steps, commands, files, validation). Ensure it is sufficient for a reviewer to reconstruct the work without the chat.
3) Index + retention (end of task)
- Run indexing (this also prunes anything older than 7 days, both index + folders):
.artifacts/.venv/bin/python "$CODEX_HOME/skills/artifacts/scripts/artifacts_index.py"
- The index is stored at
.artifacts/chroma_db/(repo-local, derived). - If
.artifacts/chroma_db/is missing or chromadb is not installed, initialize by running the indexer once with a Python environment located under.artifacts/(required).
4) Answering “what did we do before?” (query mode)
- Query the artifacts index:
.artifacts/.venv/bin/python "$CODEX_HOME/skills/artifacts/scripts/artifacts_query.py" "<question>"
- Use the returned results as the basis for your answer.
- In your reply, include the
todo.md+walkthrough.mdpaths for the most relevant result(s).
Output rules (important)
When responding after work is done, keep the answer minimal:
- Include clickable paths to:
.artifacts/artifacts/{request_id}/todo.md.artifacts/artifacts/{request_id}/walkthrough.md
- Keep prose to 1–3 short sentences: what instruction you received + what you did.
- Do not paste the walkthrough into the chat; the walkthrough is the source of detail.
Reference
- File format + retention details:
references/artifacts_format.md
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon