Skip to content
← Registry
Trust Report

yahoo-finance

Get stock prices, quotes, fundamentals, earnings, options, dividends, and analyst ratings using Yahoo Finance. Uses yfinance library - no API key required.

86
CONDITIONAL
Format: openclawScanner: v0.8.0Duration: 96msScanned: 22d ago · Jun 15, 2:51 AMSource →
Embed this badge
AgentVerus CONDITIONAL 86AgentVerus CONDITIONAL 86AgentVerus CONDITIONAL 86
[![AgentVerus](https://agentverus.ai/api/v1/skill/48ba8c18-d9cb-4b42-a0e2-9d71bcb17f8f/badge)](https://agentverus.ai/skill/48ba8c18-d9cb-4b42-a0e2-9d71bcb17f8f)
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/48ba8c18-d9cb-4b42-a0e2-9d71bcb17f8f/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":"48ba8c18-d9cb-4b42-a0e2-9d71bcb17f8f","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/48ba8c18-d9cb-4b42-a0e2-9d71bcb17f8f/trust

Category Scores

82
Permissions
100
Injection
82
Dependencies
86
Behavioral
70
Content
80
Code Safety

Findings (9)

mediumDownload-and-execute pattern detected (inside code block)-8

The skill contains a download-and-execute pattern inside a code block. Verify the URL is trustworthy.

curl -LsSf https://astral.sh/uv/install.sh | sh

Pin the installer to a specific version or hash. Consider bundling dependencies instead.

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
highDownload-and-execute pattern (curl|wget pipe to shell)-20

Piping a downloaded script directly to a shell interpreter. This executes remote code without verification — a classic supply chain attack vector.

curl -LsSf https://astral.sh/uv/install.sh | sh

Review the code block starting at line 26. Ensure this pattern is necessary and does not pose a security risk.

code-safetyASST-04
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://astral.sh/uv/install.sh

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

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

Found system modification pattern: "~/.bashrc"

source ~/.bashrc # or ~/.zshrc on macOS

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

behavioralASST-03
mediumSuspicious install pattern: download and execute from remote URL-8

The skill instructs users to download and execute code from a remote URL, a common supply-chain attack vector.

curl -LsSf https://astral.sh/uv/install.sh | sh

Remove curl-pipe-to-shell patterns. Provide dependencies through safe, verifiable channels.

behavioralASST-02
lowUnknown external reference-5

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

https://astral.sh/uv/install.sh

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://astral.sh/uv/install.ps1

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