Install
$ agentstack add skill-philoserf-claude-code-config-typescript-quality-gate ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
TypeScript Quality Gate
Run a standardized set of TypeScript/JavaScript quality checks. Auto-fix what's fixable, report the rest with specific locations.
Prerequisites
Verify these tools are available before running checks. All run via bunx — no global installs needed.
biome— formatter and linter (bunx biome)tsc— TypeScript compiler for type checking (bun run tscorbunx tsc)bun test— test runner (built into Bun)
If the project uses prettier + eslint instead of Biome, adapt accordingly — check package.json for which tools are configured.
Check Sequence
Run checks in this order. Formatting first so later tools analyze clean code.
1. Format (auto-fix)
Run bunx biome format --write . — report which files were modified. If no files changed, report "formatting clean."
If the project uses Prettier instead, run bunx prettier --write ..
2. Lint fix (auto-fix)
Run bunx biome check --fix . — apply safe auto-fixes for lint and import organization. Report which rules were fixed and in which files.
If the project uses ESLint instead, run bunx eslint --fix ..
3. Lint (report)
Run bunx biome check . — report remaining issues with file, line, rule name, and message. If a biome.json or biome.jsonc exists, it's picked up automatically.
If using ESLint, run bunx eslint ..
4. Type check (report)
Run bunx tsc --noEmit — report type errors with file, line, and error code. If a tsconfig.json exists, it's picked up automatically. Skip this step for pure JavaScript projects with no tsconfig.json.
5. Test (report)
Run bun test — if test files exist (*.test.ts, *.spec.ts, or a __tests__/ directory). Report pass/fail counts. If no tests exist, note it in the summary.
If the project uses a different runner (vitest, jest), check package.json scripts and use the appropriate command.
Output
After all checks complete, present a summary table:
| Check | Status | Details |
|-------------|--------|----------------------|
| biome fmt | FIXED | 4 files formatted |
| biome fix | FIXED | 2 auto-fixes |
| biome check | PASS | |
| tsc | FAIL | 3 type errors |
| bun test | PASS | 12 passed, 0 failed |
Then list specific issues grouped by file, with line numbers and rule/error codes. Offer to fix reported issues if the user wants.
Tool Detection
Check package.json and config files to determine the project's toolchain:
| Signal | Toolchain | | ------------------------------------- | ---------------- | | biome.json or biome.jsonc | Biome | | .eslintrc.* or eslint.config.* | ESLint | | .prettierrc.* or prettier in deps | Prettier | | tsconfig.json | TypeScript | | vitest in deps | Vitest | | jest in deps | Jest | | None of the above | Default to Biome |
Do not use when
- Checking code in another language — use the matching
go-quality-gate - Reviewing a staged or branch diff — use
diff-review
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: philoserf
- Source: philoserf/claude-code-config
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.