원클릭으로
project-init
Initialize this project
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Initialize this project
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Remove temporary files, unused code, and compact documentation while preserving all production functionality. Cleans up debug data, Python cache files, temporary logs, and consolidates documentation.
Export Excalidraw diagrams to excalidraw.com and return shareable URLs. Use after creating diagrams or when user requests a shareable link.
Write unit tests for main classes added to the events-agent project. Use when adding tests for new crawlers, repositories, data modules, or any main class. Follows pytest conventions and project test patterns.
| name | project-init |
| description | Initialize this project |
Use when the user wants to initialize this repo or set up the local dev environment.
# 1) Create venv (if missing)
python3 -m venv .venv
# 2) Activate venv
source .venv/bin/activate
python3 on macOS.