vela-slides-2b2f50 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vela-slides-2b2f50 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
v2.4.0 · Compact format (~30% fewer LLM tokens), vela deck compact/expand, auto-expand pipelineGenerate presentation-ready slide decks and assemble them into runnable Vela .jsx artifacts.
Read the references — they contain the complete block schema, design patterns, and theming system:
Read references/block-schema.md # All 20+ block types with properties
Read references/design-patterns.md # Layout rules, slide archetypes, composition
Read references/themes.md # Color palettes, theming systemFor app editing (part-files, concat, template), read references/app-editing.md.The vela CLI is a single entry point for all deck operations. Install once per session:
export PATH="/home/claude/.local/bin:$PATH"
ln -sf /mnt/skills/user/vela-slides/scripts/vela.py /home/claude/.local/bin/velaWhen generating a new deck, the LLM outputs compact JSON — minified, with short keys, flat slides array, theme presets, and spacer shorthand. The CLI auto-expands to full Vela JSON on ship.
| Full JSON | Compact JSON |
|---|---|
"type": "heading" | "_": "heading" |
"text": "..." | "x": "..." |
{"type":"spacer","h":8} | 8 |
"bg":"#0A0F1C",... per slide | "t":"d" (theme ref) |
"lanes":[{"items":[{"slides":[...]}]}] | "S":[...] |
Slide level: n=title, d=duration, t=theme, B=blocks, p=padding
Block level: _=type, x=text, s=size, c=color, i=icon, b=bg, ic=iconColor, I=items, B=blocks, g=gap, lb=label, w=weight, H=headers, R=rows
vela deck compact full.json compact.json
vela deck expand compact.json full.json
vela deck ship compact.json # auto-expandsAlways generate in compact format — saves ~30% output tokens.
Rules:
{"n":"Title","T":{themes},"S":[slides]}T): group slides by bg/color/accent/padding. "d" = dark, "l" = light.S): flat array. Each slide has "t":"d", "n", "d", "B"._=type, x=text, s=size, etc.)8 instead of {"_":"spacer","h":8}#### Example (3-slide compact deck)
{"n":"AI Workshop","T":{"d":{"b":"#0A0F1C","c":"#E6F1FF","a":"#3B82F6","p":"60px 72px"},"l":{"b":"#ffffff","c":"#1e293b","a":"#3B82F6","p":"36px 48px"}},"S":[{"t":"d","n":"Cover","d":15,"B":[{"_":"badge","x":"WORKSHOP","i":"GraduationCap","b":"#3B82F620","c":"#3B82F6"},8,{"_":"heading","x":"AI para Equipas","s":"3xl","w":700},{"_":"text","x":"Formação prática com LLMs.","s":"lg","c":"#8892B0"}]},{"t":"l","n":"Agenda","d":60,"B":[{"_":"badge","x":"PROGRAMA","i":"Calendar","b":"#3B82F615","c":"#3B82F6"},8,{"_":"heading","x":"Agenda do Dia","s":"2xl"},{"_":"steps","I":[{"title":"09:00","x":"Fundamentos"},{"title":"13:30","x":"Agentes"}],"lnc":"#3B82F6","nc":"#3B82F6","tc":"#1e293b","xc":"#64748b"}]},{"t":"d","n":"CTA","d":20,"B":[{"_":"heading","x":"Vamos Construir?","s":"3xl","w":700},12,{"_":"text","x":"[email protected]","s":"lg","c":"#8892B0"}]}]}vela deck ship /home/claude/<deck-name>-slides.jsonpresent_files(["/mnt/user-data/outputs/<deck>.jsx", "/mnt/user-data/outputs/<deck>-slides.json"])vela deck list deck.json
vela slide view deck.json 3
vela slide edit deck.json 3 block.2.text "New heading"
vela deck replace-text deck.json "old text" "new text"
vela slide remove deck.json 4
vela slide move deck.json 5 2
vela slide duplicate deck.json 2
vela slide insert deck.json 3 new-slide.json
vela deck ship deck.json"36px 48px" — never lessduration (integer, seconds)bg or bgGradient3xl-4xl titles > 2xl headings > lg body > sm captionsspacer blocks for breathing room.icon-row > plain bullets | flow for processes | grid for comparisonssteps for sequences | callout for insights | table for dataSee references/themes.md for palettes.
PascalCase Lucide names. Common: Zap, Brain, Rocket, Shield, Target, Clock, Users, Heart, Globe, Code, Database, Lightbulb, TrendingUp, BarChart, Lock, Eye, Cpu, Layers, Bot, Sparkles
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.