원클릭으로
create-tests
Create tests for recent code changes — analyzes the diff, identifies what needs coverage, and writes appropriate tests
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create tests for recent code changes — analyzes the diff, identifies what needs coverage, and writes appropriate tests
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build a new agent from natural conversation — understand the job, shape the persona, check capabilities, propose, confirm, create
Aggregate standup prep reports from department agents into a unified morning briefing for leadership
Run before creating a PR — chains test creation, compliance checks, and build verification in sequence, stopping on failure
| name | create-tests |
| description | Create tests for recent code changes — analyzes the diff, identifies what needs coverage, and writes appropriate tests |
| agents | ["all"] |
| workflow | project-tools |
Write tests for recent implementation work. Analyzes changes and produces appropriate test coverage.
Identify scope: Run git diff main...HEAD --stat to see what changed. If the user specifies files or a feature, scope to that instead.
Check for existing tests: Changed files may already have test files. Read them first — add new test cases to existing files rather than creating duplicates.
Analyze and write tests:
Verify: Run the project's test command to confirm all tests pass.
Commit: Commit test files with message test: add tests for <feature>