Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Cloud Service Mapper & Decision Advisor

v1.0.0

AI-powered cloud service mapping and provider recommendation across Azure, AWS, and Google Cloud.

0· 7·0 current·0 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name, description, example request/response, and openapi.json all describe a cloud‑mapping API — that is internally consistent with the stated purpose. However the bundle provides no server/base URL or any guidance on how to call the API or authenticate, despite listing pricing tiers (implying an external paid service). The absence of an endpoint or required credentials makes the skill unusable as packaged and is inconsistent with the advertised capability.
!
Instruction Scope
SKILL.md and openapi.json describe endpoints and payloads but do not instruct the agent how to reach the service (no base URL, no auth flow) or where results are stored. The instructions are therefore vague and grant broad discretion: an agent given this skill could attempt to send workload descriptions to any endpoint if a human or another component provides one. While the file does not instruct reading local files or environment variables, the vagueness about destination and authentication increases risk of accidental data exfiltration if the agent is later pointed to an untrusted host.
Install Mechanism
This is an instruction‑only skill with no install spec and no code files to execute. That is low risk from an installation/execution perspective — nothing is written to disk or fetched during install by the package itself.
!
Credentials
The skill declares no required environment variables or credentials, yet the documentation describes paid plans and a hosted service (ToolWeb.in). A real hosted API would normally require an API key, token, or account details; the lack of any declared credential requirement is inconsistent and unexplained. That mismatch raises the question of where and how authentication would be supplied, and whether callers might be asked to paste sensitive configuration into prompts.
Persistence & Privilege
The skill is not always-enabled, does not request persistent system-wide changes, and contains no install scripts. It does not ask to modify other skills or agent configuration. Autonomous model invocation is allowed by platform defaults, which is normal — however this combines with the other noted vagueness to increase potential blast radius if the agent is later directed to a malicious endpoint.
What to consider before installing
Do not install or run this skill for real workloads until the author provides missing operational details. Specifically: (1) ask for the service base URL(s) and confirm they are HTTPS and a legitimate domain (no shorteners or personal IPs); (2) request the authentication method (API key/OAuth) and where that credential will be stored—do not paste secrets into prompts; (3) get a privacy/data retention policy and confirm whether submitted workload descriptions are stored, logged, or shared; (4) ask for example cURL or SDK usage showing the actual endpoint and headers; (5) verify the vendor identity (ToolWeb.in details, contact, terms, billing); (6) test with non‑sensitive synthetic data first in a sandbox; and (7) if you must use it for real data, require an explicit contract that limits data retention and use. These gaps are not provably malicious but are inconsistent and could lead to accidental exposure of sensitive architecture or secrets.

Like a lobster shell, security has layers — review code before you run it.

latestvk977ccfgry0j6vb8sf5e05s03184251d

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Overview

The Multi-Cloud Service Mapper & Decision Advisor is an intelligent API that analyzes workload requirements and recommends optimal cloud services and providers. Built for organizations evaluating multi-cloud strategies, this tool uses AI to map business needs to Azure, AWS, and Google Cloud offerings—helping teams make data-driven infrastructure decisions.

Key capabilities include workload analysis with custom priorities, service category discovery, and provider metadata retrieval. The API considers team size, industry context, current cloud environment, and business priorities to deliver tailored recommendations. Ideal for cloud architects, DevOps teams, and organizations undergoing cloud migration or multi-cloud transformation initiatives.

Whether you're migrating from on-premises infrastructure, evaluating a second cloud platform, or optimizing service selection across providers, this tool reduces analysis time and ensures alignment with organizational constraints and goals.

Usage

Request: Analyze a microservices workload running on Kubernetes with cost and performance priorities.

{
  "workload_description": "Kubernetes-based microservices platform handling 10,000 requests per second with relational and NoSQL data stores",
  "selected_services": ["container-orchestration", "database", "api-gateway"],
  "current_cloud": "AWS",
  "priorities": ["cost-optimization", "performance", "security"],
  "team_size": "12",
  "industry": "fintech",
  "sessionId": "sess_12345abcde",
  "userId": 1001,
  "timestamp": "2025-01-15T14:30:00Z"
}

Response:

{
  "analysis_id": "analysis_67890xyz",
  "workload_summary": {
    "description": "Kubernetes-based microservices platform handling 10,000 requests per second with relational and NoSQL data stores",
    "services_analyzed": 3,
    "priorities_considered": 3
  },
  "recommendations": [
    {
      "provider": "AWS",
      "primary_services": [
        {
          "service_name": "EKS",
          "category": "container-orchestration",
          "rationale": "Native Kubernetes service with deep AWS integration and cost optimization tools",
          "confidence_score": 0.95
        },
        {
          "service_name": "RDS + DynamoDB",
          "category": "database",
          "rationale": "Relational and NoSQL hybrid approach with managed scaling",
          "confidence_score": 0.92
        }
      ],
      "overall_match_score": 0.94
    },
    {
      "provider": "Google Cloud",
      "primary_services": [
        {
          "service_name": "GKE",
          "category": "container-orchestration",
          "rationale": "Kubernetes-native platform with strong observability",
          "confidence_score": 0.91
        }
      ],
      "overall_match_score": 0.87
    }
  ],
  "decision_factors": {
    "cost_optimization": "AWS and GCP offer sustained-use discounts; GCP has aggressive pricing",
    "performance": "All three providers support low-latency Kubernetes deployments",
    "security": "Fintech compliance (SOC2, ISO27001) supported across all providers"
  },
  "migration_insights": "Migrating from AWS to multi-cloud is low-risk; GCP GKE provides strong alternative"
}

Endpoints

POST /api/cloud-mapper/analyze

Analyze Workload

Generate multi-cloud service mapping and decision analysis for a given workload.

Parameters:

NameTypeRequiredDescription
workload_descriptionstringYesDetailed description of the workload, infrastructure, and technical requirements
selected_servicesarray[string]NoList of cloud service categories to analyze (e.g., "container-orchestration", "database", "api-gateway")
current_cloudstring | nullNoCurrent cloud provider if migrating ("AWS", "Azure", "GCP")
prioritiesarray[string]NoBusiness and technical priorities such as "cost-optimization", "performance", "security", "compliance"
team_sizestring | nullNoTeam size managing the infrastructure (e.g., "5-10", "10-20", "20+")
industrystring | nullNoIndustry vertical (e.g., "fintech", "healthcare", "retail", "manufacturing")
sessionIdstringYesUnique session identifier for tracking and audit purposes
userIdinteger | nullNoUser ID for multi-tenant tracking and personalization
timestampstringYesISO 8601 timestamp of the request

Response: Returns analysis object containing recommendations from each provider with confidence scores, service mappings, decision factors, and migration insights.


GET /api/cloud-mapper/services

Get Services

Retrieve all supported cloud service categories available for analysis.

Parameters: None

Response: Returns array of service categories (e.g., "compute", "container-orchestration", "database", "storage", "networking", "security", "analytics", "ai-ml", "serverless", "api-gateway").


GET /api/cloud-mapper/providers

Get Providers

Retrieve provider metadata including name, region availability, and supported services.

Parameters: None

Response: Returns array of provider objects containing metadata for AWS, Azure, and Google Cloud (name, logo, regions, supported_services, documentation_url).


GET /

Root

Service health check and API metadata endpoint.

Parameters: None

Response: Returns service status and basic API information.

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…