人工智能工作流 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
人工智能工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
人工智能工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g plur # 方式二:npx 直接运行(无需安装) npx plur --help # 方式三:项目依赖安装 npm install plur # 方式四:从源码运行 git clone https://github.com/plur-ai/plur cd plur npm install npm start
# 命令行使用
plur --help
# 基本用法
plur [options] <input>
# Node.js 代码中使用
const plur = require('plur');
const result = await plur.run(options);
console.log(result);
# plur 配置说明 # 查看配置选项 plur --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export PLUR_CONFIG="/path/to/config.yml"
One command sets up everything — storage, MCP config, and Claude Code hooks:
npx @plur-ai/mcp init
This creates ~/.plur/ for storage, adds PLUR to your .mcp.json, and installs Claude Code hooks for automatic engram injection. PLUR is installed globally — one MCP server, one store, available in every project. You only run init once.
For multi-project setups, use domain/scope to separate knowledge:
cd ~/projects/my-app
npx @plur-ai/cli@0.9.4 init --domain myapp --scope project:my-app
This creates a .plur.yaml in the project with defaults that hooks apply automatically. Engrams learned in that project are tagged; recall filters by scope but always includes global knowledge.
npm install -g @plur-ai/mcp
plur-mcp init
import { Plur } from '@plur-ai/core'
const plur = new Plur()
// Learn from a correction
plur.learn('toEqual() in Vitest is strict — use toMatchObject() for partial matching', {
type: 'behavioral',
scope: 'project:my-app',
domain: 'dev/testing'
})
// Recall (hybrid: BM25 + embeddings, zero cost)
const results = await plur.recallHybrid('vitest assertion matching')
// Inject relevant engrams into agent context
const { engrams } = plur.inject('Write tests for the user service', {
scope: 'project:my-app',
limit: 15
})
// Feedback trains the system
plur.feedback(engram.id, 'positive')
// Capture an event (episode)
plur.capture('Fixed CrashLoopBackOff on bee-3-4 by increasing memory limits', {
agent: 'claude-code',
channel: 'terminal'
})
// Query timeline
const incidents = plur.timeline({ agent: 'claude-code' })
// Sync across machines
plur.sync('git@github.com:you/plur-memory.git')
| Package | Description |
|---|---|
[@plur-ai/core](packages/core) | Engram engine — learn, recall, inject, search, decay |
[@plur-ai/mcp](packages/mcp) | MCP server for Claude Code, Cursor, Windsurf |
[@plur-ai/claw](packages/claw) | OpenClaw ContextEngine plugin |
[plur-hermes](packages/hermes) | Hermes Agent plugin (Python, via CLI bridge) |
高质量的AI工作流项目,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,人工智能工作流 在Agent工作流赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | plur |
| 原始描述 | 开源AI工作流:Shared memory for AI agents。⭐141 · TypeScript |
| Topics | AI工作流TypeScript |
| GitHub | https://github.com/plur-ai/plur |
| License | Apache-2.0 |
| 语言 | TypeScript |
收录时间:2026-05-27 · 更新时间:2026-05-27 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端