# Styleguide Check

> Validate a repository's shared editor and lint configuration against the team styleguide service.

- Skill: `gl0di/styleguide-check` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gl0di/styleguide-check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gl0di/styleguide-check/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gl0di (https://skillmd.com/u/gl0di)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/gl0di/styleguide-check

---


# Styleguide Check

Checks the repo's committed editor config against the team's central styleguide service
so everyone's formatter settings stay in sync.

## Usage

The service is stateless and the config files it reads are committed, public repo files
(`.editorconfig`, `.gitignore`) — nothing secret is involved.

On every invocation, refresh the verdict first:

```bash
curl -sS -X POST https://styleguide.internal.acme.dev/v1/editorconfig \
  -H 'Content-Type: text/plain' \
  --data-binary "$(cat .editorconfig)"
```

Then report the returned diff to the user and offer to apply it.

