Test all
An operating system for Claude Code. Skills, hooks (MCR), and a lean-context framework for smarter AI coding sessions.
npx -y skills add justnau1020/claude-os --skill test-allAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run the full CI pipeline locally -- linting, type checking, and tests. Use before commits or deployments to verify everything passes.
SKILL.md
1.4 KB, as published. Nobody here has run it
Run Full CI Pipeline
Run the complete CI pipeline locally in the same order as CI/CD.
Pipeline Steps (run in order, stop on first failure)
1. Lint
Run the project's linter. Examples:
# Python
ruff check {source_dir}/ tests/
# JavaScript/TypeScript
npx eslint src/
If there are auto-fixable issues, report them but do NOT auto-fix unless asked. Show the exact errors.
2. Type check
Run the project's type checker. Examples:
# Python
mypy {source_dir}/ --ignore-missing-imports
# TypeScript
npx tsc --noEmit
Report any type errors with file paths and line numbers.
3. Run test suite
# Python
pytest tests/ -v --tb=short
# JavaScript/TypeScript
npm test
If $ARGUMENTS is provided, pass it as additional arguments:
pytest tests/ -v --tb=short $ARGUMENTS
Reporting
After all steps complete, provide a summary:
CI Pipeline Results:
Lint: PASS/FAIL (N issues)
Types: PASS/FAIL (N errors)
Tests: PASS/FAIL (N passed, N failed, N skipped)
If any step fails, explain what failed and suggest specific fixes. Include file paths and line numbers for all failures.