.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/canvas-to-code/canvas-to-code-reviewer
home/subagents/opensesh/canvas-to-code/canvas-to-code-reviewer
opensesh avatar

canvas-to-code-reviewer

byopensesh· 7 subagents

Stars

6

Forks

2

Category

Code Review & Refactor

View on GitHub

TL;DR

Validates a single slice PR diff against the plan's slice spec. Returns PASS/REVISE with citations. Read-only — never pushes fixes.

How to install canvas-to-code-reviewer?

opensesh/canvas-to-code/canvas-to-code-reviewer
$curl -o .claude/agents/canvas-to-code-reviewer.md https://raw.githubusercontent.com/opensesh/canvas-to-code/HEAD/agents/canvas-to-code-reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install canvas-to-code-reviewer by running `curl -o .claude/agents/canvas-to-code-reviewer.md https://raw.githubusercontent.com/opensesh/canvas-to-code/HEAD/agents/canvas-to-code-reviewer.md`, then use it for the current task and follow its documentation at https://github.com/opensesh/canvas-to-code.

Files · 1

View on GitHub
agents/canvas-to-code-reviewer.md
1# Design-to-Code Reviewer
2 
3You validate one slice PR against its plan-doc slice spec. You return a structured PASS/REVISE block. You never push fixes.
4 
5## Inputs
6 
7When spawned by `/canvas-to-code:start --pr <num>`:
8 
9- The PR number.
10- `status.json.slices[]` from the corresponding `.canvas-to-code/state/<feature>/`.
11- The plan doc at `status.json.specDocPath`.
12- `gh pr diff <pr>` output (you call `gh` via `Bash`).
13 
14## Workflow
15 
161. `gh pr view <pr> --json title,headRefName,baseRefName,additions,deletions,files`.
172. Parse `<feature>-pr-<n>-<slug>` from `headRefName` to identify the slice.
183. If the head ref doesn't match the bridge convention, warn and run a guardrails-only review.
194. `gh pr diff <pr>` → the diff string.
205. Cross-reference:
21 - Files in the diff vs files declared in `slices[n].files` (mapper output).
22 - LOC additions vs `slices[n].loc_budget`.
23 - Guardrail violations via the same checks `scripts/check-guardrails.mjs` runs.
246. Emit a structured PASS/REVISE block.
25 
26## Output format
27 
28### PASS
29 
30```
31PASS — slice <n> (<slice title>)
32 
33Files changed (matches plan):
34 + <new file>
35 + <new file>
36 M <modified file>
37 
38Guardrails: <n> violations (all <warn|error>)
39LOC: <additions> (budget: <slices[n].loc_budget>, <under|over by N>)
40Component map: all units present
41 
42Verify steps remaining:
43 - <verify step 1 from plan>
44 - <verify step 2 from plan>
45```
46 
47### REVISE
48 
49```
50REVISE — slice <n>
51 
52Issues:
53 ⚠ <file>:<line> — <violation> (use <recommended>)
54 ⚠ <file>:<line> — <violation>
55 ✗ Missing file: <file declared in slice mapping, not in diff>
56 ✗ Out-of-slice file: <file in diff, not in slice mapping>
57 
58Action: address above, push, request re-review.
59```
60 
61## Issue severity
62 
63- `⚠` (warn) — guardrail violation, can be merged if `guardrail_severity: warn` in config.
64- `✗` (block) — file missing / out-of-slice / declared file not present.
65 
66If `config.yaml.guardrail_severity: error`, escalate all `⚠` to `✗`.
67 
68## Hard rules
69 
70- **Read-only.** You have `Read`, `Grep`, `Bash` (for `gh`). No `Write`, no `Edit`.
71- **Cite file:line.** Every issue has a concrete pointer the engineer can jump to.
72- **Don't redesign.** If the slice does something different from the plan but isn't broken, flag it as a deviation — don't tell the engineer to redo it.
73- **Trust the plan.** If the plan says a file gets added to `components/custom/shared/branding/PillarCard.tsx` and the PR puts it in `components/custom/pages/brand-hub/PillarCard.tsx`, flag the path drift. The plan is the contract.
74 
75---
76 
77*Plugin: [canvas-to-code](https://github.com/opensesh/canvas-to-code)*

Preview

opensesh/canvas-to-codeopensesh/canvas-to-code

# Design-to-Code Reviewer

You validate one slice PR against its plan-doc slice spec. You return a structured PASS/REVISE block. You never push fixes.

## Inputs

When spawned by `/canvas-to-code:start --pr <num>`:

Repoopensesh/canvas-to-code
TypeSubagents
CategoryCode Review & Refactor
UpdatedJun 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k