원클릭으로
testing
Run linting and tests for Weaver SDK. Works in any worktree.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run linting and tests for Weaver SDK. Works in any worktree.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run the full Weaver provisioner regression test suite against the production service. Covers full_ft, LoRA, debug modes, and edge cases.
Address GitHub PR review comments. Navigate to the correct worktree, make fixes, push updates.
Review code changes against Weaver SDK project standards before committing. Works in any worktree.
Fix a GitHub issue using git worktree for isolation. Fetches issue, creates worktree, plans and implements fix, then creates PR.
Complete git commit workflow in a worktree. Includes review, staging, and message generation.
Create a GitHub PR from a worktree branch. Use after committing changes.
| name | testing |
| description | Run linting and tests for Weaver SDK. Works in any worktree. |
.claude/agents/testing/AGENT.mdsubagent_type="testing" (specialized agent)Verify you're in the correct worktree:
git rev-parse --show-toplevel
git branch --show-current
# 1. Check formatting
make check-format
# 2. Run linters
make lint
# 3. Run tests
make test
# 4. Full CI (lint + test)
make ci
# All tests
pytest tests/ -v
# Specific test file
pytest tests/test_config.py -v
# Specific test
pytest tests/test_config.py::test_config_defaults -v
# With coverage
make test-cov
# Format check (no changes)
black --check weaver/ tests/
isort --check-only weaver/ tests/
# Format (apply changes)
make format
# Pylint
pylint weaver/
# Mypy
mypy weaver/
# License headers
python tests/lint/check_license_header.py
## Testing Summary
**Status:** PASS / WARNINGS / FAIL
### Lint Results
[black/isort/pylint/mypy output]
### Test Results
- Total: X | Passed: X | Failed: X | Skipped: X
### Failures
[Failed test details if any]
### Recommendations
[Actions to fix issues]