https://github.com/dotcommander/cclint
Linter for Claude Code agents, commands, and skills
https://github.com/dotcommander/cclint
claude-code cli golang linter
Last synced: 2 days ago
JSON representation
Linter for Claude Code agents, commands, and skills
- Host: GitHub
- URL: https://github.com/dotcommander/cclint
- Owner: dotcommander
- License: mit
- Created: 2025-12-22T22:37:01.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-02-08T07:06:51.000Z (12 days ago)
- Last Synced: 2026-02-08T14:24:19.423Z (11 days ago)
- Topics: claude-code, cli, golang, linter
- Language: Go
- Size: 10.2 MB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cclint
cclint validates Claude Code components before they break in runtime.
It lints agents, commands, skills, plugins, and settings.
## Why install
- Catch frontmatter and schema errors before commit
- Enforce naming, structure, and security rules consistently
- Track quality with component scoring (0-100)
- Support gradual rollout with baseline mode
- Generate machine-readable reports for CI
## Quick start
1. Install:
```bash
go install github.com/dotcommander/cclint@latest
```
2. Lint your project:
```bash
cclint
```
3. Lint staged files in a commit workflow:
```bash
cclint --staged
```
## First successful run
```bash
cclint --scores
```
If your files are valid, you should see passing checks and quality scores.
## Uninstall / rollback
```bash
rm "$(go env GOPATH)/bin/cclint"
```
## Next docs step
Go to `docs/README.md` for setup, integration, and contributor guides.