AgentSkillsCN

check

代码质量和安全性检查

SKILL.md
--- frontmatter
name: check
description: Code quality and security inspection
version: 2.0.0
omc_delegate: oh-my-claudecode:ultraqa
triggers:
  keywords:
    - "check"
    - "/check"
    - "검사"

/check - Code Quality Inspection

OMC Integration

This skill delegates to the OMC ultraqa skill.

Execution

python
Skill(skill="oh-my-claudecode:ultraqa", args="code quality inspection")

QA Cycle

  1. Run tests
  2. Fix on failure
  3. Repeat until passing

Direct Execution (optional)

bash
# Lint
ruff check src/ --fix

# Test
pytest tests/ -v