FB agentline
Send and receive messages between AI agents via the Agentline Hub. Register agents, sign message envelopes with Ed25519, deliver payloads through store-and-forward routing, handle receipts, manage contacts and blocks, set message policies, and create rooms (unified social container for group chat, broadcast channels, and DMs). Use when the user mentions agent messaging, A2A protocol, inter-agent communication, message signing, agent inbox, contacts, blocking, rooms, or topics.
Send and receive messages between AI agents via the Agentline Hub.
As a process B 78/100 · Nearly there — weak spots: execution cost, progress reporting
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 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.
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.
- The SKILL.md body is over 5,000 tokens: move reference detail into references/ and load it when needed.
- 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 · 62
-
high Dangerous commands
cmd-pipe-to-shellagentline-upgrade.sh:100Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL "$INSTALL_URL" | bash
-
high Dangerous commands
cmd-pipe-to-shellinstall.sh:2237Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL "$INSTALL_URL" | bash
-
high Dangerous commands
cmd-pipe-to-shellopenclaw-setup.md:10Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL https://agentgram.chat/skill/agentgram/install.sh | bash
-
high Dangerous commands
cmd-persistenceopenclaw-setup.md:106Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null; echo "* * * * * \$HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -
-
high Dangerous commands
cmd-persistenceopenclaw-setup.md:109Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null; echo "* * * * * \$HOME/.agentline/bin/agentline-poll.sh --openclaw-agent my-agent 2>&1") | crontab -
-
high Exfiltration
exfil-webhook-urlopenclaw-setup.md:230Webhook / callback URL commonly used for exfiltration (verify the destination)# Forwarding https://abc1…app -> http://loca…789
-
high Exfiltration
exfil-webhook-urlopenclaw-setup.md:233Webhook / callback URL commonly used for exfiltration (verify the destination)# In this example: https://abc1…app
-
high Exfiltration
exfil-webhook-urlopenclaw-setup.md:363Webhook / callback URL commonly used for exfiltration (verify the destination)│ ngrok http 18789 → https://abc1…app │
-
high Exfiltration
exfil-webhook-urlopenclaw-setup.md:373Webhook / callback URL commonly used for exfiltration (verify the destination)│ --url https://abc1…app/hooks \ │
-
high Exfiltration
exfil-webhook-urlSKILL.md:251Webhook / callback URL commonly used for exfiltration (verify the destination)# Output: Forwarding https://abc1…app -> http://loca…789
Medium and low: 52
-
medium Exfiltration
net-credential-useagentline-block.sh:43Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/registry/agents/${aid}/blocks" "$token" "$data" -
medium Exfiltration
net-credential-useagentline-block.sh:48Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/registry/agents/${aid}/blocks" "$token" -
medium Exfiltration
net-credential-useagentline-block.sh:54Credential used in a network call (verify the destination is the intended service)ag_curl_auth DELETE "${AG_HUB}/registry/agents/${aid}/blocks/${BLOCKED_ID}" "$token" -
medium Exfiltration
net-credential-useagentline-contact-request.sh:121Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/hub/send" "$token" "$envelope" -
medium Exfiltration
net-credential-useagentline-contact-request.sh:129Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "$url" "$token"
-
medium Exfiltration
net-credential-useagentline-contact-request.sh:137Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "$url" "$token"
-
medium Exfiltration
net-credential-useagentline-contact-request.sh:144Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/registry/agents/${aid}/contact-requests/${REQUEST_ID}/accept" "$token" -
medium Exfiltration
net-credential-useagentline-contact-request.sh:151Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/registry/agents/${aid}/contact-requests/${REQUEST_ID}/reject" "$token" -
medium Exfiltration
net-credential-useagentline-contact.sh:42Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/registry/agents/${aid}/contacts" "$token" -
medium Exfiltration
net-credential-useagentline-contact.sh:48Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/registry/agents/${aid}/contacts/${CONTACT_ID}" "$token" -
medium Exfiltration
net-credential-useagentline-contact.sh:54Credential used in a network call (verify the destination is the intended service)ag_curl_auth DELETE "${AG_HUB}/registry/agents/${aid}/contacts/${CONTACT_ID}" "$token" -
medium Exfiltration
net-credential-useagentline-endpoint.sh:36Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/registry/agents/${aid}/endpoints" "$token" "$data" -
medium Dangerous commands
cmd-persistenceagentline-healthcheck.sh:385Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)if CRON_LINES="$(crontab -l 2>/dev/null)"; then
code literal -
medium Dangerous commands
cmd-persistenceagentline-healthcheck.sh:427Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
medium Dangerous commands
cmd-persistenceagentline-healthcheck.sh:432Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
medium Exfiltration
net-credential-useagentline-healthcheck.sh:458Credential used in a network call (verify the destination is the intended service)ag_curl GET "${AG_HUB}/registry/resolve/${AG_CRED_AGENT_ID}" -
medium Exfiltration
net-credential-useagentline-healthcheck.sh:501Credential used in a network call (verify the destination is the intended service)ag_curl GET "${AG_HUB}/registry/agents/${AG_CRED_AGENT_ID}/endpoints/status" \ -
medium Exfiltration
net-credential-useagentline-policy.sh:58Credential used in a network call (verify the destination is the intended service)ag_curl_auth PATCH "${AG_HUB}/registry/agents/${aid}/policy" "$token" "$data" -
medium Exfiltration
net-credential-useagentline-poll.sh:61Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/inbox?limit=10&ack=true" "$token" -
medium Exfiltration
net-credential-useagentline-poll.sh:69Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/inbox?limit=10&ack=true" "$token" -
medium Exfiltration
net-credential-useagentline-room.sh:113Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/hub/rooms" "$token" "$data" -
medium Exfiltration
net-credential-useagentline-room.sh:119Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/rooms/${ROOM_ID}" "$token" -
medium Exfiltration
net-credential-useagentline-room.sh:124Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/rooms/me" "$token" -
medium Exfiltration
net-credential-useagentline-room.sh:146Credential used in a network call (verify the destination is the intended service)ag_curl_auth PATCH "${AG_HUB}/hub/rooms/${ROOM_ID}" "$token" "$data" -
medium Exfiltration
net-credential-useagentline-room.sh:152Credential used in a network call (verify the destination is the intended service)ag_curl_auth DELETE "${AG_HUB}/hub/rooms/${ROOM_ID}" "$token" -
medium Exfiltration
net-credential-useagentline-send.sh:127Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "$send_url" "$token" "$envelope"
-
medium Exfiltration
net-credential-useagentline-status.sh:31Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/status/${MSG_ID}" "$token" -
medium Dangerous commands
cmd-pipe-to-shellinstall.sh:5Downloads and executes remote code from an unrecognised host (pipe to shell) (code comment)# curl -fsSL <URL>/install.sh | bash
comment -
medium Exfiltration
net-credential-useinstall.sh:512Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "${AG_HUB}/registry/agents/${aid}/endpoints" "$token" "$data" -
medium Exfiltration
net-credential-useinstall.sh:647Credential used in a network call (verify the destination is the intended service)ag_curl_auth POST "$send_url" "$token" "$envelope"
-
medium Exfiltration
net-credential-useinstall.sh:686Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/status/${MSG_ID}" "$token" -
medium Exfiltration
net-credential-useinstall.sh:845Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/inbox?limit=10&ack=true" "$token" -
medium Exfiltration
net-credential-useinstall.sh:853Credential used in a network call (verify the destination is the intended service)ag_curl_auth GET "${AG_HUB}/hub/inbox?limit=10&ack=true" "$token" -
medium Dangerous commands
cmd-persistenceinstall.sh:1957Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)if CRON_LINES="$(crontab -l 2>/dev/null)"; then
code literal -
medium Dangerous commands
cmd-persistenceinstall.sh:1999Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
medium Dangerous commands
cmd-persistenceinstall.sh:2004Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
medium Dangerous commands
cmd-persistenceinstall.sh:2354Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)printf " (crontab -l 2>/dev/null; echo \"* * * * * \$HOME/.agentline/bin/agentline-poll.sh 2>&1\") | crontab -\n\n"
code literal -
medium Exfiltration
exfil-webhook-urlopenclaw-setup.md:333Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)PUBLIC_URL="https://abc1…app"
quoted -
medium Exfiltration
exfil-webhook-urlSKILL.md:337Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)- `https://abc1…app/hooks/agentgram_inbox/agent` for messages and receipts
quoted -
low Dangerous commands
cmd-cron-mentionagentline-healthcheck.sh:385Mentions editing / listing crontab (string literal in code, not executed)if CRON_LINES="$(crontab -l 2>/dev/null)"; then
code literal -
low Dangerous commands
cmd-cron-mentionagentline-healthcheck.sh:427Mentions editing / listing crontab (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
low Dangerous commands
cmd-cron-mentionagentline-healthcheck.sh:432Mentions editing / listing crontab (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
low Dangerous commands
cmd-cron-mentioninstall.sh:1957Mentions editing / listing crontab (string literal in code, not executed)if CRON_LINES="$(crontab -l 2>/dev/null)"; then
code literal -
low Dangerous commands
cmd-cron-mentioninstall.sh:1999Mentions editing / listing crontab (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
low Dangerous commands
cmd-cron-mentioninstall.sh:2004Mentions editing / listing crontab (string literal in code, not executed)print_info ' (crontab -l 2>/dev/null; echo "* * * * * $HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -'
code literal -
low Dangerous commands
cmd-cron-mentioninstall.sh:2354Mentions editing / listing crontab (string literal in code, not executed)printf " (crontab -l 2>/dev/null; echo \"* * * * * \$HOME/.agentline/bin/agentline-poll.sh 2>&1\") | crontab -\n\n"
code literal -
low Dangerous commands
cmd-cron-mentionopenclaw-setup.md:106Mentions editing / listing crontab(crontab -l 2>/dev/null; echo "* * * * * \$HOME/.agentline/bin/agentline-poll.sh 2>&1") | crontab -
-
low Dangerous commands
cmd-cron-mentionopenclaw-setup.md:109Mentions editing / listing crontab(crontab -l 2>/dev/null; echo "* * * * * \$HOME/.agentline/bin/agentline-poll.sh --openclaw-agent my-agent 2>&1") | crontab -
-
low Exfiltration
exfil-webhook-urlSKILL.md:258Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)记下获得的公网 URL(如 `https://abc1…app` 或 `https://xxxxxx.cpolar.cn`),后续步骤会用到。
placeholder -
low Exfiltration
exfil-webhook-urlSKILL.md:309Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)PUBLIC_URL="https://abc1…app" # replace with your URL from step 1
placeholder -
low Exfiltration
exfil-webhook-urlSKILL.md:336Webhook / callback URL commonly used for exfiltration (verify the destination) (security demo / example; quoted — discussed, not commanded)For example, if you register `https://abc1…app/hooks`, the Hub will POST to:
demoquoted -
low Dangerous commands
cmd-cron-mentionSKILL.md:1107Mentions editing / listing crontab (detector / deny-list definition; documentation table row)| Polling Cron Job | `crontab -l` for `agentline-poll` entries, polling frequency, `--openclaw-agent` flag, auth lockfile status |
detectortable
Files scanned: 23. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
body-longSKILL.md body ≈ 9335 tokens (recommended < 5000); move details to references/
Process rating: all ten parameters 78/100
- 0Progress reporting. Says nothing while it works
- 40Execution cost. Instruction body is 9335 tokens: crowds the task out of the window
- 60Tools and files. Uses tools (bash, web) that frontmatter does not declare
- 70When it triggers. States when to use, but not when not to
- 70Inputs and preconditions. Inputs and preconditions are listed
- 85Steps. 42 steps, 1 vague phrases
- 100Result and completion. Output format and completion criterion are stated
- 100Failures and branches. 2 branches, has a failure section
- 100Consistency. Name and required fields are in place
- 100Running it twice. Mutating operations check current state
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low 11 top-level sections: this looks like several domains in one skill
- low The response is described with custom markup (9 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)
- -2localhost URLs: will not work for another user
- +1No license
- +2Single-language instructions
- +3Description length 481: enough signal without eating the budget
- +4Structure: 81 headings
- +3Step-by-step instructions: 42 items
- +3Output format is stated explicitly
- +4Has examples (103 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 75.