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

workflow-memory-skills工作流程记忆技巧

Agent Skill

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

总安装

2,995

周安装

120

GitHub Stars

公开资料未说明

下载量

970
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install workflow-memory-skills

简介

workflow-memory-skills 帮助 Agent 记住用户偏好的工作方式与 SOP 流程。

  • 适用于重复性高的任务队列管理与“我如何做事”的知识沉淀场景。
  • 可存储可重用标准操作流程、工作流程模板或队列处理逻辑。
  • 安装命令为 openclaw skills install workflow-memory-skills,适合长期协作团队使用。
  • 建议定期回顾更新记忆内容,确保与当前实践保持一致性和时效性。

SKILL.md

name
work-style-memory
description
Use when the user wants OpenClaw or Codex to remember their way of working as reusable SOPs, workflows, queues, or "how I do things". Best for repeated multi-step tasks where the agent should proactively check saved workflows before starting, ask whether to reuse an existing SOP when there is a strong match, and ask whether to save or update a workflow after the task.

Work Style Memory

Overview

This skill treats the user's repeated ways of working as a local workflow library instead of burying them inside a one-off prompt. The workflow file is the source of truth; the agent uses it to match similar requests, generate an execution brief, and ask whether the run should be saved back into the library.

Use this skill when the user says things like:

  • "Remember how I usually do this"
  • "Can you turn this into an SOP or workflow"
  • "Ask me whether to reuse my previous process"
  • "Prefill the same tools, templates, or baseline parameters"
  • "I need a local UI to edit my workflows"

Do not use this skill for truly one-off tasks or very small requests that do not benefit from storing a reusable process.

Operating Model

The skill works in four phases:

  1. Match the current request against saved workflows.
  2. If there is a strong match, ask whether to use the existing workflow.
  3. Compile the workflow into an execution brief and perform the task.
  4. At the end, ask whether to save a new workflow or update the matched one.

The workflow library should be editable outside the skill. The recommended storage layout is:

  • Project-specific workflows: .openclaw/workflows/*.json
  • Personal cross-project workflows: $CODEX_HOME/work-style-memory/workflows/*.json

Prefer project-local workflows when the process is tied to a repository, team, or codebase. Prefer the global store when the process reflects the user's personal way of working across contexts.

When this skill is active during a normal chat task, the workflow check should happen as part of the agent's task handling flow, not only in the local UI.

Matching Rules

When this skill is active, build a candidate list by comparing the current request with saved workflows using:

  • keywords
  • toolchain overlap
  • recent actions in the current session

Behavior rules:

  • Before doing a non-trivial task, proactively check the workflow library.
  • If there is one high-confidence match, ask a short confirmation question before using it.
  • If there are two plausible matches, present the top two briefly and ask which one to use.
  • If confidence is low, continue normally and offer to save a workflow after the task.
  • Never silently apply a workflow that can trigger writes, external calls, or other meaningful side effects unless the user already asked for it in this turn.
  • Never auto-run a matched workflow just because it looks like the same task. Matching only gives permission to suggest reuse, not to execute.
  • The only time a matched workflow may be used without an extra confirmation question is when the user explicitly says in the current turn that they want to use the previous SOP, workflow, or usual process.

Running A Workflow

A workflow is not the final prompt. It is structured memory that gets compiled into a short execution brief.

When executing a matched workflow:

  1. Load the workflow file.
  2. Convert the workflow into an execution brief that includes:

- goal - trigger keywords - ordered steps - preferred tools

  1. Execute the task using that brief rather than pasting the raw JSON to the model.

Use render_workflow_prompt.py to generate a deterministic draft brief when helpful. Use match_workflows.py when you want a deterministic similarity check against the saved workflow library. Read runtime-behavior.md for the expected preflight behavior during normal chat tasks.

Capturing A New Workflow

After completing a task, ask whether to save it if any of these are true:

  • the task required several non-trivial steps
  • the user gave process-specific preferences
  • the user corrected the order, tools, or keywords
  • the process is likely to recur

When saving or updating a workflow, record:

  • what kind of request it handles
  • trigger keywords
  • preferred tools and order of steps
  • a short summary

Use workflow-template.json as the starting shape. Use new_workflow.py to scaffold a file quickly. Use capture_workflow.py when you want to turn a real task description into a draft workflow quickly. Use save_workflow.py when the user confirms that the task should be saved or used to update an existing workflow.

Editing And UI Expectations

This skill assumes the workflow library is user-editable. The local UI should edit the same files that the skill reads.

The minimum useful UI has:

  • a workflow list with search and recent keywords
  • a detail page with name, summary, keywords, steps, and tool preferences
  • an edit form for summary, keywords, steps, and toolchains
  • a last updated indicator
  • a diff-friendly view so the user can safely update an existing workflow

This skill bundle includes a runnable MVP UI at ui/server.py, which serves a local editor for the workflow JSON files. The local UI can also:

  • suggest similar workflows from a real task description
  • ask whether to reuse a likely SOP match
  • generate a workflow draft from a real task and its observed steps
  • render an execution brief from the currently selected workflow

See local-ui-spec.md for the recommended interface model.

Workflow File Shape

Use JSON for the initial implementation so the files are easy to render, diff, validate, and edit from scripts or a local UI. The schema and field guidance are in workflow-schema.md.

Important conventions:

  • Keep workflows short and composable; do not store huge transcripts.
  • Store concise step descriptions, not chain-of-thought.
  • Keep triggers to a small keyword list.
  • Prefer simple workflows over exhaustive configuration.

Example Interaction Pattern

When a similar request arrives:

  1. Check the workflow library before starting the task.
  2. Detect likely workflow match.
  3. Ask: "I found your pr-review workflow for this. Do you want me to use that SOP?"
  4. If yes, run using the compiled brief.
  5. After the run, ask whether today's differences should update the workflow.

When no workflow matches:

  1. Complete the task normally.
  2. Summarize the process in a compact way.
  3. Ask: "Want me to save this as a reusable workflow for next time?"

Reference Files

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.37%
按下载量换算886

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills