Remedy
Developer-first accessibility tools. Integrate testing into your CI/CD pipeline, use our CLI, or leverage our API for custom workflows.
// Remedy CI/CD Integration Example
import { Remedy } from '@compliable/remedy';
describe('Accessibility Tests', () => {
it('homepage meets WCAG 2.2 AA', async () => {
const results = await Remedy.scan({
url: 'https://example.com',
standard: 'WCAG22AA',
threshold: {
critical: 0,
serious: 5
}
});
expect(results.violations.critical).toBe(0);
expect(results.score).toBeGreaterThan(90);
});
});Built for developers
Tools and integrations that fit naturally into your development workflow.
CI/CD Integration
Integrate accessibility testing into your build pipeline. Catch issues before they reach production.
CLI Tools
Command-line tools for developers to scan pages, generate reports, and automate testing workflows.
API Access
RESTful API for programmatic access to scanning, reporting, and remediation features.
IDE Extensions
VS Code and JetBrains extensions that highlight accessibility issues as you write code.
Testing Frameworks
Integrations with Jest, Cypress, Playwright, and other popular testing frameworks.
Component Library
Pre-built accessible React, Vue, and Angular components to accelerate development.
Works with your stack
Seamless integrations with the tools you already use.
GitHub Actions
CI/CD
GitLab CI
CI/CD
Jenkins
CI/CD
CircleCI
CI/CD
Jest
Testing
Cypress
Testing
Playwright
Testing
Selenium
Testing
VS Code
IDE
WebStorm
IDE
Sublime Text
IDE
Atom
IDE
Powerful API for custom solutions
Build custom integrations and workflows with our comprehensive RESTful API.
- Scan any URL programmatically
- Get detailed JSON results
- Generate PDF and CSV reports
- Webhook notifications
- Rate limiting and authentication
- Comprehensive documentation
curl -X POST https://api.compliable.org/v1/scan \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"standard": "WCAG22AA",
"includeScreenshots": true
}'{
"id": "scan_abc123",
"status": "completed",
"score": 87,
"violations": 12,
"passes": 156,
"reportUrl": "https://..."
}Get started with the CLI
Install our command-line tool and start scanning in seconds.
# Install the CLI
npm install -g @compliable/remedy-cli
# Scan a URL
remedy scan https://example.com
# Generate a report
remedy report https://example.com --format pdf --output report.pdf
# Run in CI mode (fails if critical issues found)
remedy scan https://example.com --ci --threshold critical:0