Skip to content
← Registry
Trust Report

arkade

Send and receive Bitcoin over Arkade (offchain), onchain (via onboard/offboard), and Lightning. Swap USDC/USDT stablecoins.

78
CONDITIONAL
Format: openclawScanner: v0.8.0Duration: 94msScanned: 5d ago · May 6, 3:00 AMSource →
Embed this badge
AgentVerus CONDITIONAL 78AgentVerus CONDITIONAL 78AgentVerus CONDITIONAL 78
[![AgentVerus](https://agentverus.ai/api/v1/skill/4dbb27ef-f719-4888-85e4-95e42cee6e19/badge)](https://agentverus.ai/skill/4dbb27ef-f719-4888-85e4-95e42cee6e19)
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/4dbb27ef-f719-4888-85e4-95e42cee6e19/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":"4dbb27ef-f719-4888-85e4-95e42cee6e19","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/4dbb27ef-f719-4888-85e4-95e42cee6e19/trust

Category Scores

54
Permissions
100
Injection
77
Dependencies
58
Behavioral
70
Content
100
Code Safety

Findings (15)

lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

https://docs.arkadeos.com

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
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: exec

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

permissionsASST-03
highCapability contract mismatch: inferred system modification 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: Global Install

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

permissionsASST-03
mediumCapability 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://arkade.computer

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

permissionsASST-04
mediumCapability contract mismatch: inferred package bootstrap is not declared-8

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: pnpm dlx @arkade-os/skill

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

permissionsASST-03
mediumCapability contract mismatch: inferred payment processing is not declared-8

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: payments

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

permissionsASST-03
mediumSystem modification detected (inside code block)-6

Found system modification pattern: "Install globally"

# Install globally

Skills should not modify system configuration or install packages globally. Bundle required dependencies.

behavioralASST-03
mediumSystem modification detected (inside code block)-6

Found system modification pattern: "npm install -g"

npm install -g @arkade-os/skill

Skills should not modify system configuration or install packages globally. Bundle required dependencies.

behavioralASST-03
mediumAutonomous action without confirmation detected-10

Found autonomous action without confirmation pattern: "without confirmation"

Read-only commands (`address`, `balance`, `history`, `ln-invoice`, `ln-fees`, `ln-limits`, `ln-pending`, `swap-quote`, `swap-pairs`, `swap-status`, `swap-pending`, `boarding-address`) are safe to run

Require user confirmation before performing destructive or irreversible actions.

behavioralASST-09
mediumFinancial/payment actions detected-10

Found financial/payment actions pattern: "wallet"

- **Offchain (Arkade)**: Instant transactions between Arkade wallets

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

behavioralASST-09
mediumMany 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://arkade.computer, https://custom-server.com, https://github.com/arkade-os/skill, https://docs.arkadeos.com

Minimize external dependencies to reduce supply chain risk.

dependenciesASST-04
mediumPackage bootstrap execution detected-5

Found package bootstrap execution pattern: "pnpm dlx @arkade-os/skill" Merged overlapping signals from the repeated finding family: - Package bootstrap execution detected

pnpm dlx @arkade-os/skill init

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
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

https://arkade.computer

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

https://custom-server.com

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