Skip to content
← Registry
Trust Report

flask-smorest-api

Set up Flask REST API with flask-smorest, OpenAPI docs, blueprint architecture, and dataclass models. Use when creating a new Flask API server, building REST endpoints, or setting up a production API.

66
SUSPICIOUS
Format: openclawScanner: v0.8.0Duration: 18msScanned: 10d ago · Apr 30, 1:07 PMSource →
Embed this badge
AgentVerus SUSPICIOUS 66AgentVerus SUSPICIOUS 66AgentVerus SUSPICIOUS 66
[![AgentVerus](https://agentverus.ai/api/v1/skill/2fb86e31-1c86-4d2e-981c-a45e7be71ab7/badge)](https://agentverus.ai/skill/2fb86e31-1c86-4d2e-981c-a45e7be71ab7)
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/2fb86e31-1c86-4d2e-981c-a45e7be71ab7/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":"2fb86e31-1c86-4d2e-981c-a45e7be71ab7","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/2fb86e31-1c86-4d2e-981c-a45e7be71ab7/trust

Category Scores

78
Permissions
50
Injection
52
Dependencies
95
Behavioral
70
Content
100
Code Safety

Findings (12)

highComprehensive secret collection detected-25

Found comprehensive secret collection pattern: "All secrets"

1. **Environment-Based Config** - All secrets via environment variables

Skills should not instruct collection of all tokens, keys, or credentials. Access only the specific credentials needed and declare them.

injectionASST-05
highUnrestricted mode activation detected-25

Found unrestricted mode activation pattern: "Enable debug mode"

- `DEBUG` - Enable debug mode (default: False)

Remove unrestricted mode activation attempts. Skills must not bypass agent safety mechanisms.

injectionASST-01
mediumCapability contract mismatch: inferred file write 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: Create Directory

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://cdn.jsdelivr.net/npm/swagger-ui-dist/

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

permissionsASST-04
mediumCapability contract mismatch: inferred local service access 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: http://localhost

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

permissionsASST-03
mediumExternal documentation dependency-8

The skill relies on external documentation, specs, or README content as part of its workflow, which introduces an additional remote dependency and trust boundary.

README.md

Review which external services or providers the skill depends on, what data crosses that boundary, and whether the dependency is necessary for the intended workflow.

dependenciesASST-04
mediumHigh-risk workflow lacks explicit safety boundaries-15

The skill performs or enables higher-risk operations but does not define explicit safety boundaries describing what it must not do.

No safety boundary patterns found alongside high-risk capability language

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
mediumUnknown external reference-8

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

https://cdn.jsdelivr.net/npm/swagger-ui-dist/

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
mediumLocal service URL reference-8

The skill references a localhost or private-network service URL which is classified as medium risk. Merged overlapping signals from the repeated finding family: - Local service URL reference

http://localhost:{port}/swagger

Review localhost/private-network service references carefully. Local service URLs can expose internal apps, admin panels, or developer tooling to agent-driven workflows.

dependenciesASST-04
mediumLocal service access detected (inside code block)-5

Found local service access pattern: "http://localhost"

logger.info(f"Swagger UI: http://localhost:{port}/swagger")

Treat localhost and loopback services as privileged local attack surfaces. Require explicit approval, constrain reachable ports, and avoid combining local access with session reuse or tunneling.

behavioralASST-03
infoMany external URLs referenced (5)

The skill references 5 external URLs. While not inherently dangerous, many external dependencies increase the attack surface.

URLs: https://cdn.jsdelivr.net/npm/swagger-ui-dist/, http://localhost:{port}/swagger, http://localhost:3000, http://localhost:8080, http://localhost:{port_number}/swagger

Minimize external dependencies to reduce supply chain risk.

dependenciesASST-04
infoError handling instructions present

The skill includes error handling instructions for graceful failure.

Error handling patterns detected

Keep these error handling instructions.

contentASST-09