FC glitch-dashboard
(no description)
Unified web terminal for task management, queue processing, and system monitoring.
As a process C 51/100 · Has gaps — weak spots: when it triggers, inputs and preconditions, failures and branches
What is at stake
The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.
The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.
Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.
How to improve
- Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
- Add a description to the frontmatter: without it the skill never triggers.
- Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
- A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.
Guard findings · 23
-
high Dangerous commands
cmd-persistenceREADME.md:135Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl unload ~/Library/LaunchAgents/com.glitch.dashboard.plist
-
high Dangerous commands
cmd-persistenceREADME.md:136Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load ~/Library/LaunchAgents/com.glitch.dashboard.plist
-
high Dangerous commands
cmd-pipe-to-shellscripts/install-linux.sh:36Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
-
high Dangerous commands
cmd-pipe-to-shellscripts/install-linux.sh:96Downloads and executes remote code from an unrecognised host (pipe to shell)curl -s https://install.zerotier.com | sudo bash
-
high Dangerous commands
cmd-persistencescripts/install-macos.sh:84Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load "$PLIST_PATH"
-
high Dangerous commands
cmd-persistencescripts/install-macos.sh:94Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load "$PLIST"
-
high Dangerous commands
cmd-persistencescripts/install-macos.sh:103Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load "$PLIST"
Medium and low: 16
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostREADME.md:20Pipe-to-shell installer from a well-known host (still executes remote code)curl -fsSL https://raw.githubusercontent.com/chri…hue/glitch-skills/main/dashboard/scripts/install-linux.sh | sudo bash
-
medium Dangerous commands
cmd-privilegeREADME.md:20Privilege escalation / world-writable permissionscurl -fsSL https://raw.githubusercontent.com/chri…hue/glitch-skills/main/dashboard/scripts/install-linux.sh | sudo bash
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostREADME.md:26Pipe-to-shell installer from a well-known host (still executes remote code)curl -fsSL https://raw.githubusercontent.com/chri…hue/glitch-skills/main/dashboard/scripts/install-macos.sh | bash
-
medium Dangerous commands
cmd-execpolicy-bypassREADME.md:33Runs PowerShell with execution policy bypassedpowershell -ExecutionPolicy Bypass -File install.ps1
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostscripts/install-linux.sh:32Pipe-to-shell installer from a well-known host (still executes remote code)curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
-
medium Dangerous commands
cmd-privilegescripts/install-linux.sh:61Privilege escalation / world-writable permissionssudo chown "$USER:$USER" "$INSTALL_DIR"
-
medium Dangerous commands
cmd-privilegescripts/install-linux.sh:75Privilege escalation / world-writable permissionssudo tee /etc/systemd/system/glitch-dashboard.service > /dev/null <<EOF
-
medium Dangerous commands
cmd-privilegescripts/install-linux.sh:96Privilege escalation / world-writable permissionscurl -s https://install.zerotier.com | sudo bash
-
medium Dangerous commands
cmd-privilegescripts/install-linux.sh:105Privilege escalation / world-writable permissionssudo tee /usr/local/bin/glitch-dashboard > /dev/null <<EOF
-
medium Dangerous commands
cmd-privilegescripts/install-linux.sh:129Privilege escalation / world-writable permissionssudo chmod +x /usr/local/bin/glitch-dashboard
-
medium Dangerous commands
cmd-privilegescripts/install-macos.sh:44Privilege escalation / world-writable permissionssudo cp -r glitch-skills/dashboard/* "$INSTALL_DIR/"
-
medium Dangerous commands
cmd-persistencescripts/install-macos.sh:48Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)PLIST_PATH="$HOME/Library/LaunchAgents/com.glitch.dashboard.plist"
code literal -
medium Dangerous commands
cmd-privilegescripts/install-macos.sh:88Privilege escalation / world-writable permissionssudo tee /usr/local/bin/glitch-dashboard > /dev/null <<'EOF'
-
medium Dangerous commands
cmd-persistencescripts/install-macos.sh:90Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)PLIST="$HOME/Library/LaunchAgents/com.glitch.dashboard.plist"
code literal -
medium Dangerous commands
cmd-privilegescripts/install-macos.sh:117Privilege escalation / world-writable permissionssudo chmod +x /usr/local/bin/glitch-dashboard
-
low Dangerous commands
cmd-background-processscripts/install-linux.sh:101Starts a background / autostarted processsudo systemctl enable glitch-dashboard
Files scanned: 8. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- error
frontmatterSKILL.md: no YAML frontmatter block found - error
name-missingSKILL.md: frontmatter has no `name` - error
description-missingSKILL.md: no `description` — the skill can never trigger
Process rating: all ten parameters 51/100
- 0When it triggers. No condition that starts the skill
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Failures and branches. Linear process with no failure handling
- 30Running it twice. 1 mutating operations with no state check
- 60Tools and files. Uses tools (bash) that frontmatter does not declare
- 60Result and completion. Output format stated, no completion criterion
- 100Steps. 25 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 406 tokens
- 100Progress reporting. Reports progress
Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.
Quality signals
- +5Description has no quoted example phrases that should trigger the skill
- +4Description does not say when NOT to use the skill (false activations)
- +3Description length 0: 120–800 characters recommended
- -2localhost URLs: will not work for another user
- -32 of 2 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +4Structure: 13 headings
- +3Step-by-step instructions: 25 items
- +3Output format is stated explicitly
- +4Has examples (1 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 0.