← Back to Skills Marketplace
positonic

Exponential

by J△MΞS · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
452
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install exponential
Description
Manage tasks, projects, and workspaces in Exponential via the `exponential` CLI. Use when creating, listing, or updating actions/tasks, viewing projects, che...
README (SKILL.md)

Exponential CLI Skill

Exponential is an AI-native productivity platform. This skill uses the exponential CLI to manage actions (tasks), projects, and workspaces.

Prerequisites

npm install -g exponential-cli
exponential auth login --token \x3CJWT> --api-url https://www.exponential.im

Verify: exponential --help should show available commands.

Commands

Actions (Tasks)

List actions:

exponential actions list [--project \x3Cid>] [--status \x3CBACKLOG|TODO|IN_PROGRESS|IN_REVIEW|DONE>] [--assignee \x3Cid>]

Today's actions:

exponential actions today [--workspace \x3Cid>]

Date range:

exponential actions range --start 2026-01-01 --end 2026-01-31 [--workspace \x3Cid>]

Kanban board:

exponential actions kanban [--project \x3Cid>] [--status \x3Cstatus>] [--assignee \x3Cid>]

Create action:

exponential actions create -n "Task name" [-d "Description"] [-p \x3CprojectId>] [--priority "1st Priority"] [--due 2026-03-01] [--effort 60]

Update action:

exponential actions update --id \x3CactionId> [-n "New name"] [-d "New desc"] [-p \x3CprojectId>] [--priority "2nd Priority"] [--status COMPLETED] [--kanban DONE] [--due 2026-03-15]

Clear a due date: --due null

Projects

exponential projects list

Workspaces

exponential workspaces list

Priority Values

Quick | Scheduled | 1st Priority | 2nd Priority | 3rd Priority | 4th Priority | 5th Priority | Errand | Remember | Watch | Someday Maybe

Kanban Statuses

BACKLOG | TODO | IN_PROGRESS | IN_REVIEW | DONE | CANCELLED

Action Statuses

ACTIVE | COMPLETED | CANCELLED

Output

  • TTY (interactive): pretty-printed with colors
  • Piped/scripted: JSON output (auto-detected)
  • Force JSON: --json
  • Force pretty: --pretty

JSON Output Shape

Actions list:

{
  "actions": [{ "id": "...", "name": "...", "status": "ACTIVE", "priority": "1st Priority", "kanbanStatus": "TODO", "project": { "id": "...", "name": "..." }, "dueDate": null }],
  "total": 1,
  "filters": {}
}

Single action (create/update):

{ "id": "...", "name": "...", "status": "ACTIVE", "priority": "Quick", "kanbanStatus": "TODO", "project": { "id": "...", "name": "..." } }

Workflow Patterns

Create tasks for a project:

  1. exponential projects list → find the project ID
  2. exponential actions create -n "Task" -p \x3CprojectId> --priority "1st Priority"

Triage daily work:

  1. exponential actions today → see what's due
  2. exponential actions update --id \x3Cid> --kanban IN_PROGRESS → start working
  3. exponential actions update --id \x3Cid> --kanban DONE → mark complete

Review project board:

  1. exponential actions kanban --project \x3Cid> → see full board
  2. Filter by status: --status IN_PROGRESS
Usage Guidance
Before installing or using this skill: 1) Verify the exponential-cli package: find its npm page and source repository (GitHub or official org), review maintainer, recent releases, and issues — do not run a global install for an unknown package. 2) Prefer installing the CLI locally or in a sandbox rather than using -g; avoid installing untrusted packages system-wide. 3) Treat the JWT/token like any secret: verify what scopes it grants on the Exponential service, use least privilege, and rotate/revoke it if needed. 4) Confirm the API URL (https://www.exponential.im) is correct for your org; confirm TLS and domain ownership. 5) Note the registry metadata omits required binaries/credentials — ask the publisher to update metadata to declare that npm/node and a JWT are required. 6) If you plan to let an autonomous agent run these commands, be aware the agent will authenticate and the CLI will communicate with the remote service; limit agent privileges and monitor token use.
Capability Analysis
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.
Capability Assessment
Purpose & Capability
The skill's name, description, and runtime instructions all align: it is an adapter for the 'exponential' CLI to manage tasks/projects. However, the registry metadata claims no required binaries or credentials while the README explicitly requires npm (for installing exponential-cli) and a JWT to authenticate — a mismatch that should be corrected.
Instruction Scope
SKILL.md stays on-topic: it provides CLI commands, expected JSON output, and workflows for tasks/projects. It does not instruct the agent to read unrelated files, harvest environment variables, or transmit data to endpoints beyond the stated Exponential API URL.
Install Mechanism
There is no formal install spec in the registry; instead SKILL.md tells the user to run 'npm install -g exponential-cli'. This is a global npm install of a third-party package — a moderate-risk action because global installs modify the system PATH and the package source (npm) and package name should be verified. The skill does not reference a known repository or release host (e.g., GitHub link) to validate the package.
Credentials
The instructions require a JWT token for 'exponential auth login', but the skill declares no primary credential or required env vars. Requiring a token is reasonable for CLI-authenticated operations, but the registry should document that a credential is necessary and clarify recommended storage/rotation and least privilege.
Persistence & Privilege
The skill does not request always-on presence, system config paths, or modification of other skills. As an instruction-only skill, it won't write files itself; the only persistent effect comes from installing the external CLI and authenticating it (normal for CLI integrations).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install exponential
  3. After installation, invoke the skill by name or use /exponential
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of the Exponential CLI skill. - Enables task, project, and workspace management using the `exponential` CLI. - Supports creating, listing, and updating actions (tasks), viewing projects, and reviewing today’s tasks. - Provides full command documentation for interacting with kanban boards and productivity workflows. - Includes details on status, priority values, output formats, and typical workflow patterns.
Metadata
Slug exponential
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Exponential?

Manage tasks, projects, and workspaces in Exponential via the `exponential` CLI. Use when creating, listing, or updating actions/tasks, viewing projects, che... It is an AI Agent Skill for Claude Code / OpenClaw, with 452 downloads so far.

How do I install Exponential?

Run "/install exponential" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Exponential free?

Yes, Exponential is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Exponential support?

Exponential is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Exponential?

It is built and maintained by J△MΞS (@positonic); the current version is v1.0.0.

💬 Comments