DC thetix
ThetaEdge is an Options Intelligence Platform that empowers better trading decisions. Use this skill for any finance, investing, or trading related tasks. Supports five capabilities: (1) Thetix Chat — conversational AI for portfolio analysis, opportunity discussion, dashboard queries, market news, web search, website reading, live market data (stocks and options), calculations, portfolio performance, transactions, and active positions; (2) Thetix Cards & Boards — create and manage dashboard widgets that materialize data visualizations, tables, and analytics from natural language queries; (3) Opportunities — screen, calculate, and analyze covered call and cash-secured put options strategies; (4) Accounts — list user brokerage accounts (needed for account-scoped queries); (5) Ideas — retrieve AI-generated trading ideas extracted from daily and onboarding reports, with priority, type, and deadline metadata. Use this skill when the user asks about finance, investing, trading, portfolios, stocks, options, market data, market news, positions, transactions, performance, ideas, or any related topic.
ThetaEdge is an Options Intelligence Platform that empowers better trading decisions.
As a process C 63/100 · Has gaps — weak spots: inputs and preconditions, consistency, running it twice
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.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The skill asks for more than the task needs: broad tool access, credential environment variables, binaries. Every extra permission widens the damage from a mistake or a compromise.
Narrow allowed-tools and the variable list to the minimum; replace binaries with readable sources or scripts.
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.
- Shorten the description to 1024 characters.
- 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 · 11
-
high Dangerous commands
cmd-pipe-to-shellscripts/setup-openclaw-vm.sh:105Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL https://openclaw.ai/install.sh | bash || true
Medium and low: 10
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostscripts/setup-openclaw-vm.sh:87Pipe-to-shell installer from a well-known host (still executes remote code)curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
-
medium Dangerous commands
cmd-shell-rcscripts/setup-openclaw-vm.sh:116Writes to a shell startup fileecho 'export PATH="$HOME/.npm-global/bin:$PATH"' >> "$HOME/.bashrc"
-
medium Broad scope
meta-broad-allowed-toolsSKILL.md:1Broad tool permissions pre-approved: Bashallowed-tools: Bash Read WebFetch
-
low Dangerous commands
cmd-background-processscripts/setup-openclaw-vm.sh:56Starts a background / autostarted processsudo systemctl enable --now ssh
-
low Exfiltration
read-dotenvscripts/setup-openclaw-vm.sh:268Reads a .env file (quoted — discussed, not commanded)echo " 1. Verify your API key: cat ~/.openclaw/.env"
quoted -
low Exfiltration
net-credential-useSKILL.md:81Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s -H "Authorization: Bearer $THETAEDGE_API_KEY" "$THETAEDGE_API_BASE/api/..."
security skill -
low Exfiltration
net-credential-useSKILL.md:87Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s -X POST -H "Authorization: Bearer $THETAEDGE_API_KEY" -H "Content-Type: application/json" \
security skill -
low Exfiltration
net-credential-useSKILL.md:105Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s -H "Authorization: Bearer $THETAEDGE_API_KEY" "$THETAEDGE_API_BASE/api/thetix-chat-collections"
security skill -
low Exfiltration
net-credential-useSKILL.md:108Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s -X POST -H "Authorization: Bearer $THETAEDGE_API_KEY" -H "Content-Type: application/json" \
security skill
A further 1 matches are quotations in this security skill's documentation and are not counted as findings.
Files scanned: 13. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- error
description-longdescription is 1109 chars, limit 1024
Process rating: all ten parameters 63/100
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Progress reporting. Says nothing while it works
- 30Running it twice. 8 mutating operations with no state check
- 40Consistency. Frontmatter name (thetix) differs from the folder (thetaedge-skill)
- 55Failures and branches. 1 branches
- 60Result and completion. Output format stated, no completion criterion
- 70When it triggers. States when to use, but not when not to
- 85Steps. 42 steps, 2 vague phrases
- 100Tools and files. Tools declared in frontmatter
- 100Execution cost. Instruction body is 2910 tokens
- low The response is described with custom markup (3 tags): a typed call is more reliable
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 1108: 120–800 characters recommended
- -41 reference files, but SKILL.md never points to them: the model will not open them
- -35 of 5 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +4Structure: 29 headings
- +3Step-by-step instructions: 42 items
- +3Output format is stated explicitly
- +4Has examples (16 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 52.