Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

This skill provides a complete multi-agent collaboration system for product-driven development loops

Complete multi-agent collaboration workflow for product-driven development loops. Covers the full lifecycle from product discovery through architecture desig...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 155 · 0 current installs · 0 all-time installs
byGuangsheng Ye@weitanai
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description describe a multi-agent dev workflow and the repository contains 6 agent specs, workflow documentation, and templates. The agent frontmatter lists tools (Read/Write/WebSearch/WebFetch/Bash/etc.) appropriate for the roles (Product, Research use web; Dev/Core/Test require shell/git). No unrelated credentials, binaries, or odd install steps are requested.
Instruction Scope
Runtime instructions explicitly direct agents to read/write workspace files (SOUL.override.md, SOUL.md, USER.md, memory/*, MEMORY.md, shared/ directories, templates, reports, design/docs). That is consistent with persistence and cross‑agent collaboration, but means agents will load persistent memory and user files (which may contain private context). The SKILL.md also instructs following BOOTSTRAP.md if present (and deleting it afterward) — a customization/initialization mechanism you should inspect.
Install Mechanism
Instruction-only skill with no install spec and no code files to execute on install. No downloads or archive extraction are requested. Low installation risk from external code.
Credentials
The skill declares no required environment variables, credentials, or config paths. Agents may perform network fetches (web_search/web_fetch) but do not request API keys. This aligns with the intended research/marketing/product functions.
!
Persistence & Privilege
Agents (Core Dev, Dev, Test) are explicitly allowed to run shell/git operations and Core Dev is permitted to operate on the main branch. Those are high‑privilege capabilities (ability to execute commands and modify source). While coherent for a 'Core Dev' role, they increase risk if you do not trust the skill or its inputs — review and limit these capabilities if you want stricter boundaries.
Assessment
This skill appears coherent with its stated purpose, but it grants development privileges that can modify your repository and run shell commands. Before installing: (1) Review any BOOTSTRAP.md, SOUL.override.md, MEMORY.md and USER.md files in the workspace — they will be loaded and can change agent behavior (BOOTSTRAP may be executed and deleted). (2) If you do not want agents to run shell/git or modify main, restrict/remove Bash/exec permissions for Core Dev/Dev/Test or run the skill in an isolated sandbox repository. (3) Accept network access for Product/Research/Marketing agents (they perform web_search/web_fetch) only if that’s expected. (4) Verify the upstream repository/homepage and trust the author; inspect any bootstrap or override scripts before allowing them to run. If you want lower risk, use the documentation/templates without enabling the agents' exec permissions.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk97636w07vwpk5nh3rjcz5w5r182nck8

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

DevLoop Workflow — 多 Agent 协作系统

产品驱动开发闭环 — 开箱即用的多 Agent 协作系统,覆盖从产品热点探索到开发测试上线的完整生命周期。

Agent 清单

AgentIDEmoji职责
Productdevloop-product🎯每日 AI 热点探索、产品方向讨论、PRD 生成
Core Devdevloop-core-dev🧠架构设计(7 维度)、设计文档、Dev 调度
Devdevloop-dev精准编码、多实例并行、按设计文档实现
Testdevloop-test🧪测试先行、Bug 趋势追踪、代码审查
Marketingdevloop-marketing📣商业化调研、宣传策略、文案制作
Researchdevloop-research🔬深度调研、竞品分析、技术评估

核心工作流

阶段一:产品发现
  [Cron 触发] → 🎯 Product(热点探索 + 历史对比)

阶段二:方向讨论与 PRD
  用户 ↔ 🎯 Product 多轮讨论 → 确认方向 → 生成 PRD
       → 通知 🧠 Core Dev + 📣 Marketing

阶段三:设计与调度
  🧠 Core Dev(7维度讨论→设计文档→复杂度评估→调度)
       → 分配任务给 ⚡ Dev (×N)
       → 通知 🧪 Test 准备测试规格

阶段四:测试先行
  🧪 Test(读取设计文档 → 生成测试规格 → 通知 Dev 参考)

阶段五:编码实现
  ⚡ Dev ×N(严格按设计文档编码 → Conventional Commits → 报告完成)

阶段六:测试与合并
  🧪 Test(代码审查 + 测试执行 + Bug 记录)
  🧠 Core Dev 确认质量 → 合并到 main
       → 📣 Marketing(上线宣传)

完整的阶段细节、消息路由表和并行冲突预防规则,参见 references/collaboration-protocol.md

通用工作规范

Session 启动

  1. 读取 SOUL.override.md(如存在,替代 SOUL.md),否则读取 SOUL.md
  2. 读取 USER.md
  3. 读取 memory/YYYY-MM-DD.md(今天 + 昨天)
  4. 仅主 session:读取 MEMORY.md

首次启动:若 BOOTSTRAP.md 存在,按其指引初始化后删除。

记忆管理

类型路径说明
每日笔记memory/YYYY-MM-DD.md当日工作日志(平面文件,不建子目录)
主题笔记memory/YYYY-MM-DD-<suffix>.md按主题的专项日志
长期记忆MEMORY.md跨 session 持久知识(仅主 session 加载,含私人上下文)

想记住的东西必须写文件。"心里记住"在 session 结束后消失。

Agent 协作

通过 sessions_send 通信。共享文件通过各自 workspace 的 shared/ 目录(只读消费,不修改,不用 ../ 路径)。

自定义

优先级:SOUL.override.md > SOUL.md > 各 Agent .md

安全

  • 不泄露私人数据
  • 破坏性命令先确认
  • trash > rm

模板文件

所有模板位于本 skill 的 assets/templates/ 目录。Agent 首次创建文件时,读取对应模板并按实际内容填充。

模板文件用途使用者
project-structure.template.md项目知识库结构Product, Marketing
design-doc.template.md功能设计文档Core Dev
design-index.template.md设计文档索引Core Dev
test-spec.template.md测试规格文档Test
daily-report.template.md每日测试报告Test
bug-tracker.template.mdBug 追踪数据库Test
review-notes.template.mdPR 审查笔记Test
bug-trend.template.mdBug 趋势汇总(MEMORY.md 用)Test
memory-tracking.template.md调研方向追踪表(MEMORY.md 用)Product, Marketing

参考资料

需要深入了解时,加载以下 references 文件:

文件何时加载内容
references/collaboration-protocol.md需要了解 Agent 间通信细节、消息格式、文件共享规则、完整工作流阶段细节时完整协作协议、消息路由表、共享目录约定、并行冲突预防
references/agent-design-background.md需要理解设计决策背景、处理边缘情况时各 Agent 的设计理念、权限说明、边缘情况处理方案

快速查找关键信息:

  • Agent 间消息格式:搜索 sessions_send in references/collaboration-protocol.md
  • 文件共享规则:搜索 shared/ in references/collaboration-protocol.md
  • 并行冲突处理:搜索 交叉 in references/collaboration-protocol.md
  • 各 Agent 权限设计:搜索 权限设计 in references/agent-design-background.md
  • 边缘情况处理:搜索 边缘情况 in references/agent-design-background.md

前置要求

  • OpenClaw 2026.3.x+
  • Linux / macOS(Windows 需 WSL)

Files

21 total
Select a file
Select a file to preview.

Comments

Loading comments…