Skip to main content

SoloFlow

文件驱动的 AI Skill、Agent 与 LLM 工作流编排工具。

CI Python License Status

SoloFlow 把提示词和专家经验保存为可版本控制的 SKILL.md,再通过 Agent 组合角色,通过 Flow 把多个步骤编排成可恢复的 DAG。所有核心资产都是普通文本文件,适合本地使用、团队协作和 Git 分享。

当前稳定版本为 1.0.0。本地 248 项测试、GitHub Actions 跨平台矩阵、wheel 构建、PyPI Trusted Publishing 与官方索引干净安装、DeepSeek Skill/Agent/Flow 实调、Claude Code MCP 实连、远程 Registry publish/PR/install,以及 Heartbeat 故障注入与真实环境加速 soak 均已通过。v1.0 以 DeepSeek 为官方验证和推荐供应商;OpenAI、Anthropic 保留兼容入口,但在真实验证前视为实验性支持。详见项目状态

它解决什么问题

问题 SoloFlow 的做法
提示词散落在聊天记录和项目配置中 SKILL.md 形成可复用、可审查的专家资产
一个复杂任务需要多轮手工衔接 用 YAML Flow 定义依赖、输入、并发和输出
角色设定与技能配置互相混杂 Agent 组合 Soul 人格、多个 Skill 和模型覆盖配置
中途失败只能从头开始 保存运行状态并通过 sf flow resume 恢复
不同模型 SDK 使用方式不一致 通过 LiteLLM 使用统一调用层

核心模型

flowchart LR
    A["SKILL.md"] --> B["Skill Runner"]
    A --> C["Agent: Soul + Skills"]
    B --> D["LiteLLM"]
    C --> D
    E["Flow YAML"] --> F["DAG Engine"]
    F --> B
    F --> C
    D --> G["模型输出与 token usage"]
    F --> H["运行记录与断点恢复"]

安装

可以从 PyPI 直接运行稳定版:

uvx --from soloflow sf version

也可以从源码安装:

git clone https://github.com/halexzd686-cloud/SoloFlow.git
cd SoloFlow
uv sync --extra dev
uv run sf version

要求 Python 3.12 或 3.13。也可以构建并安装 wheel:

uv build
uv pip install dist/soloflow-*.whl

完整安装说明见快速开始

五分钟体验

查看安装包自带的资产:

uv run sf skill list
uv run sf agent list
uv run sf flow list

无需 API Key 即可预览 Skill Prompt 和 Flow 执行计划:

uv run sf skill run content-writer "AI Agent 落地" --dry-run
uv run sf flow run blog-pipeline -i topic="AI Agent 落地" --dry-run

配置模型供应商的环境变量后运行真实任务,例如:

$env:DEEPSEEK_API_KEY = "<your-key>"
uv run sf skill run content-writer "AI Agent 落地"

也可以复制 .env.example 为当前工作目录下的 .env 并填写实际使用的供应商。SoloFlow 只读取当前目录的 .env,不会向父目录搜索,也不会覆盖系统或 Shell 已设置的环境变量。

不要把 API Key 写入 Skill、Flow、MCP 配置或提交到 Git;.env 已默认加入忽略规则。

模型供应商支持

供应商 v1.0 状态 说明
DeepSeek 官方验证、推荐 Skill、Agent、Flow、重试与 Heartbeat 真实调用均已验收
OpenAI 实验性兼容 保留 LiteLLM 接入与环境变量支持,尚未进行付费真实调用
Anthropic 实验性兼容 保留 LiteLLM 接入与环境变量支持,尚未进行付费真实调用

实验性兼容表示代码路径保留且有 mock 测试覆盖,不代表已经完成供应商端到端验收。

主要能力

  • Skill:创建、校验、列表、执行、多版本生成和自动迭代。
  • Agent:Soul 人格、多个 Skill、配置继承与 Heartbeat 调度。
  • Flow:DAG 校验、变量引用、分层并发、失败跳过、超时重试、输出映射和断点恢复。
  • Registry:离线索引、Git 拉取、版本安装、打包发布和可选 PR 提交。
  • MCP:JSON-RPC 2.0 over stdio,提供 9 个 Skill、Agent、Flow 工具。
  • TUI:终端仪表盘、详情弹窗、动态输入和运行恢复。

安装包内置:

  • 4 个 Skill:content-writercode-reviewermarket-researcherhello-world
  • 2 个 Agent:content-editorcode-guardian
  • 8 个 Flow:blog、代码审查、竞品分析、内容营销、会议纪要、入职文档、发布说明和周报

项目目录或 ~/.soloflow 中的同名资产会覆盖安装包默认资产。

能力边界

SoloFlow 是 Prompt 与 LLM 工作流编排工具,不是完整的自主 Agent 平台:

  • Runner 不会自动获得浏览器、搜索、文件系统或其他工具。
  • Agent 没有自主规划循环、长期记忆和后台分布式执行能力。
  • Flow 步骤主要传递字符串输出,暂不支持条件节点、人工审批和 fallback model。
  • Registry 暂无签名、checksum 和 commit SHA lockfile。
  • Heartbeat 已通过单机加速稳定性验收;跨机器、跨网络环境的长期运行仍需社区反馈。

MCP 接入

启动 stdio Server:

uv run sf mcp

客户端配置示例见 mcp-config.example.json,安全配置和工具列表见 MCP 文档

项目结构

SoloFlow/
├── agents/                 # Agent 示例源码
├── flows/                  # Flow 示例源码
├── skills/                 # Skill 示例源码
├── soloflow/               # Python 包
├── tests/                  # 自动化测试
├── docs/                   # 用户与架构文档
├── .github/workflows/      # CI 与 Release
├── pyproject.toml
└── uv.lock

顶层 skills/agents/flows/ 是内置资产的唯一源码;构建 wheel 时会映射到包内资源目录。

开发与验证

uv sync --extra dev
uv run pytest -q
uv run ruff check soloflow tests
uv run ruff format --check soloflow tests
uv build

当前本地基线:248 项测试通过,65 个 Python 文件格式检查通过。远程 Windows/Linux × Python 3.12/3.13 矩阵和 Ubuntu clean-wheel smoke 已通过;最新结果以 GitHub Actions 页面为准。

Roadmap

  • Skill、Agent、Flow、TUI、MCP 和本地 Registry 基础能力
  • Flow 并发、失败传播、运行持久化和恢复
  • wheel 内置资产与源码目录外安装 smoke
  • DeepSeek 真实 Skill、Agent、Flow 端到端与 token usage 验证
  • v1.1:OpenAI、Anthropic 等其他 LLM 供应商端到端验证
  • Claude Code 真实 MCP 客户端连接与工具调用验证
  • 远程社区 Registry update、search、版本校验与 install
  • 远程社区 Registry publish/PR 闭环
  • Heartbeat daemon 启停、探活、中断恢复与 PID 清理
  • Heartbeat 双 Agent 并发真实 LLM 触发与状态持久化
  • Heartbeat PID 复用识别与无关进程保护
  • Heartbeat 500 周期超时、连接、限流和空响应故障注入
  • Heartbeat 67 分钟真实 DeepSeek 加速稳定性验收(33/33 次成功)
  • v1.0.0 正式版发布(GitHub Release 与 PyPI Trusted Publishing)

参与项目

提交问题或代码前请阅读 CONTRIBUTING.md。安全问题请按照 SECURITY.md 私下报告。版本变化记录在 CHANGELOG.md

License

MIT License

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

soloflow-1.0.0.tar.gz (261.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

soloflow-1.0.0-py3-none-any.whl (124.1 kB view details)

Uploaded Python 3

File details

Details for the file soloflow-1.0.0.tar.gz.

File metadata

  • Download URL: soloflow-1.0.0.tar.gz
  • Upload date:
  • Size: 261.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for soloflow-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d68d189b5a79e05e10aac83bfbdf31c28cb08aae9e932d8d3128e30274c3efa5
MD5 865a760228f0ec10792fd0be09f1c717
BLAKE2b-256 6dabe0577cbc9b8687c1dd5e0d22dace562527bae084b3f0fac1d49f1b977cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for soloflow-1.0.0.tar.gz:

Publisher: release.yml on halexzd686-cloud/SoloFlow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soloflow-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: soloflow-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 124.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for soloflow-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d0e7029e9dc52cd708d7a829d7bc3559b65b5806d63417e9aa9a9e01f0b842d1
MD5 9e8381d73e04ffe8eb0144508f3ca44a
BLAKE2b-256 d76a25a70f757f69acf6f8e8c05586b8b7e2819e53c83573d19ba3e56234cc83

See more details on using hashes here.

Provenance

The following attestation bundles were made for soloflow-1.0.0-py3-none-any.whl:

Publisher: release.yml on halexzd686-cloud/SoloFlow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page