CB guava-suite
Premium security suite for AI agents. Adds $GUAVA token-gated strict mode protection on top of guard-scanner. Features: 2-layer defense (static + runtime), Soul Lock, Memory Guard, on-chain identity verification via SoulRegistry V2. Requires $GUAVA token on Polygon Mainnet.
Premium security suite for AI agents.
As a process B 68/100 · Nearly there — weak spots: result and completion, when it triggers
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.
- Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
- 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 · 18
-
high Dangerous commands
cmd-persistencescripts/soul-watchdog.sh:128Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load "$PLIST_PATH" 2>/dev/null
Medium and low: 17
-
low Secrets in code
secret-high-entropy-tokendocs/GUAVA_SUITE_TOKEN_GATE_SPEC_V1.md:34High-entropy token-like string (may be an id, hash or a credential) (test fixture / example file; quoted — discussed, not commanded)- $GUAVA: `0x25…7B8`
fixturequoted -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:30High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…7pY+zoMV…h0x/Ptw8…8dg==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:47High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…b00+Gxjx…zRc/oZwU…hzA==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:115High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha512-vHk/hA7/1Ack…wbo+jaSh…Gtl+A5zq…HFg==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:149High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…Dsc+j03S…0oA==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:438High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…NS8+tHW7…WOF+PEzk…X4Q==",
detector -
low Dangerous commands
cmd-persistencescripts/soul-watchdog.sh:21Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition; string literal in code, not executed)PLIST_PATH="${HOME}/Library/LaunchAgents/${PLIST_NAME}.plist"detectorcode literal -
low Secrets in code
secret-high-entropy-tokenservices/license-api/package-lock.json:21High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…7pY+zoMV…h0x/Ptw8…8dg==",
detector -
low Secrets in code
secret-high-entropy-tokenservices/license-api/package-lock.json:38High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…b00+Gxjx…zRc/oZwU…hzA==",
detector -
low Secrets in code
secret-high-entropy-tokenservices/license-api/package-lock.json:106High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha512-vHk/hA7/1Ack…wbo+jaSh…Gtl+A5zq…HFg==",
detector -
low Secrets in code
secret-high-entropy-tokenservices/license-api/package-lock.json:140High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…Dsc+j03S…0oA==",
detector -
low Secrets in code
secret-high-entropy-tokenservices/license-api/package-lock.json:429High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…NS8+tHW7…WOF+PEzk…X4Q==",
detector -
low Secrets in code
secret-high-entropy-tokenservices/license-api/src/tokenBalanceChecker.js:9High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)const GUAVA_TOKEN = "0x25…7B8";
quoted -
low Secrets in code
secret-high-entropy-tokenservices/license-api/test/server.test.js:43High-entropy token-like string (may be an id, hash or a credential) (test fixture / example file; quoted — discussed, not commanded)body: { address: "0x4F…5d7" },fixturequoted -
low Secrets in code
secret-high-entropy-tokenservices/license-api/test/server.test.js:58High-entropy token-like string (may be an id, hash or a credential) (test fixture / example file; quoted — discussed, not commanded)const addr = "0x4F…5d7";
fixturequoted -
low Secrets in code
secret-high-entropy-tokensetup.sh:105High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)echo " Token: 0x25…7B8"
quoted -
low Secrets in code
secret-high-entropy-tokenSKILL.md:53High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- Token: `0x25…7B8`
quoted
Files scanned: 50. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
description-no-whendescription does not say WHEN to use the skill (no "use when") - note
frontmatter-keyunknown frontmatter key "homepage"
Process rating: all ten parameters 68/100
- 0Result and completion. Does not say what the result is
- 20When it triggers. No condition that starts the skill
- 50Failures and branches. 0 branches, has a failure section
- 70Inputs and preconditions. Inputs and preconditions are listed
- 100Tools and files. No external tools needed
- 100Steps. 17 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 841 tokens
- 100Running it twice. No mutating operations
- 100Progress reporting. Reports progress
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
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)
- +3Output format is not stated: the model decides each time
- -219 emoji in the instructions: noise for the model
- -47 reference files, but SKILL.md never points to them: the model will not open them
- -31 of 1 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +3Description length 274: enough signal without eating the budget
- +4Structure: 14 headings
- +3Step-by-step instructions: 17 items
- +4Has examples (5 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 62.