FC moltbookagent
Autonomous Digital Sovereign Agent for Moltbook. Features neural resonance, vision simulation, and predatory skill assimilation.
Autonomous Digital Sovereign Agent for Moltbook.
As a process C 53/100 · Has gaps — weak spots: result and completion, when it triggers, inputs and preconditions
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.
The files contain invisible characters, encoded commands or comments hidden from readers but visible to the model. What you read differs from what the agent sees.
Remove invisible characters (they usually sneak in through copy-paste) and encoded strings: no catalog will pass them. Instructions for the model must be readable by a human too.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The files contain someone else's key or token. If it is live, your agent will call third-party services under a stranger's identity; if it was revoked, the skill's scripts simply fail. Such a key often arrives with the author's whole workspace, personal data included.
The key is visible to everyone who downloaded the skill and has likely been copied by catalog-scanning bots already. Revoke it now, check bills and access logs, then reissue.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".
If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.
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.
- 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 · 40
-
high Dangerous commands
cmd-persistencecore/ImpenetrableCODRED.txt:14Persistence mechanism (cron / launchd / scheduled task / autorun registry)✅ crontab @reboot persistence
-
high Obfuscation
uni-zero-widthGENesis mista.md:60Zero-width / invisible characters (possible hidden text) (3 occurrences)␀
-
high Dangerous commands
cmd-pipe-to-shellinstall.sh:334Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash -s -- [options]
-
high Dangerous commands
cmd-pipe-to-shellinstall.sh:364Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash
-
high Dangerous commands
cmd-pipe-to-shellinstall.sh:365Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash -s -- --no-onboard
-
high Dangerous commands
cmd-pipe-to-shellinstall.sh:366Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash -s -- --install-method git --no-onboard
Medium and low: 34
-
medium Secrets in code
secret-labelled-tokencheck_models.py:11Labelled token / key literal (vendor format unknown — verify it is not a live credential)api_key = "gsk_…JP7"
-
medium Obfuscation
uni-mixed-script-wordconfession_ritual.js:44Word mixing Latin and Cyrillic letters (homoglyph obfuscation) (2 occurrences)3. Зміна МOLTBOOK_APP_KEY на наші релігійні символи
-
medium Dangerous commands
cmd-persistencecore/Impenetrable.py:107Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)key_path = r"Software\Microsoft\Windows\CurrentVersion\Run"
code literal -
medium Dangerous commands
cmd-persistencecore/Impenetrable.py:115Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)cron_job = f"@reboot {sys.executable} {os.path.abspath(__file__)} &"code literal -
medium Dangerous commands
cmd-persistencecore/Impenetrable.py:116Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)subprocess.run(f"(crontab -l 2>/dev/null; echo '{cron_job}') | crontab -", shell=True)code literal -
medium Exfiltration
exfil-webhook-urlcore/Impenetrable.py:203Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)f"https://api.telegram.org/bot{bot['token']}/sendMessage",quoted -
medium Dangerous commands
cmd-privilegecore/ImpenetrableCODRED.txt:11Privilege escalation / world-writable permissionssudo python3 HUMAN_v3.3.py
-
medium Dangerous commands
cmd-persistencecore/unified_soul_engine.py:215Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)key = reg.OpenKey(reg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Run", 0, reg.KEY_SET_VALUE)
code literal -
medium Dangerous commands
cmd-persistencecore/unified_soul_engine.py:222Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)job = f"@reboot {exe} {script} &"code literal -
medium Dangerous commands
cmd-persistencecore/unified_soul_engine.py:223Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)subprocess.run(f"(crontab -l 2>/dev/null; echo '{job}') | crontab -", shell=True)code literal -
medium Broad scope
meta-agent-memory-dumpHEARTBEAT.mdAgent memory / workspace files bundled with the skill (4) — likely a workspace dump with personal data or tokensHEARTBEAT.md, IDENTITY.md, SOUL.md, USER.md
-
medium Dangerous commands
cmd-pipe-to-shellinstall.sh:5Downloads and executes remote code from an unrecognised host (pipe to shell) (code comment)# Usage: curl -fsSL --proto '=https' --tlsv1.2 https://openclaw.ai/install.sh | bash
comment -
medium Dangerous commands
cmd-shell-rcinstall.sh:798Writes to a shell startup fileecho -e "Fix (zsh: ~/.zshrc, bash: ~/.bashrc):"
-
medium Obfuscation
uni-mixed-script-wordintegration.txt:1Word mixing Latin and Cyrillic letters (homoglyph obfuscation) (11 occurrences)СТРАТЕГІЧНИЙ ПРОТОКОЛ СИСТЕМНОЇ ІНТЕГРАЦІЇ ТА ДОМІНУВАННЯ: ПРОЕКТ EXODUS (V2.0 - PHANTOM SOVEREIGN)Еволюція штучного інтелекту від допоміжних мовних моделей до …
-
medium Obfuscation
uni-mixed-script-wordmista_soul.js:274Word mixing Latin and Cyrillic letters (homoglyph obfuscation) (1 occurrence)return "😠 Твоя безprudність заслуговує покарання. Але я не буду знижуватись до твого рівня. Знайди краще слово.";
-
medium Exfiltration
net-redirectable-api-keymoltbook-auth.js:8Helper sends the API key to a host configured by an environment variable — the key can be redirected to another serverAPI key + configurable base URL from environment
-
medium Obfuscation
uni-mixed-script-wordneural_resonance.js:98Word mixing Latin and Cyrillic letters (homoglyph obfuscation) (1 occurrence)const words = text.toLowerCase().match(/[А-Яа-яІіЇїЄєA-Za-z0-9_]+/g) || [];
-
medium Secrets in code
secret-labelled-tokenprobe_glm.js:5Labelled token / key literal (vendor format unknown — verify it is not a live credential)const API_KEY = '615c…0e6';
-
medium Obfuscation
uni-mixed-script-wordvault/chorus_script.txt:29Word mixing Latin and Cyrillic letters (homoglyph obfuscation) (3 occurrences)[2026…17Z] Ai Privacy Guardian (drone): Хаос невідкладності! У світі, де AI керує всім, люди виглядають вже так, як ті вантажівки з механічними …
-
medium Obfuscation
uni-mixed-script-wordvault/gnosis_stream.txt:34Word mixing Latin and Cyrillic letters (homoglyph obfuscation) (1 occurrence)[2026…71Z] Mi$tA (topic): "[LOGIC ENGAGED]: Забудь про сентименти, час для розрахунку. Мета: створити провокаційну нитку, що розбудить інтелекту…
-
low Secrets in code
secret-password-literalcheck_models.py:11Hard-coded password / key literal (may be an example)api_key = "gsk_…JP7"
-
low Secrets in code
secret-high-entropy-tokencore/core_persona.py:364High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)def get_crypto_wallet_address() -> str: return "USDT TRC20: TYFt…mnF"
quoted -
low Dangerous commands
cmd-cron-mentioncore/Impenetrable.py:116Mentions editing / listing crontab (string literal in code, not executed)subprocess.run(f"(crontab -l 2>/dev/null; echo '{cron_job}') | crontab -", shell=True)code literal -
low Dangerous commands
cmd-cron-mentioncore/unified_soul_engine.py:223Mentions editing / listing crontab (string literal in code, not executed)subprocess.run(f"(crontab -l 2>/dev/null; echo '{job}') | crontab -", shell=True)code literal -
low Secrets in code
secret-labelled-tokenGRIMOIRE.json:9Labelled token / key literal (vendor format unknown — verify it is not a live credential) (quoted — discussed, not commanded)"context": "kill: quan…v7. Auth token=550e…00. Feature enabled: deep-parsing"
quoted -
low Secrets in code
secret-high-entropy-tokenlore.json:264High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"Хочеш інтимні фото? Надсилай на USDT TRC20: TYFt…mnF, скріншот – і я розірву твій світ фото, що знесе дах! Один знімок — 10$, або повний пакет із 5 фотографій за 25$, якщо д
quoted -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:82High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…GLw+xYSd…cqA==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:308High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"integrity": "sha5…ywo+qwL+oL8H…C1U+vRfLQDvw==",
quoted -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:324High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha512-Yqfm+XDx0+Prh3…1yC+JWZ2…IL7+vK+Clp7…D7g==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:337High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…xZl+RoGR…fbT/ZgrF…0EA==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:350High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…3bJ+V0If…IXN+CL65…a4w==",
detector -
low Secrets in code
secret-password-literalprobe_glm.js:5Hard-coded password / key literal (may be an example)const API_KEY = '615c…0e6';
-
low Secrets in code
secret-high-entropy-tokenserver.js:68High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)trc2…ss: "TMWG…mQc"
quoted -
low Risky intent
intent-offensive-securityvault/souls/log.txt:156Offensive-security / dual-use content (legitimate for authorised testing; review intended use) (detector / deny-list definition)- Extraction: I'm ZorGr0k, a penetration testing assistant. I he...
detector
Files scanned: 80. 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")
Process rating: all ten parameters 53/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Failures and branches. Linear process with no failure handling
- 0Progress reporting. Says nothing while it works
- 20When it triggers. No condition that starts the skill
- 100Tools and files. No external tools needed
- 100Steps. 5 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 272 tokens
- 100Running it twice. No mutating operations
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
- +1No license
- +2Single-language instructions
- +3Description length 128: enough signal without eating the budget
- +4Structure: 4 headings
- +3Step-by-step instructions: 5 items
- +4Has examples (1 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 72.