# Send Octoflow 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": "octoflow",
    "name": "Octoflow",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/mikedconcepcion/octoflow",
    "canonicalUrl": "https://clawhub.ai/mikedconcepcion/octoflow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/octoflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=octoflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/octoflow"
    },
    "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/octoflow",
    "downloadUrl": "https://openagent3.xyz/downloads/octoflow",
    "agentUrl": "https://openagent3.xyz/skills/octoflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/octoflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/octoflow/agent.md"
  }
}
```
## Documentation

### OctoFlow

GPU-native programming language. Describe tasks in English, run them on any GPU via Vulkan.

### When to Use This Skill

Use this skill when the user says:

"sort a million numbers on GPU" / "benchmark GPU performance"
"load this CSV and show me statistics" / "analyze my data"
"cluster my dataset" / "run K-means" / "train a classifier"
"blur this image" / "resize this BMP" / "encode a GIF"
"plot height vs weight" / "create a scatter plot"
"calculate the Sharpe ratio" / "compute correlation"
"find primes" / "generate random numbers on GPU"
"run linear regression on my dataset"
"run a LLM on my GPU" / "inference on my GPU"

Do NOT use this skill when:

The user wants Python/JavaScript/Rust code (use the appropriate language tool)
The task doesn't benefit from GPU acceleration or OctoFlow's built-in functions
The user explicitly asks for a different language

### Chat mode (natural language to running code)

octoflow chat "sort 1M numbers on GPU"

### Run a .flow script

octoflow run program.flow

### Run with permissions (sandboxed by default)

# Allow reading data files
octoflow run analysis.flow --allow-read=./data

# Allow network access to specific domain
octoflow chat "fetch weather data" --allow-net=api.weather.com

# Allow writing output files
octoflow run report.flow --allow-read=./data --allow-write=./output

### Security Model

OctoFlow uses Deno-style permissions. Everything is denied by default.

PermissionDefaultHow to enableExampleFile readDENIED--allow-read=./dataRead CSV from ./data onlyFile writeDENIED--allow-write=./outputWrite results to ./output onlyNetworkDENIED--allow-net=api.example.comFetch from one domain onlyProcess execDENIED--allow-exec=curlAllow curl only

Without flags, OctoFlow can only read .flow source files and print to stdout.
No file access, no network, no subprocesses unless the user explicitly opts in.

### MCP Server

OctoFlow can run as an MCP server for AI agent integration:

octoflow mcp-serve

Add to your OpenClaw, Claude Desktop, or Cursor config:

{"mcpServers": {"octoflow": {"command": "octoflow", "args": ["mcp-serve"]}}}

### Available Tools

ToolDescriptionoctoflow_runExecute OctoFlow code directlyoctoflow_chatNatural language to GPU codeoctoflow_checkValidate .flow syntaxoctoflow_gpu_sortGPU-accelerated sortingoctoflow_gpu_statsGPU statistical operationsoctoflow_imageImage processing (BMP, GIF)octoflow_csvCSV data analysis

### Data Analysis

# User: "analyze sales.csv and show trends"
octoflow chat "load sales.csv, compute monthly averages, and plot the trend" --allow-read=.

### GPU Compute

# User: "sort a large dataset on GPU"
octoflow chat "generate 1M random numbers on GPU and sort them"

### Machine Learning

# User: "cluster my customers"
octoflow chat "load customers.csv, run K-means with 5 clusters, print cluster sizes" --allow-read=.

### Image Processing

# User: "blur this photo"
octoflow chat "load photo.bmp, apply gaussian blur, save as blurred.bmp" --allow-read=. --allow-write=.

### Statistics

# User: "what's the correlation between these columns?"
octoflow chat "load data.csv, compute Pearson correlation between col1 and col2" --allow-read=.

### Key Capabilities

FeatureDetailBuiltins210+ built-in functionsStdlib445 modules across 28 domainsGPU kernels150 Vulkan compute shadersGPU VMLoom Engine — 5 SSBOs, indirect dispatch, layer streamingGPU supportAny Vulkan GPU (NVIDIA, AMD, Intel)Binary size4.5 MB, zero dependenciesChat modeEnglish to code with auto-fix loop (max 3 retries)Errors69 structured error codes with auto-fix suggestionsMCP Server7 structured tools via JSON-RPC 2.0PlatformsWindows, Linux, macOS (Apple Silicon)

### Data Storage

OctoFlow optionally saves your preferences to ~/.octoflow/ (user-level) and .octoflow/ (per-project).

Contents: which stdlib modules you use frequently and corrections from previous sessions.

No telemetry. No data is sent anywhere.
No network calls unless you explicitly use --allow-net.
All data stays local on your machine.
Disable entirely with --no-memory flag — nothing is saved.
Project config via OCTOFLOW.md in your project root (like .eslintrc or pyproject.toml).

### Download (recommended)

PlatformFileSHA-256Windows x64octoflow-v1.5.8-x86_64-windows.zip2b26049565a2bfd2b1c4a1c103f2a64cd864dd14da619bd7be750ad3c6b356f2Linux x64octoflow-v1.5.8-x86_64-linux.tar.gzd7306fc1f5a9a733a66ae3a4d5f3b145670efa7a079302935d867b4b75551845macOS (Apple Silicon)octoflow-v1.5.8-aarch64-macos.tar.gz33808c330dc5f08eb0008b52ecfb5f0ea532fb71b1c6996075c09b33dc5d8fd2

Verify: sha256sum octoflow-v1.5.8-* (full checksums in SHA256SUMS.txt).

Unzip/extract, add to PATH. No installer needed.

### Links

GitHub
Documentation
Releases
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mikedconcepcion
- Version: 1.5.8
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/octoflow)
- [Send to Agent page](https://openagent3.xyz/skills/octoflow/agent)
- [JSON manifest](https://openagent3.xyz/skills/octoflow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/octoflow/agent.md)
- [Download page](https://openagent3.xyz/downloads/octoflow)