Agent skill
oe-release-readiness
Pre-merge/release readiness checklist for OpenEvent-AI. Use when preparing a PR for production: run the fastest validation lanes first (compile/import, smoke suite, deterministic site-visit trace), then escalate to full suites or integration checks as needed.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/oe-release-readiness
SKILL.md
oe-release-readiness
Fast gates (run in this order)
-
Compile/import + refactor invariants:
python3 scripts/tests/verify_refactor.py
-
Fast backend smoke suite (Step 1–7 core invariants):
./scripts/tests/test-smoke.sh
-
Agent-facing API regressions (manager approve path + tool parity):
pytest backend/tests/agents/ -q
-
Deterministic site-visit trace contract (no UI required):
python3 scripts/manual_ux/manual_ux_scenario_I.py > /tmp/ux_site_visit_I.jsonpython3 scripts/manual_ux/validate_manual_ux_run.py /tmp/ux_site_visit_I.json --require_site_visit
Full gates (only if the change touches workflow logic)
- Full test suite:
./scripts/tests/test-all.sh
Hygiene gates (quick checks that prevent “LLM-ish” regressions)
- No new debug prints in runtime code (allow scripts/tests only):
rg -n "print\\(" backend -g"*.py" | rg -v "/tests/|/scripts/|__init__\\.py"
Claude Code shortcut
- Keep
.claude/commands/validate.mdup to date and run/validatefor a full-stack lane.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?