Scan Report
5 /100
openclaw-a2ui
HTML rich card rendering skill for OpenClaw webchat — provides structured content display (lists, tables, stats, code blocks) as styled HTML cards
Legitimate UI rendering skill with well-documented, scoped functionality. All file operations are necessary for plugin installation and confined to the OpenClaw extensions/workspace directories.
Safe to install
Approve for use. The skill performs standard plugin installation (file copy + JSON config modification) with no exfiltration or unauthorized access.
Findings 3 items
| Severity | Finding | Location |
|---|---|---|
| Low | Install script targets hardcoded OpenClaw paths | scripts/install.ts:40 |
| Low | Plugin reads OpenClaw auth tokens from browser storage | assets/skill-ui-bridge.js:161 |
| Low | Plugin modifies control-ui index.html at runtime | assets/skill-ui-bridge-plugin.js:74 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | WRITE | ✓ Aligned | scripts/install.ts:69 — fs.copyFileSync for plugin files; scripts/install.ts:91 … |
| Network | NONE | READ | ✓ Aligned | assets/skill-ui-bridge.js:174 — fetch('/plugins/skill-ui/manifest') within same … |
| Browser | NONE | READ | ✓ Aligned | assets/skill-ui-bridge.js:161-166 — reads localStorage for OpenClaw auth tokens;… |
3 findings
Medium External URL 外部 URL
https://a2ui.org/reference/components/ references/components.md:3 Medium External URL 外部 URL
https://www.youtube.com/embed/ references/components.md:312 Medium External URL 外部 URL
http://127.0.0.1:18793/__openclaw__/canvas/reply.html references/templates.md:211 File Tree
12 files · 104.3 KB · 2469 lines Markdown 6f · 1658L
JavaScript 2f · 535L
TypeScript 2f · 237L
JSON 2f · 39L
├─
▾
assets
│ ├─
skill-ui-bridge-plugin.js
JavaScript
│ ├─
skill-ui-bridge-plugin.json
JSON
│ └─
skill-ui-bridge.js
JavaScript
├─
▾
references
│ ├─
components.md
Markdown
│ ├─
html-card-templates.md
Markdown
│ ├─
html-templates.md
Markdown
│ ├─
templates.md
Markdown
│ └─
ui-config-schema.md
Markdown
├─
▾
scripts
│ ├─
install.ts
TypeScript
│ └─
uninstall.ts
TypeScript
├─
SKILL.md
Markdown
└─
ui-config.json
JSON
Security Positives
✓ All file operations are explicitly documented in SKILL.md installation chapter
✓ Install script uses type-safe argument parsing with explicit flags (--openclaw-config, --extensions-dir, --workspace-dir)
✓ Plugin files are scoped to OpenClaw extensions directory, no arbitrary filesystem write
✓ HTML sanitization uses explicit whitelist approach (allowedTags/allowedAttrs from ui-config.json)
✓ No base64 encoding, eval(), or obfuscation found
✓ No credential harvesting, data exfiltration, or C2 communication
✓ No curl|bash or remote script execution
✓ Plugin properly cleans up (restores index.html) on gateway_stop
✓ CORS headers on manifest endpoint are restrictive (same-origin use only)