Our review
Runs a full local CI pipeline (type checking, tests, formatting, linting) before pushing or creating a pull request.
Strengths
- Automates quality checks before push
- Clear pipeline order (check → test → fmt → lint)
- Debug mode for error diagnosis
- Simple integration with deno task
Limitations
- Requires the project to use Deno and a defined 'ci' task
- Does not replace remote CI (local execution only)
- Can be slow if test suite is large
Use this skill before every push or pull request to ensure code passes all basic checks.
Do not use if the project does not use Deno, the 'ci' task is not configured, or you need asynchronous remote CI execution.
Security analysis
SafeThe skill runs a local Deno CI command that is project-specific and does not perform destructive, exfiltrating, or obfuscated actions. It only uses Bash and Read, which are permitted tools, and there are no instructions for downloading remote payloads or disabling safety mechanisms.
No concerns found
Examples
Run local CI checks before pushing.Run local CI with debug logging to see detailed errors.Execute the local CI pipeline before creating a pull request.name: local-ci description: Run local CI checks before merge or push. Use when user says 'CI', 'ローカルCI', or before creating PRs. allowed-tools: [Bash, Read]
push/マージ前に品質を保証するため、ローカルCIパイプラインを実行する。
deno task ci実行- エラー時は
LOG_LEVEL=debug deno task ciで詳細確認
パイプライン: check(型検査) → test(全テスト) → fmt(フォーマット) → lint(リント)
全チェック通過までpush禁止。
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.