Voice.Ai Voice Agents
Analysis
The skill mostly matches its Voice.ai management purpose, but its setup instructions expose the API key and it can make account-changing actions such as deploying or deleting voice agents.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
case 'delete': {
if (!args.id) {
console.error('Error: --id is required');
process.exit(1);
}
await client.deleteAgent(args.id);
console.log('🗑️ Agent deleted successfully!');The CLI includes direct account-mutating operations such as deleting an agent by ID. This is consistent with the stated management purpose, but it is a sensitive action and the code does not include an extra confirmation prompt.
Source: unknown Homepage: none Required env vars: none Primary credential: none
The registry metadata lacks source/homepage provenance and does not declare the credential that the skill documentation and code require. This is not evidence of malicious behavior, but it reduces install-time clarity.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
# 1. Check if API key is set echo $VOICE_AI_API_KEY
The skill tells the user to print the Voice.ai API key before operations. API keys are account credentials, and showing them in terminal output can expose them through logs, screenshots, shared sessions, or copied transcripts.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
- **MCP Integration** - Connect agents to external tools via MCP
The skill advertises connecting Voice.ai agents to external MCP tools. That is purpose-aligned, but MCP connections can extend a deployed voice agent's reach into other systems depending on the server and credentials used.
