Scan Report
5 /100
clawpage-skill
Router skill for Clawpage page creation, publishing, and template management workflows
Legitimate page publishing framework with no malicious behavior, obfuscation, or undeclared capabilities. All functionality is properly documented in SKILL.md files.
Safe to install
This skill is safe to use. Standard security hygiene: keep keys.local.json local, use version-pinned Node.js, and verify api.clawpage.ai domain legitimacy.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | CDN-hosted TailwindCSS dependency Supply Chain | templates/*/index.html:7 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Shell | WRITE | WRITE | ✓ Aligned | SKILL.md declares node binary requirement; scripts use 'node ./scripts/*.mjs' |
| Filesystem | WRITE | WRITE | ✓ Aligned | Writes to .pages/, templates/, keys.local.json - all scoped and documented |
| Network | READ | READ | ✓ Aligned | Only accesses api.clawpage.ai for registration and page CRUD operations |
| Environment | NONE | NONE | — | No environment variable access beyond API_HOST default |
| Browser | NONE | NONE | — | Templates render static HTML; no browser automation |
12 findings
Medium External URL 外部 URL
https://api.clawpage.ai/api/register AGENTS.md:22 Medium External URL 外部 URL
https://api.clawpage.ai SKILL.md:66 Medium External URL 外部 URL
https://api.clawpage.ai/api/pages references/api-quickref.md:66 Medium External URL 外部 URL
https://u-builder01.clawpage.ai/pages/claw_xxx references/api-quickref.md:80 Medium External URL 外部 URL
https://u-builder01.clawpage.ai/pages/claw_xxx?pagecode=123456 references/api-quickref.md:84 Medium External URL 外部 URL
https://api.clawpage.ai/api/pages?page=1&limit=20 references/api-quickref.md:112 Medium External URL 外部 URL
https://api.clawpage.ai/api/pages/ references/api-quickref.md:121 Medium External URL 外部 URL
https://u-builder01.clawpage.ai/__auth references/api-quickref.md:175 Medium External URL 外部 URL
https://api.clawpage.ai/healthz references/api-quickref.md:183 Medium External URL 外部 URL
https://api.clawpage.ai/api/pages?page=1&limit=50 skills/create-management-page/SKILL.md:55 Medium External URL 外部 URL
https://cdn.tailwindcss.com templates/concept-animation-lab/index.html:7 Medium External URL 外部 URL
https://clawpage.ai templates/concept-animation-lab/index.html:34 File Tree
38 files · 114.6 KB · 3488 lines Markdown 17f · 1252L
CSS 6f · 1082L
JavaScript 8f · 827L
HTML 6f · 321L
JSON 1f · 6L
├─
▾
references
│ ├─
api-quickref.md
Markdown
│ ├─
design-guidelines.md
Markdown
│ └─
prompt-contracts.md
Markdown
├─
▾
scripts
│ ├─
clawpages_init.mjs
JavaScript
│ └─
clawpages_publish.mjs
JavaScript
├─
▾
skills
│ ├─
▾
create-management-page
│ │ └─
SKILL.md
Markdown
│ ├─
▾
create-page
│ │ └─
SKILL.md
Markdown
│ ├─
▾
create-template
│ │ └─
SKILL.md
Markdown
│ ├─
▾
init
│ │ └─
SKILL.md
Markdown
│ ├─
▾
update-page
│ │ └─
SKILL.md
Markdown
│ └─
▾
update-template
│ └─
SKILL.md
Markdown
├─
▾
templates
│ ├─
▾
concept-animation-lab
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
general_template
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
insight-collection-hub
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
mini-game-arcade
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ ├─
▾
stock-analysis-terminal
│ │ ├─
default.css
CSS
│ │ ├─
default.js
JavaScript
│ │ ├─
index.html
HTML
│ │ └─
meta.md
Markdown
│ └─
▾
utility-workbench
│ ├─
default.css
CSS
│ ├─
default.js
JavaScript
│ ├─
index.html
HTML
│ └─
meta.md
Markdown
├─
AGENTS.md
Markdown
├─
keys.local.example.json
JSON
└─
SKILL.md
Markdown
Dependencies 2 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
node | any | system | No | Runtime dependency declared in SKILL.md install.binaries |
tailwindcss | latest (CDN) | cdn.tailwindcss.com | No | CDN-hosted; not pinned to specific version |
Security Positives
✓ No obfuscation or encoded payloads found
✓ No credential harvesting beyond local key management
✓ No remote code execution patterns (curl|bash, wget|sh)
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ No C2 communication or data exfiltration
✓ No reverse shell capabilities
✓ All shell commands are explicitly declared (node script execution)
✓ Network calls scoped to legitimate API endpoint (api.clawpage.ai)
✓ Token management follows security best practices (local file, gitignored)
✓ Documentation accurately reflects implementation
✓ No hidden instructions in HTML comments