# Send Exponential to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "exponential",
    "name": "Exponential",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/positonic/exponential",
    "canonicalUrl": "https://clawhub.ai/positonic/exponential",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/exponential",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=exponential",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "exponential",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T21:20:15.163Z",
      "expiresAt": "2026-05-06T21:20:15.163Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=exponential",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=exponential",
        "contentDisposition": "attachment; filename=\"exponential-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "exponential"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/exponential"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/exponential",
    "downloadUrl": "https://openagent3.xyz/downloads/exponential",
    "agentUrl": "https://openagent3.xyz/skills/exponential/agent",
    "manifestUrl": "https://openagent3.xyz/skills/exponential/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/exponential/agent.md"
  }
}
```
## Documentation

### 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 <JWT> --api-url https://www.exponential.im

Verify: exponential --help should show available commands.

### Actions (Tasks)

List actions:

exponential actions list [--project <id>] [--status <BACKLOG|TODO|IN_PROGRESS|IN_REVIEW|DONE>] [--assignee <id>]

Today's actions:

exponential actions today [--workspace <id>]

Date range:

exponential actions range --start 2026-01-01 --end 2026-01-31 [--workspace <id>]

Kanban board:

exponential actions kanban [--project <id>] [--status <status>] [--assignee <id>]

Create action:

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

Update action:

exponential actions update --id <actionId> [-n "New name"] [-d "New desc"] [-p <projectId>] [--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:

exponential projects list → find the project ID
exponential actions create -n "Task" -p <projectId> --priority "1st Priority"

Triage daily work:

exponential actions today → see what's due
exponential actions update --id <id> --kanban IN_PROGRESS → start working
exponential actions update --id <id> --kanban DONE → mark complete

Review project board:

exponential actions kanban --project <id> → see full board
Filter by status: --status IN_PROGRESS
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: positonic
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T21:20:15.163Z
- Expires at: 2026-05-06T21:20:15.163Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/exponential)
- [Send to Agent page](https://openagent3.xyz/skills/exponential/agent)
- [JSON manifest](https://openagent3.xyz/skills/exponential/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/exponential/agent.md)
- [Download page](https://openagent3.xyz/downloads/exponential)