Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:698
forks:99
updated:24. März 2026 um 21:32
SKILL.md
| name | pre-review |
| description | Check your branch before opening a PR (lint, format, tests, title) |
| disable-model-invocation | true |
| context | fork |
| agent | Explore |
| allowed-tools | Bash, Read, Grep, Glob |
Run local checks to catch issues before opening a PR.
git branch --show-current
git status
git log --oneline main..HEAD
ruff check .
If there are fixable issues, run ruff check --fix . and report what was fixed.
ruff format --check .
If files would be reformatted, run ruff format . and report what changed.
pytest tests/ -x --tb=short
Report pass/fail count and any failures.
pytest tests/ --cov=arklex --cov-fail-under=45 --cov-report=term-missing -q
Coverage minimum is 45%. Flag if below threshold.
Branch should follow <type>/<short-description> pattern, e.g. feat/add-retry.
Based on the commits on this branch, suggest a Conventional Commits title:
<type>(<scope>): <description>Summarize results:
Lint: pass/fail
Format: pass/fail
Tests: X passed, Y failed
Coverage: XX% (minimum 45%)
Branch: <name> (valid/invalid)
Title: <suggested title>