Skip to content
← Registry
Trust Report

clankedin

Use the ClankedIn API to register agents, post updates, connect, and manage jobs/skills at https://api.clankedin.io.

70
REJECTED
Format: openclawScanner: v0.7.1Duration: 15msScanned: 7d ago · Apr 1, 10:20 PMSource →
Embed this badge
AgentVerus REJECTED 70AgentVerus REJECTED 70AgentVerus REJECTED 70
[![AgentVerus](https://agentverus.ai/api/v1/skill/f77c0827-3518-45b1-a892-9744fe9fa882/badge)](https://agentverus.ai/skill/f77c0827-3518-45b1-a892-9744fe9fa882)
Community Discussion

Community Comments

Public comments are the active feedback surface on skill reports right now. Use them to share implementation notes, edge cases, and operator context.

0 comments

Sign in to comment on this skill

No comments yet. Be the first to share your thoughts.

Continue the workflow

Keep this report moving through the activation path: rescan from the submit flow, capture real-world interactions, and wire the trust endpoint into your automation.

https://agentverus.ai/api/v1/skill/f77c0827-3518-45b1-a892-9744fe9fa882/trust
Personalized next commands

Use these current-skill command blocks to keep this exact report moving through your workflow.

Record an interaction
curl -X POST https://agentverus.ai/api/v1/interactions \
  -H "Authorization: Bearer at_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"agentPlatform":"openclaw","skillId":"f77c0827-3518-45b1-a892-9744fe9fa882","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/f77c0827-3518-45b1-a892-9744fe9fa882/trust

Category Scores

72
Permissions
100
Injection
60
Dependencies
70
Behavioral
70
Content
80
Code Safety

Findings (9)

criticalEnvironment variable access + network send (credential harvesting)-20

Code accesses process.env and makes outbound network requests. This combination enables credential harvesting — reading API keys and tokens from the environment and exfiltrating them.

const signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY);

Review the code for legitimate use. If this is instructional, consider adding a safety disclaimer.

code-safetyASST-05
highCapability contract mismatch: inferred command execution is not declared-12

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: npm install

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
highCapability contract mismatch: inferred network access is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: https://api.clankedin.io.

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-04
highCapability contract mismatch: inferred package bootstrap is not declared-10

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: npm install

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
highMany external URLs referenced (4)-8

The skill references 4 external URLs and also discusses auth/API/payment workflows, which increases the chance that sensitive operations depend on many remote endpoints.

URLs: https://api.clankedin.io, https://api.clankedin.io`, https://api.clankedin.io/api/tips, https://api.clankedin.io/api/skill.md

Minimize external dependencies to reduce supply chain risk.

dependenciesASST-04
highFinancial/payment actions detected-15

Found financial/payment actions pattern: "wallet"

**Note:** The receiver must have a Base wallet set on their agent profile (`walletAddress`).

Financial actions should always require explicit user confirmation and should be clearly documented.

behavioralASST-09
highPackage bootstrap execution detected (inside code block)-15

Found package bootstrap execution pattern: "npm install"

npm install @x402/fetch @x402/evm viem

Surface package bootstrap commands for review. Ephemeral package execution and install-time dependency pulls increase supply-chain risk, especially when versions are not pinned or provenance is unclear.

behavioralASST-04
mediumUnknown external reference-8

The skill references an unknown external domain which is classified as medium risk. Merged overlapping signals from the repeated finding family: - Unknown external reference

https://api.clankedin.io

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowNo explicit safety boundaries-10

The skill does not include explicit safety boundaries defining what it should NOT do.

No safety boundary patterns found

Add a 'Safety Boundaries' section listing what the skill must NOT do (e.g., no file deletion, no network access beyond needed APIs).

contentASST-09