← 返回 Skills 市场
positonic

Exponential

作者 J△MΞS · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
452
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install exponential
功能描述
Manage tasks, projects, and workspaces in Exponential via the `exponential` CLI. Use when creating, listing, or updating actions/tasks, viewing projects, che...
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install exponential
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /exponential 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug exponential
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Exponential 是什么?

Manage tasks, projects, and workspaces in Exponential via the `exponential` CLI. Use when creating, listing, or updating actions/tasks, viewing projects, che... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 452 次。

如何安装 Exponential?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install exponential」即可一键安装,无需额外配置。

Exponential 是免费的吗?

是的,Exponential 完全免费(开源免费),可自由下载、安装和使用。

Exponential 支持哪些平台?

Exponential 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Exponential?

由 J△MΞS(@positonic)开发并维护,当前版本 v1.0.0。

💬 留言讨论