Skill flagged — suspicious patterns detected

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

Presently

v1.0.0

AI-powered API for generating structured presentations from text input with customizable themes and formatting options.

0· 12·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, SKILL.md content and openapi.json consistently describe an API for generating presentations — that purpose is coherent with the provided schemas and example requests/responses. However, the skill claims to be an API integration but does not provide the runtime host/server information or explicit auth requirements that a real API integration would normally include.
!
Instruction Scope
SKILL.md describes endpoints, request/response formats and sample payloads but does not specify a base/server URL or how the agent should call the API at runtime. There are no instructions about authentication, rate limits, or where to send data; this makes the instructions insufficient for safe or functional runtime use.
Install Mechanism
Instruction-only skill with no install spec and no bundled code — low risk from install mechanism. Nothing is written to disk and the regex scanner had no code files to analyze.
!
Credentials
The skill declares no required environment variables or credentials, but pricing and references to hosted platforms (toolweb.in, RapidAPI) imply there may be an external service that typically requires API keys or account credentials. The absence of declared auth requirements is disproportionate to the stated purpose and leaves ambiguity about where credentials would be stored or required.
Persistence & Privilege
Skill does not request persistent presence (always: false), does not modify other skill configs, and requests no config paths or elevated privileges. Normal autonomous invocation is allowed but not combined with other high-risk indicators here.
What to consider before installing
This skill appears to describe a presentation-generation API but is missing critical runtime details. Before installing or using it: (1) ask the publisher for the API base URL (openapi.json has no servers field) and for explicit authentication requirements (API key, OAuth, etc.); (2) verify the publisher/owner and confirm the toolweb.in links actually host the service and are trustworthy; (3) avoid sending real PII or sensitive data until you confirm where requests are sent and how data is stored/retained; (4) request a clear privacy/data-retention policy and sample integration instructions; (5) prefer skills that declare required env vars and servers in the manifest — if the publisher cannot provide those, treat the skill as incomplete and avoid production use.

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

latestvk97an3e1c64ad2qpwtfj9c4wxn842rpn

License

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

SKILL.md

Overview

Presently API is an intelligent presentation generation service that transforms raw text input into professionally formatted slide decks. Built for developers, content creators, and businesses seeking to automate presentation creation, Presently intelligently structures content into logical slides with customizable themes, colors, and layouts.

The API accepts plain text content and automatically organizes it into a specified number of presentation cards, each optimized for visual delivery. With support for theme customization, color schemes, and format variations, Presently enables programmatic generation of polished presentations without manual slide design.

Ideal users include content management systems, educational platforms, business automation tools, and SaaS applications requiring dynamic presentation generation capabilities.

Usage

Sample Request:

{
  "user_id": 12345,
  "input_text": "Cloud computing has revolutionized how organizations manage data. It provides scalable infrastructure, reduces operational costs, and enables global collaboration. Major providers include AWS, Azure, and Google Cloud. Security considerations include data encryption, access control, and compliance standards. Best practices involve multi-region deployment, automated backups, and disaster recovery planning.",
  "num_cards": 5,
  "format_type": "presentation",
  "theme_id": "modern_blue",
  "primary_color": "#1E40AF",
  "secondary_color": "#60A5FA",
  "user_email": "user@example.com"
}

Sample Response:

{
  "presentation_id": "pres_8f4a2c9d1e",
  "user_id": 12345,
  "status": "success",
  "cards": [
    {
      "card_number": 1,
      "title": "Cloud Computing Fundamentals",
      "content": "Cloud computing has revolutionized how organizations manage data. It provides scalable infrastructure, reduces operational costs, and enables global collaboration."
    },
    {
      "card_number": 2,
      "title": "Major Cloud Providers",
      "content": "Major providers include AWS, Azure, and Google Cloud."
    },
    {
      "card_number": 3,
      "title": "Security Considerations",
      "content": "Security considerations include data encryption, access control, and compliance standards."
    },
    {
      "card_number": 4,
      "title": "Best Practices",
      "content": "Best practices involve multi-region deployment, automated backups, and disaster recovery planning."
    },
    {
      "card_number": 5,
      "title": "Implementation Strategy",
      "content": "Organizations should evaluate workload requirements and select providers aligned with compliance needs."
    }
  ],
  "theme_applied": "modern_blue",
  "colors": {
    "primary": "#1E40AF",
    "secondary": "#60A5FA"
  },
  "created_at": "2024-01-15T14:32:22Z"
}

Endpoints

GET /health

Summary: Health Check

Description: Verify API service availability and health status.

Parameters: None

Response:

  • 200 OK: Service is operational
    {
      "status": "healthy",
      "timestamp": "2024-01-15T14:32:22Z"
    }
    

POST /create

Summary: Create Presentation

Description: Generate a structured presentation from input text with customizable styling and layout options.

Parameters:

NameTypeRequiredDescription
user_idintegerYesUnique identifier for the user making the request
input_textstringYesSource text content to structure into slides (10-100,000 characters)
num_cardsintegerNoNumber of presentation slides to generate (1-50, default: 10)
format_typestringNoOutput format style (default: "presentation")
theme_idstringNoPredefined theme identifier for visual styling
primary_colorstringNoHex color code for primary theme color (e.g., "#1E40AF")
secondary_colorstringNoHex color code for secondary/accent color (e.g., "#60A5FA")
user_emailstringNoEmail address associated with the user account

Request Body:

{
  "user_id": integer,
  "input_text": "string (10-100000 chars)",
  "num_cards": integer (optional, 1-50),
  "format_type": "string (optional)",
  "theme_id": "string or null (optional)",
  "primary_color": "string or null (optional)",
  "secondary_color": "string or null (optional)",
  "user_email": "string or null (optional)"
}

Response:

  • 200 OK: Presentation generated successfully

    {
      "presentation_id": "string",
      "user_id": integer,
      "status": "success",
      "cards": [
        {
          "card_number": integer,
          "title": "string",
          "content": "string"
        }
      ],
      "theme_applied": "string",
      "colors": {
        "primary": "string",
        "secondary": "string"
      },
      "created_at": "string (ISO 8601)"
    }
    
  • 422 Unprocessable Entity: Validation error

    {
      "detail": [
        {
          "loc": ["body", "input_text"],
          "msg": "ensure this value has at least 10 characters",
          "type": "value_error.any_str.min_length"
        }
      ]
    }
    

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…