Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

kagura-flowforge神乐流铸

Agent Skill

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

总安装

2,982

周安装

123

GitHub Stars

公开资料未说明

下载量

974
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install kagura-flowforge

简介

通过结构化流程引擎执行多步骤工作任务。

  • 适合拆解复杂任务为标准化子流程依次处理。
  • 支持工作流定义、参数传递与状态跟踪功能。
  • 需预先设计好流程模板并配置相应输入输出。
  • 建议在测试环境验证后再投入生产使用。kagura-flowforge 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
flowforge
description
Run structured multi-step workflows via FlowForge engine. Use when user requests step-by-step execution, structured workflows, or when a task needs enforced ordering (e.g., 'follow the workflow', 'use flowforge', 'step by step process'). Helps AI agents execute multi-step tasks without skipping critical steps.

FlowForge Workflow Runner

Execute multi-step workflows defined in YAML files using the FlowForge state machine engine.

Prerequisites

FlowForge CLI must be installed. Check with:

flowforge --version

If the command fails or is not found, run the setup flow in setup.md before proceeding. Setup will install the CLI, create the workflows directory, and configure your workspace.

When to Use FlowForge

Use FlowForge when:

  • User explicitly requests "workflow", "step by step", or "use flowforge"
  • Task has multiple sequential steps that shouldn't be skipped
  • User wants enforced execution order (e.g., always test before submit)
  • Task involves state that needs to persist across sessions

Don't use for simple one-off tasks or quick questions.

My Workflows

<!-- This table maps user intents to workflow names. --> <!-- When you notice the same intent matching the same workflow 2-3 times, add it here. --> <!-- This saves a flowforge list lookup every time and makes triggering instant. -->

IntentWorkflow
*(add your mappings here as you use FlowForge)*

Self-updating rule: When you match an intent to a workflow via flowforge list and it works well, add that mapping to the table above. Then update the description field in the YAML frontmatter at the top of this file to include the new trigger phrase — this is how OpenClaw knows when to activate this skill.

Core Workflow

1. Find the Right Workflow

First check the My Workflows table above. If the user's intent matches an entry, use it directly.

If no match, fall back to discovery:

flowforge list

If no workflow matches user's intent, help them create one (see yaml-format.md).

2. Start or Resume

# Check for active instances
flowforge active

# If active instance exists → resume
flowforge status

# If no active instance → start new
flowforge start <workflow-name>

3. Execute Current Node

After flowforge status, you'll see:

  • Current node name
  • Task (natural language instruction)
  • Next node or branches

Execute the task as described. The task field tells you exactly what to do.

For complex implementation tasks: delegate to appropriate tools or sub-agents. For simple tasks: execute directly.

4. Advance to Next Node

After completing the task:

# Linear flow (no branches)
flowforge next

# Branching flow (multiple paths)
flowforge next --branch 1   # first condition
flowforge next --branch 2   # second condition

5. Repeat Until Complete

Continue the cycle:

  1. flowforge status — see current task
  2. Execute the task
  3. flowforge next — advance
  4. Repeat until terminal node

6. View History

flowforge log

Shows all nodes visited with timestamps.

Creating New Workflows

If user needs a workflow that doesn't exist:

  1. Ask about their process steps
  2. Draft a YAML file (see yaml-format.md)
  3. Save to workflows/ directory or workspace
  4. Register with flowforge define workflow.yaml

See references/examples/ for templates.

YAML Format Quick Reference

name: workflow-name
description: What this workflow does
start: first-node

nodes:
  first-node:
    task: Description of what to do
    next: second-node

  second-node:
    task: Another task
    branches:
      - condition: success
        next: final-node
      - condition: failure
        next: first-node

  final-node:
    task: Wrap up and report
    terminal: true

Node Fields

  • task: Natural language instruction (required)
  • next: Single next node for linear flow
  • branches: Array of {condition, next} for branching
  • terminal: Set to true for end nodes

Rules

  • Never skip nodes. Execute every node's task before advancing.
  • Always check status. Don't assume position — run flowforge status.
  • One task at a time. Complete current node before looking ahead.
  • Post-run. When a workflow reaches a terminal node, record what was done and the outcome. If your workspace has a memory or log system, write results there.
  • State persists. Workflows survive session restarts.
  • Use reset sparingly. Only reset if workflow is stuck or user requests it.

Advanced Usage

Multiple Workflows

If user has multiple active workflows:

flowforge active  # list all
flowforge status  # shows current default

Reset Current Workflow

flowforge reset

Creates new instance from start node. Old history is preserved.

Workflow Discovery

FlowForge auto-loads YAML files from:

  • ./workflows/ in current directory
  • ~/.flowforge/workflows/ in home directory

Users can drop workflow files into these directories and they're automatically available — no need to run flowforge define.

Examples

Example 1: Code Contribution

User: "Help me contribute to this project"

  1. Check if contribution workflow exists: flowforge list
  2. Start: flowforge start code-contribution
  3. Execute each node:

- study → read project structure - implement → write code - test → run tests - submit → create PR - verify → address feedback

Example 2: Learning Workflow

User: "I want to study React hooks step by step"

  1. Check for study workflow: flowforge list
  2. If exists: flowforge start study
  3. If not: help create YAML with nodes like:

- discover → find resources - deep-read → read documentation - practice → write examples - reflect → note key concepts

Example 3: Resume Interrupted Work

User returns after session ended mid-workflow:

  1. flowforge active → shows interrupted workflow
  2. flowforge status → shows current node
  3. Continue from there

Troubleshooting

"No active instance": Run flowforge start <workflow>

"Workflow not found": Run flowforge list to see available workflows

Wrong node/stuck: Use flowforge reset to restart workflow

Need to modify workflow: Edit YAML file, run flowforge define workflow.yaml to update

See Also

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.08%
按下载量换算848

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install kagura-flowforge 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills