name: a11y-audit
description: >
Produce a structured WCAG 2.1 Level AA accessibility audit report from source code or a Figma
export. Findings only — no fixes. Use this skill when the user asks for an "accessibility audit",
"a11y audit", "WCAG audit", "WCAG report", "accessibility report", "a11y report", or invokes
"/a11y-audit". Distinct from the accessibility skill, which runs automated axe-core / jsx-a11y
scans; this skill produces a human-readable audit document with severity tiers, file paths,
verbatim code snippets, WCAG citations, and reproduction steps. The two skills complement each
other — pair them for full coverage.
| name | standardize-repo |
|---|---|
| description | Standardize CI, commitlint, and commit tooling for an Advisa repo |
| disable-model-invocation | true |
Migrate this repo to use Sambla Group shared CI workflows, add commitlint for commit message enforcement, and add commit message tooling for Claude Code, Codex, and GitHub Copilot. The tooling derives the Jira ticket ID from the branch name when possible (e.g. UCL-804 from UCL-804-Derive-jira-id-in-skill), falling back to asking the developer only when the branch name doesn't contain a Jira ID.
This document outlines our commit message conventions. We follow Conventional Commits.
feat: Add loan amount slider component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin remify($property, $sizes) { | |
| $pixelSizes: (); | |
| $remSizes: (); | |
| @each $s in $sizes { | |
| $pixelSizes: append($pixelSizes, $s * 1px); | |
| $remSizes: append($remSizes, rem($s)); | |
| } | |
| #{$property}: $pixelSizes; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body id="@CurrentPage.Name" class="@CurrentPage.DocumentTypeAlias.ToLower()"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| // Load plugins | |
| var gulp = require('gulp'), | |
| $ = require('gulp-load-plugins')(), | |
| browserSync = require('browser-sync'), | |
| reload = browserSync.reload; | |
| // Sass | |
| gulp.task('sass:dev', function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "package", | |
| "version": "1.0.0", | |
| "private": true, | |
| "devDependencies": { | |
| "gulp": "~3.8.11", | |
| "gulp-load-plugins": "~0.10.0", | |
| "browser-sync": "~2.7.2", | |
| "wiredep": "~2.2.2", |