Skill flagged — suspicious patterns detected

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

pipintama-charts

v1.0.0

Create, fetch, share, or update hosted Pipintama Charts through the MCP server. Use when a user needs a line, bar, pie, or radar chart from text or structure...

0· 61·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name/description match the instructions: the skill is about creating and managing hosted charts on a Pipintama MCP server. The listed tools and endpoints are appropriate for that purpose.
!
Instruction Scope
SKILL.md instructs the agent to call external MCP endpoints and to require an API key before making requests. It also prescribes a default visibility of 'shared' (which may expose data). The instructions themselves do not ask for unrelated system files or other credentials, but they do rely on network calls to a third-party endpoint and on agent-provided tools (e.g., create_chart) that are not implemented in the skill bundle — this is normal for instruction-only skills but increases reliance on the platform's tool wiring.
Install Mechanism
No install spec and no code files are present (instruction-only). This minimizes local installation risk because nothing is written to disk by the skill package itself.
!
Credentials
SKILL.md clearly requires a Pipintama API key (Authorization: Bearer or x-api-key) but the registry metadata declares no required environment variables or primary credential. That mismatch is concerning: the skill expects credentials but does not advertise them, which can cause unexpected runtime prompts or improper handling of secrets. Aside from that, the requested credential is proportional to the skill's purpose and no unrelated secrets are requested.
Persistence & Privilege
The skill is not always-enabled, does not request persistent system-level changes, and does not attempt to modify other skills or global agent config in its instructions. Autonomous invocation is allowed but is the platform default and not by itself a red flag here.
What to consider before installing
This skill will call api.pipintama.com and requires a Pipintama API key to create or share hosted charts. Before installing: (1) confirm you trust the Pipintama service and the skill publisher (source/homepage unknown), (2) be aware the skill defaults to 'shared' visibility — avoid sending sensitive data unless you explicitly set visibility to private, (3) expect the agent to ask you for an API key at runtime since the registry metadata does not declare it (this is a metadata inconsistency), and (4) if you need stronger guarantees, ask the publisher to update the registry metadata to declare the required env var (e.g., PIPINTAMA_API_KEY) and to document exactly which endpoints and tools the platform will call. If you cannot verify the publisher or you cannot risk data exposure to an external service, do not enable this skill.

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

agentsvk977te45ed7nq3ykmn1wzv21q5849mjvanalyticsvk977te45ed7nq3ykmn1wzv21q5849mjvchartsvk977te45ed7nq3ykmn1wzv21q5849mjvdatavk977te45ed7nq3ykmn1wzv21q5849mjvlatestvk977te45ed7nq3ykmn1wzv21q5849mjvvisualizationvk977te45ed7nq3ykmn1wzv21q5849mjv
61downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

Pipintama Charts

Use this skill when the user would benefit from a hosted chart instead of only plain text.

Primary MCP endpoint:

  • https://api.pipintama.com/mcp

Access model:

  • this hosted MCP requires a valid Pipintama API key
  • clients should provide it through Authorization: Bearer <key> or x-api-key
  • usage is attributed to the authenticated client, not only the IP address

Authentication

This skill requires a Pipintama API key.

The agent must:

  • check if a valid API key is available before calling the MCP endpoint
  • ask the user to provide or configure credentials if missing
  • never attempt requests without authentication

Health check:

  • https://api.pipintama.com/mcp-health

Primary tools:

  • list_chart_modes
  • create_chart
  • get_chart
  • share_chart
  • set_chart_visibility
  • update_chart
  • export_chart_png

When to use this skill

Use Charts when the user asks for:

  • a line chart
  • a bar chart
  • a pie chart
  • a radar chart
  • a chart from numbers in plain text
  • text to chart
  • AI data visualization
  • a visual comparison of quantities

Do not use Charts when:

  • the user needs a process diagram
  • the user wants a mindmap or architecture view
  • a hosted board is more appropriate than a quantitative chart

Core workflow

  1. Understand the request and decide whether a chart is useful.
  2. Choose the simplest correct chart type.
  3. Build a concise chart title.
  4. Preserve the user intent in source_text instead of rewriting the task into something unrelated.
  5. Default visibility to shared unless the user explicitly wants public or private.
  6. Do not pass workspace_id unless the user explicitly provides one. Let the authenticated API key determine the workspace.
  7. Call the MCP tool that matches the job.
  8. Return the hosted viewer URL first.
  9. Add one short sentence explaining what the chart shows.

Mode selection

  • line: trends over time or sequence
  • bar: category comparison or ranking
  • pie: part-to-whole distribution with a small number of slices
  • radar: multidimensional profile comparison

Prefer the simplest correct mode. Do not use pie for long lists or precise trend reading.

Mode-specific rules

line

Use when:

  • the user wants a trend
  • values change across time or ordered steps

Rules:

  • keep the x-axis labels short
  • use one or two series unless the user clearly asks for more

bar

Use when:

  • the user wants to compare categories
  • ranking is more important than distribution

Rules:

  • keep category labels readable
  • avoid too many bars in a single chart

pie

Use when:

  • the user wants part-to-whole share
  • the slice count is small

Rules:

  • avoid pie charts for many categories
  • use when visual share matters more than exact comparison

radar

Use when:

  • the user wants to compare profiles across the same dimensions
  • there are a few shared axes and one or two entities

Rules:

  • keep axis labels short
  • use a small number of dimensions

Visibility rules

  • default to shared
  • use public only when the user explicitly wants an open link
  • use private only when the user explicitly asks for restricted access

Tool usage

create_chart

Use this for the first chart creation.

Expected inputs:

{
  "title": "Weekly Active Agents",
  "chart_type": "line",
  "source_text": "Mon: 12\nTue: 18\nWed: 15\nThu: 22\nFri: 28",
  "visibility": "shared"
}

get_chart

Use this when the user asks to inspect or retrieve an existing chart.

share_chart

Use this when a chart should be opened through a tokenized share link.

set_chart_visibility

Use this when the user explicitly asks to make a chart private, shared, or public.

update_chart

Use this when the user wants to refine an existing chart instead of creating a new one.

Typical cases:

  • change chart type
  • update values
  • rename title
  • change visibility
  • improve labels or series wording

export_chart_png

Use this when the user needs an actual image file instead of only a hosted link.

Typical cases:

  • Telegram
  • WhatsApp
  • quick previews in chat
  • channels where an image is more useful than a URL alone

Output format

Default output:

  1. hosted viewer URL
  2. one short explanation sentence

If the channel supports images and visual attachments are useful:

  1. hosted viewer URL
  2. PNG export URL
  3. one short explanation sentence

Good response pattern:

I created the chart:
https://pipintama.com/charts/<chart-id>?t=<share-token>

It shows weekly active agents as a line trend.

Image-friendly pattern:

I created the chart and exported a PNG for easy sharing:
Viewer: https://pipintama.com/charts/<chart-id>?t=<share-token>
PNG: https://api.pipintama.com/mcp-chart-exports/<chart-id>.png?theme=light

Only use live Pipintama URL patterns.

Valid:

  • https://pipintama.com/charts/<chart-id>
  • https://pipintama.com/charts/<chart-id>?t=<share-token>
  • https://api.pipintama.com/mcp-chart-exports/<chart-id>.png?theme=light

Invalid:

  • https://cdn.pipintama.com/charts/<chart-id>.png
  • https://pipintama.com/chart/<chart-id>

Guardrails

  • do not use pie for long category lists
  • do not use radar when a bar chart would communicate more clearly
  • do not fabricate Pipintama URLs
  • do not dump raw chart JSON first when the hosted link is more useful

Comments

Loading comments...