
No Skip
- 43 installs
- 433 repo stars
- Updated August 4, 2026
- proffesor-for-testing/agentic-qe
no-skip is a Claude Code skill for ai & agent building.
About
no-skip is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- no-skip
- AI & Agent Building
- AI-coding skill
No Skip by the numbers
- 43 all-time installs (skills.sh)
- +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #7,972 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill no-skipAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 43 |
|---|---|
| repo stars | ★ 433 |
| Last updated | August 4, 2026 |
| Repository | proffesor-for-testing/agentic-qe ↗ |
How do I helps with ai & agent building tasks.?
Helps with ai & agent building tasks.
Who is it for?
Best when you're working on ai & agent building and need structured help with no skip.
Skip if: Teams with no ai & agent building needs, or anyone wanting a generic chat assistant without this specific workflow.
When should I use this skill?
When you need to helps with ai & agent building tasks., or when no-skip is a claude code skill for ai & agent building.
What you get
Structured output aligned to no-skip: no-skip, AI & Agent Building.
Files
No-Skip Mode
When activated, blocks any write that adds test-skipping patterns to test files.
What It Does
Prevents these patterns from being written to test files:
.skip()— skips individual tests.only()— runs only one test (excludes all others)xit(/xdescribe(— Jasmine skip syntaxtest.todo(— unimplemented test placeholders@Skip/@Disabled— JUnit skip annotations
Activation
/no-skipHook Configuration
{
"hooks": {
"PreToolUse": [
{
"matcher": "Write|Edit",
"hook": ".claude/skills/no-skip/scripts/check-skips.sh",
"condition": "file matches **/*.test.{ts,js,tsx,jsx} OR **/*.spec.{ts,js}"
}
]
}
}Enforcement Logic
#!/bin/bash
# check-skips.sh
CONTENT="$1"
SKIP_PATTERNS=(
'\.skip\s*\('
'\.only\s*\('
'\bxit\s*\('
'\bxdescribe\s*\('
'\bxcontext\s*\('
'test\.todo\s*\('
'@Skip'
'@Disabled'
'@Ignore'
)
for pattern in "${SKIP_PATTERNS[@]}"; do
if echo "$CONTENT" | grep -qP "$pattern"; then
echo "BLOCKED: Found skip pattern '$pattern'"
echo "Remove the skip and either fix the test or delete it."
exit 1
fi
doneGotchas
- This catches NEW skips being written, not existing ones — run
grep -r '.skip(' tests/to find existing skips .only()is sometimes used intentionally during debugging — deactivate with/no-skip offif needed- Some frameworks use
pending()instead of.skip()— add to patterns if using Jasmine
#!/bin/bash
# check-skips.sh — No-Skip hook
# Blocks writes that add test-skipping patterns to test files.
# Called by PreToolUse hook on Write/Edit to **/*.test.* or **/*.spec.*
CONTENT="$1"
if [ -z "$CONTENT" ]; then
# If no content passed, read from stdin
CONTENT=$(cat)
fi
FOUND=0
# Check for skip patterns
for pattern in '\.skip\s*(' '\.only\s*(' '\bxit\s*(' '\bxdescribe\s*(' '\bxcontext\s*(' 'test\.todo\s*(' '@Skip' '@Disabled' '@Ignore'; do
if echo "$CONTENT" | grep -qP "$pattern" 2>/dev/null || echo "$CONTENT" | grep -q "$pattern" 2>/dev/null; then
echo "BLOCKED: Found skip pattern: $pattern"
FOUND=1
fi
done
if [ $FOUND -eq 1 ]; then
echo "Remove the skip and either fix the test or delete it."
exit 1
fi
exit 0
Related skills
FAQ
What does no-skip do?
no-skip is a Claude Code skill for ai & agent building.
When should I use no-skip?
When you need to helps with ai & agent building tasks., or when no-skip is a claude code skill for ai & agent building.
What are the main capabilities?
no-skip; AI & Agent Building; AI-coding skill.