compliance-checker
✓Check code against security compliance standards and best practices.
Installation
SKILL.md
// src/routes/patients.js:45 app.get('/api/patients/:id', authenticateUser, async (req, res) => { const patient = await Patient.findById(req.params.id); res.json(patient); // ❌ No authorization check });
app.get('/api/patients/:id', authenticateUser, async (req, res) => { const patient = await Patient.findById(req.params.id);
// Check authorization if (!canAccessPatient(req.user, patient)) { return res.status(403).json({ error: 'Forbidden' }); }
Check code against security compliance standards and best practices. Source: curiouslearner/devkit.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/curiouslearner/devkit --skill compliance-checker- Source
- curiouslearner/devkit
- Category
- !Security
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is compliance-checker?
Check code against security compliance standards and best practices. Source: curiouslearner/devkit.
How do I install compliance-checker?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/curiouslearner/devkit --skill compliance-checker Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/curiouslearner/devkit
Details
- Category
- !Security
- Source
- skills.sh
- First Seen
- 2026-02-01