Exponential

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: exponential Version: 1.0.0 The skill is designed to integrate with the 'exponential' productivity platform via its CLI. It instructs the agent to install a global npm package ('exponential-cli') and authenticate using a JWT token. All listed commands are specific to managing tasks, projects, and workspaces within the Exponential platform. There is no evidence of intentional harmful behavior such as data exfiltration, unauthorized command execution, persistence mechanisms, or prompt injection attempts to subvert the agent's purpose. The prerequisites, while involving external dependencies and sensitive credentials, are plausibly needed for the skill's stated functionality.

Findings (0)

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.

What this means

Installing the skill requires trusting the external exponential-cli package and its npm supply chain.

Why it was flagged

The skill relies on installing a global npm package that is not included in the provided artifacts; this is a disclosed setup step and central to the skill's purpose.

Skill content
npm install -g exponential-cli
Recommendation

Install the CLI only from the expected official source, consider pinning a known version, and keep it updated intentionally.

What this means

Anyone or anything using that authenticated CLI can act within the token’s permissions, including viewing and changing task data.

Why it was flagged

The CLI authenticates with a JWT token for the Exponential service; this is expected for the integration, but it gives the CLI account-level authority for the user’s Exponential data.

Skill content
exponential auth login --token <JWT> --api-url https://www.exponential.im
Recommendation

Use only an intended Exponential account or scoped token if available, avoid exposing the JWT in shared logs or chats, and revoke the token when no longer needed.

What this means

Incorrect task IDs, due dates, priorities, or statuses could change the wrong work items.

Why it was flagged

The skill documents commands that create and update Exponential actions; this mutation authority is purpose-aligned but can change user or workspace task records.

Skill content
exponential actions create -n "Task name" ...
exponential actions update --id <actionId> ...
Recommendation

For create or update requests, have the agent summarize the intended change before running it, especially in shared workspaces.