Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

octoflowoctoflow 分析

Agent Skill

octoflow 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,803

周安装

523

GitHub Stars

公开资料未说明

下载量

4,142
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:octoflow(octoflow 分析)
来源仓库:https://github.com/mikedconcepcion/octoflow
安装命令:
openclaw skills install octoflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install octoflow

简介

支持 GPU 加速计算与数据处理,适用于图像、音频、视频及机器学习任务。

  • 适合在 OpenClaw 中运行高性能数值运算或模型训练场景。
  • 通过 clawhub 安装,提供自然语言驱动的代码生成能力。
  • 使用需具备相应硬件资源与依赖环境,注意数据输入输出路径安全。
  • 建议结合具体项目需求验证脚本兼容性与性能表现。

SKILL.md

name
octoflow
display_name
OctoFlow
description
>
version
1.5.8
metadata
openclaw
emoji
\F419
requires
anyBins
install
kind
download
url
https://github.com/octoflow-lang/octoflow/releases/download/v1.5.8/
bins
[octoflow]
label
Download OctoFlow v1.5.8 from GitHub Releases (4.5 MB, zero dependencies)
os
[linux, win32, darwin]
always
false
tags
[gpu, vulkan, compute, data-analysis, image-processing,
author
octoflow-lang
repository
https://github.com/octoflow-lang/octoflow
homepage
https://octoflow-lang.github.io/octoflow/
license
MIT
permissions

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

How to Run OctoFlow

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 enableExample
File readDENIED--allow-read=./dataRead CSV from ./data only
File writeDENIED--allow-write=./outputWrite results to ./output only
NetworkDENIED--allow-net=api.example.comFetch from one domain only
Process 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

ToolDescription
octoflow_runExecute OctoFlow code directly
octoflow_chatNatural language to GPU code
octoflow_checkValidate .flow syntax
octoflow_gpu_sortGPU-accelerated sorting
octoflow_gpu_statsGPU statistical operations
octoflow_imageImage processing (BMP, GIF)
octoflow_csvCSV data analysis

Common Patterns

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

FeatureDetail
Builtins210+ built-in functions
Stdlib445 modules across 28 domains
GPU kernels150 Vulkan compute shaders
GPU VMLoom Engine — 5 SSBOs, indirect dispatch, layer streaming
GPU supportAny Vulkan GPU (NVIDIA, AMD, Intel)
Binary size4.5 MB, zero dependencies
Chat modeEnglish to code with auto-fix loop (max 3 retries)
Errors69 structured error codes with auto-fix suggestions
MCP Server7 structured tools via JSON-RPC 2.0
PlatformsWindows, 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).

Install

Download (recommended)

PlatformFileSHA-256
Windows x64octoflow-v1.5.8-x86_64-windows.zip2b26049565a2bfd2b1c4a1c103f2a64cd864dd14da619bd7be750ad3c6b356f2
Linux x64octoflow-v1.5.8-x86_64-linux.tar.gzd7306fc1f5a9a733a66ae3a4d5f3b145670efa7a079302935d867b4b75551845
macOS (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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.62%
按下载量换算3,629

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills