당신의 파일을 AI 에이전트를 위한 메모리 파일시스템으로 만들기
로컬 파일들을 스캔해서 AI 에이전트가 활용할 수 있는 구조화된 메모리 시스템을 구축하는 도구입니다.
동작 방식
에이전트가 여러 위치의 파일들을 수집합니다:
Source traces:
├── ~/.codex/sessions/
├── ~/.claude/sessions/
├── ...
├── ~/Downloads/
└── ~/Projects/
수집한 정보를 계층적으로 정리된 사용자 컨텍스트로 변환합니다:
~/.codex/user_context/
└── 2026_agentic_rag_memory_systems/
├── year.md
└── 2026-Q2_prompt_programs_context_retrieval/
├── quarter.md
└── 2026-04_bootstrap_and_consolidation/
├── month.md
└── 2026-04-13_hierarchical_memory_rewrite.md
마지막으로 ~/.codex/AGENTS.md 파일에 힌트를 추가해서, 에이전트가 필요할 때 이 정보에 접근할 수 있도록 합니다:
<user_context>
Additional user-specific context may live in `~/.codex/user_context/`...
</user_context>
활용 예시
질문:
What have I been working on in the past 3 months?
ls ~/.codex/user_context/2026_.../
답변:
You have been converging on agentic infrastructure: memory systems, context retrieval, and public-facing artifacts.
설정하기
다음 명령어로 초기화합니다:
codex exec --dangerously-bypass-approvals-and-sandbox --ephemeral - < Init.md
자동 일일 업데이트를 활성화하려면:
REPO_DIR="$(pwd)" && codex exec --dangerously-bypass-approvals-and-sandbox --ephemeral "Install a daily scheduler for: cd \"$REPO_DIR\" && codex exec --dangerously-bypass-approvals-and-sandbox --ephemeral - < Update.md. Use cron by default; otherwise use the host scheduler. Do not create wrapper scripts. Verify codex is on PATH, Update.md exists, and the installed scheduler entry is readable. Do not run Update.md during validation."
주의사항:
- 기본적으로 cron을 사용하며, 호스트의 스케줄러가 있으면 그걸 사용합니다
- 별도의 래퍼 스크립트를 만들지 않습니다
- 검증 단계에서는 Update.md를 실행하지 않습니다