Use when a repository needs deterministic pull-request checks for new accessibility, design-token, component-structure, responsive, and UI-state regressions with file-level evidence.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add thedixitjain/the-mega-skill-library --skill enforce-design-ci --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Enforce Design Ci?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/thedixitjain-enforce-design-ci)More formats (shields.io, HTML) on the badges page.
---
name: enforce-design-ci
description: "Use when a repository needs deterministic pull-request checks for new accessibility, design-token, component-structure, responsive, and UI-state regressions with file-level evidence."
category: frontend-and-design
source_repo: hashgraph-online/awesome-codex-plugins
source_path: "plugins/sarveshsea/memi/skills/enforce-design-ci/SKILL.md"
source_url: https://github.com/hashgraph-online/awesome-codex-plugins/blob/HEAD/plugins/sarveshsea/memi/skills/enforce-design-ci/SKILL.md
---
# Enforce Design CI
Add a reviewable design-quality gate that runs without an LLM. Memi writes a policy, baseline, universal agent skill, SARIF, and human-readable report artifacts.
## Initialize
Inspect the worktree first. When the task authorizes setup, run:
```bash
npx -y @memi-design/cli@2.6.2 init --team --kit universal --json
```
Review the generated policy and baseline before committing them. Existing debt remains visible but does not block unrelated pull requests.
## Verify Locally
```bash
npx -y @memi-design/cli@2.6.2 ci . --no-scope --report --json
```
The command may exit nonzero when findings exceed the configured gate. Treat that as a quality result, not a tool crash.
## Add GitHub Actions
Use the pinned major action in `.github/workflows/design.yml`:
```yaml
name: Design CI
on: [pull_request]
jobs:
design:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: sarveshsea/memi@v2
with:
version: "2.6.2"
```
## Completion Criteria
- Policy and baseline are reviewed and committed.
- Local CI produces SARIF and a design-health report.
- The workflow passes on unchanged accepted debt and fails on a seeded regression.
- The final handoff names the gate threshold, suppressed baseline count, active findings, and artifact paths.
---
**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/sarveshsea/memi/skills/enforce-design-ci/SKILL.md`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!