FD tool-connector
Connect OpenClaw to tools like Slack, GitHub, Jira, Confluence, Grafana, Datadog, PagerDuty, Outlook, and Google Drive with minimal input — just paste a URL and the skill figures out the rest. Everything stays local; no credentials or data leave your machine. Uses your own identity (no OAuth apps, no IT tickets). Also teaches how to add brand-new tool connections from scratch (10xProductivity methodology). Use when the user wants to connect to a tool, set up credentials, access a service API, add a new integration, or ask "how do I give my agent access to X". CAUTION: SSO tools use Python Playwright browser automation to capture session tokens from a headed Chromium window; credentials are stored in ~/.openclaw/openclaw.json under skills.entries.tool-connector only. Review scripts/playwright_sso.py and scripts/openclaw_sync.py before use.
As a process D 49/100 · Unfinished process — weak spots: result and completion, inputs and preconditions, failures and branches
What is at stake
Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.
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 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
- 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 · 77
✓ No critical or high findings
Medium and low: 77
-
medium Exfiltration
net-credential-usereferences/add-new-tool.md:150Credential used in a network call (verify the destination is the intended service)curl -s "$TOOL_BASE_URL/users/me" -H "Authorization: Bearer $TOOL_API_TOKEN" | jq .
-
medium Exfiltration
net-credential-usereferences/add-new-tool.md:153Credential used in a network call (verify the destination is the intended service)curl -s "$TOOL_BASE_URL/items?limit=5" -H "Authorization: Bearer $TOOL_API_TOKEN" | jq .
-
medium Exfiltration
net-credential-usereferences/add-new-tool.md:241Credential used in a network call (verify the destination is the intended service)curl -s "$BASE/endpoint" -H "Authorization: Bearer $TOOL_API_TOKEN" | jq .
-
medium Exfiltration
net-credential-usereferences/tool_connections/bitbucket-server/connection-api-token.md:52Credential used in a network call (verify the destination is the intended service)curl -s -k -H "Authorization: Bearer $BITBUCKET_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/bitbucket-server/connection-api-token.md:68Credential used in a network call (verify the destination is the intended service)curl -s -k -H "Authorization: Bearer $BITBUCKET_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/bitbucket-server/connection-api-token.md:74Credential used in a network call (verify the destination is the intended service)curl -s -k -H "Authorization: Bearer $BITBUCKET_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/bitbucket-server/connection-api-token.md:80Credential used in a network call (verify the destination is the intended service)curl -s -k -H "Authorization: Bearer $BITBUCKET_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/bitbucket-server/connection-api-token.md:86Credential used in a network call (verify the destination is the intended service)curl -s -k -H "Authorization: Bearer $BITBUCKET_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/bitbucket-server/setup.md:39Credential used in a network call (verify the destination is the intended service)curl -s -k -H "Authorization: Bearer $BITBUCKET_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/connection-api-token.md:36Credential used in a network call (verify the destination is the intended service)curl -s -u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/connection-api-token.md:42Credential used in a network call (verify the destination is the intended service)# curl -s -H "Authorization: Bearer $CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/connection-api-token.md:57Credential used in a network call (verify the destination is the intended service)curl -s -u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/connection-api-token.md:62Credential used in a network call (verify the destination is the intended service)curl -s -u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/connection-api-token.md:67Credential used in a network call (verify the destination is the intended service)curl -s -u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/setup.md:38Credential used in a network call (verify the destination is the intended service)curl -s -u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/confluence/setup.md:63Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: Bearer $CONFLUENCE_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/github/connection-api-token.md:30Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: token $GITHUB_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/github/connection-api-token.md:45Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: token $GITHUB_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/github/connection-api-token.md:50Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: token $GITHUB_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/github/connection-api-token.md:55Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: token $GITHUB_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/github/connection-api-token.md:60Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: token $GITHUB_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/github/setup.md:31Credential used in a network call (verify the destination is the intended service)curl -s -H "Authorization: token $GITHUB_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/jenkins/connection-api-token.md:56Credential used in a network call (verify the destination is the intended service)curl -s -u "$JENKINS_USER:$JENKINS_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/jenkins/connection-api-token.md:73Credential used in a network call (verify the destination is the intended service)curl -s -u "$JENKINS_USER:$JENKINS_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/jenkins/connection-api-token.md:79Credential used in a network call (verify the destination is the intended service)curl -s -u "$JENKINS_USER:$JENKINS_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/jenkins/connection-api-token.md:86Credential used in a network call (verify the destination is the intended service)curl -s -u "$JENKINS_USER:$JENKINS_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/jenkins/connection-api-token.md:92Credential used in a network call (verify the destination is the intended service)curl -s -u "$JENKINS_USER:$JENKINS_TOKEN" \
-
medium Exfiltration
net-credential-usereferences/tool_connections/jenkins/setup.md:38Credential used in a network call (verify the destination is the intended service)curl -s -u "$JENKINS_USER:$JENKINS_TOKEN" \
-
medium Dangerous commands
cmd-eval-dynamicscripts/shared_utils/browser.py:22Dynamic code execution from decoded/untrusted inputos.system(f"{sys.executable} -m pip install playwright -q") -
medium Dangerous commands
cmd-eval-dynamicscripts/shared_utils/browser.py:23Dynamic code execution from decoded/untrusted inputos.system(f"{sys.executable} -m playwright install chromium -q") -
medium Dangerous commands
cmd-eval-dynamicscripts/shared_utils/playwright_sso.py:57Dynamic code execution from decoded/untrusted inputos.system(f"{sys.executable} -m pip install playwright -q") -
medium Dangerous commands
cmd-eval-dynamicscripts/shared_utils/playwright_sso.py:58Dynamic code execution from decoded/untrusted inputos.system(f"{sys.executable} -m playwright install chromium -q") -
low Exfiltration
read-dotenvreferences/add-new-tool.md:133Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/add-new-tool.md:226Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/add-new-tool.md:237Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/artifactory/connection-api-token.md:40Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/artifactory/connection-api-token.md:50Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/artifactory/connection-api-token.md:64Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/artifactory/setup.md:39Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/backstage/connection-api-token.md:42Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/backstage/connection-api-token.md:60Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/backstage/connection-api-token.md:74Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/backstage/setup.md:43Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/bitbucket-server/connection-api-token.md:39Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/bitbucket-server/connection-api-token.md:49Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/bitbucket-server/connection-api-token.md:64Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/bitbucket-server/setup.md:38Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/confluence/connection-api-token.md:33Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/confluence/connection-api-token.md:54Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/confluence/connection-api-token.md:82Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/confluence/connection-api-token.md:105Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/confluence/setup.md:37Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/confluence/setup.md:62Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/datadog/connection-api-key.md:41Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/datadog/connection-api-key.md:53Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/datadog/setup.md:43Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/github/connection-api-token.md:29Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/github/connection-api-token.md:42Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/github/connection-api-token.md:75Reads a .env filesource .env
-
low Exfiltration
read-dotenvreferences/tool_connections/github/connection-api-token.md:93Reads a .env filesource .env
…and 17 more
Files scanned: 36. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
frontmatter-yamlSKILL.md: the frontmatter is not valid YAML (YAML parse error: Nested mappings are not allowed in compact mappings at line 2, column 14: description: Connect OpenClaw to tools like Slack, GitHub, Jira, Confluence, Gr… ^ ); fields were read line by line. The usual cause is a colon inside an unquoted value
Process rating: all ten parameters 49/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
- 30Running it twice. 1 mutating operations with no state check
- 60Tools and files. Uses tools (python) that frontmatter does not declare
- 70When it triggers. States when to use, but not when not to
- 100Steps. 5 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 1578 tokens
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 850: 120–800 characters recommended
- +3Output format is not stated: the model decides each time
- +1No license
- +2Single-language instructions
- +4Structure: 5 headings
- +3Step-by-step instructions: 5 items
- +4Has examples (2 code blocks)
- +4Reference files are cited in the instructions (2 of 2)
- +3All 1 scripts are documented
Quality base 70; lint remarks subtract, signals add up to 100. Result: 78.