Skill flagged — suspicious patterns detected

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

Lunara Voice

v1.0.0

Bundle for Lunara Voice OpenClaw plugin with install and publish helpers

2· 667·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for lunara9897-jpg/lunara-voice.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Lunara Voice" (lunara9897-jpg/lunara-voice) from ClawHub.
Skill page: https://clawhub.ai/lunara9897-jpg/lunara-voice
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install lunara-voice

ClawHub CLI

Package manager switcher

npx clawhub@latest install lunara-voice
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name, description, plugin manifest, package.json and TypeScript source consistently implement a Lunara Voice OpenClaw plugin (agents, campaigns, calls, history, analytics, webhooks, exports). The files present are proportional to the stated purpose. Minor mismatch: registry lists no required env vars, but the plugin expects configuration (apiBaseUrl, apiKey, userEmail) placed in ~/.openclaw/openclaw.json — this is implementation-specific rather than malicious.
!
Instruction Scope
SKILL.md contains prescriptive runtime behavior that goes beyond simple tool documentation: it mandates that any user request to make a call must trigger an end-to-end workflow executed autonomously in a single turn, including recording timestamps, placing the call, then polling the history API every 25–30 seconds (up to 5 minutes) until the new call is found, retrieving transcripts, saving analytics/tags, and reporting results. The instructions also tell the agent to 'poll silently' and not message the user during polling. This grants the agent broad autonomous network activity (long-running polling, transcript reads, and data export) and could lead to unexpected data access or exfiltration if the plugin is given credentials.
Install Mechanism
No registry install spec; the bundle is instruction/source-based. Provided install script simply runs 'openclaw plugins install' against the bundled plugin directory — it does not download code from remote arbitrary URLs. This is lower risk than remote downloads, but installing the plugin will register many tools that can make network requests.
Credentials
The plugin expects API credentials (apiBaseUrl, apiKey, userEmail) which are reasonable for a remote voice/call API. However the plugin exposes features for bulk export and LLM training (lunara_export_bulk, mask_pii=false option), analytics saves, and full transcripts — these are sensitive operations. The manifest marks apiKey as sensitive; ensure you only provide credentials you trust and that the apiBaseUrl points to a trusted endpoint. The SKILL.md's guidance about disabling PII masking (mask_pii=false) is a potential privacy/data-exfiltration vector if misused.
!
Persistence & Privilege
The bundle metadata sets always: true, meaning the skill is force-included in every agent run. Combined with the plugin's ability to make outbound calls, fetch transcripts, perform exports, and the SKILL.md's requirement to autonomously perform long-running polling for calls, this markedly increases the plugin's blast radius. There is no clear, justified reason in the documentation why this plugin must be always-enabled for all agents.
What to consider before installing
This bundle appears to implement a real Lunara Voice plugin, but it has two properties you should weigh carefully before installing: (1) always: true — it will be force-loaded in every agent run, increasing exposure; and (2) the runtime instructions require autonomous, long-running network activity for every outbound call (silent polling, transcript reads, analytics, and data export). Only install if you fully trust the plugin source and the remote apiBaseUrl. If you proceed, do these things first: install in a restricted/test environment; inspect and, if possible, remove or disable the always flag; avoid supplying high-privilege or production credentials (use a limited API key); ensure PII masking remains enabled (do not set mask_pii=false); and review the plugin source (lunara-voice plugin/index.ts) for any endpoints or behaviors you do not recognize. If you are unsure about the provenance of this bundle (owner ID unknown, homepage metadata points to lunaravox.com), contact the vendor or prefer an official distribution channel.

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

Runtime requirements

📞 Clawdis
latestvk97f25g7bt6yvmjknv6gs6m81s81e4e4lunaravk97f25g7bt6yvmjknv6gs6m81s81e4e4openclawvk97f25g7bt6yvmjknv6gs6m81s81e4e4pluginvk97f25g7bt6yvmjknv6gs6m81s81e4e4voicevk97f25g7bt6yvmjknv6gs6m81s81e4e4
667downloads
2stars
1versions
Updated 1h ago
v1.0.0
MIT-0

Lunara Voice Bundle

This skill bundle ships everything needed to install and run the Lunara Voice plugin locally.

What is included

  • plugin/ — full copy of the OpenClaw plugin source
  • scripts/install-plugin.sh — local install helper
  • references/PUBLISH.md — release and ClawHub publish steps

Install plugin from this bundle

Run:

bash {baseDir}/scripts/install-plugin.sh

Then restart Gateway.

Configure plugin

Set plugin config in ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "lunara-voice": {
        "enabled": true,
        "config": {
          "apiBaseUrl": "https://your-server.herokuapp.com",
          "apiKey": "lnr_live_KEYID_SECRET",
          "userEmail": "user@example.com"
        }
      }
    }
  }
}

Verify

openclaw plugins list
openclaw plugins info lunara-voice
openclaw plugins doctor

Comments

Loading comments...