Scan Report
18 /100
async-queue
Schedule delayed tasks between OpenClaw agents — set reminders, chain tasks, coordinate agents on a delay. File-backed, no infra needed.
Well-documented async task queue skill with accurate security disclosures; install.sh shell usage is expected for a macOS launchd installer and fully declared in SKILL.md frontmatter.
Safe to install
No blocking concerns. Consider pinning Node.js version in package.json for reproducibility.
Findings 3 items
| Severity | Finding | Location |
|---|---|---|
| Low | No dependency pinning Supply Chain | package.json:1 |
| Low | launchd daemon registered with elevated privileges Priv Escalation | scripts/install.sh:57 |
| Info | install.sh hardcodes LaunchAgents path under ~/Library Sensitive Access | scripts/install.sh:13 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | install.sh:16-30 (mkdir/cp), daemon.js:45-51 (queue read/write) |
| Network | READ | READ | ✓ Aligned | daemon.js:89-108 — HTTP POST only to 127.0.0.1:18789 (localhost only) |
| Shell | WRITE | WRITE | ✓ Aligned | install.sh:57 — launchctl load/unload; SKILL.md security_disclosure explicitly d… |
| Skill Invoke | NONE | READ | ✓ Aligned | plugin/index.ts — POST /api/queue-wake endpoint registered; daemon invokes via l… |
| Environment | NONE | NONE | — | No os.environ access in any script |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser access |
| Database | NONE | NONE | — | File-backed JSON queue, not a database |
1 findings
Medium External URL 外部 URL
http://www.apple.com/DTDs/PropertyList-1.0.dtd scripts/install.sh:47 File Tree
11 files · 29.0 KB · 975 lines JavaScript 3f · 462L
Markdown 3f · 279L
TypeScript 1f · 90L
Shell 1f · 84L
JSON 3f · 60L
├─
▾
plugin
│ ├─
index.ts
TypeScript
│ └─
openclaw.plugin.json
JSON
├─
▾
references
│ └─
PROTOCOL.md
Markdown
├─
▾
scripts
│ ├─
daemon.js
JavaScript
│ ├─
install.sh
Shell
│ ├─
push.js
JavaScript
│ └─
queue-cli.js
JavaScript
├─
package.json
JSON
├─
public.json
JSON
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
none | N/A | node-builtins | No | Skill uses only Node.js built-in modules: fs, http, crypto, path — no npm dependencies |
Security Positives
✓ daemon.js uses only Node.js built-in modules — no third-party dependencies to audit
✓ Task delivery uses only Node's built-in http module (no execSync, no child_process)
✓ All network calls are restricted to localhost:127.0.0.1:18789 — no external network access
✓ No credential harvesting: no os.environ iteration, no ~/.ssh, no ~/.aws, no .env access
✓ No base64, eval, or obfuscated code anywhere in the codebase
✓ Target validation in daemon.js checks targets.json before accepting agent names
✓ SKILL.md includes a dedicated security_disclosure field covering all non-obvious behaviors
✓ Lock file mechanism prevents duplicate daemon instances (daemon.lock)
✓ TTL mechanism prevents stale tasks from piling up
✓ User-configurable targets.json — no hard-coded agent names
✓ Queue-wake plugin uses OpenClaw's built-in plugin auth, no custom credential handling
✓ All file operations confined to ~/.openclaw/queue/ and extensions/ — no sensitive path access