Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
## TL;DR

```bash
npx add-skill eXtremeProgramming-cn/pomasa
npx skills add eXtremeProgramming-cn/pomasa
```

Then just tell your AI client (e.g. Claude Code or Codex):
Then just tell your AI client (e.g. Claude Code or Codex or OpenClaw):

```
Help me create a multi-agent research system for analyzing AI trends in healthcare.
```

That's it. The agent will guide you through the rest.
That's it. The AI will guide you through the rest, including how to use new generated agents.

## Purpose

Expand Down Expand Up @@ -84,13 +84,13 @@ pomasa/
Install POMASA as an agent skill for Claude Code, Cursor, Cline, and other compatible agents:

```bash
npx add-skill eXtremeProgramming-cn/pomasa
npx skills add eXtremeProgramming-cn/pomasa
```

After installation, simply tell the agent what you want:

```
Help me create a multi-agent research system for analyzing AI trends in healthcare.
/pomasa Help me create a multi-agent research system for analyzing AI trends in healthcare. My requirements are...
```

The agent will automatically activate the POMASA skill and guide you through the process.
Expand Down
14 changes: 7 additions & 7 deletions README.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
## 极简使用教程

```bash
npx add-skill eXtremeProgramming-cn/pomasa
npx skills add eXtremeProgramming-cn/pomasa
```

然后只需告诉你的 AI 客户端(例如 Claude Code 或 Codex):
然后只需告诉你的 AI 客户端(例如 Claude Code 或 Codex 或 OpenClaw):

```
帮我创建一个用于分析医疗保健领域 AI 趋势的多智能体研究系统。
帮我创建一个用于分析医疗保健领域 AI 趋势的多智能体研究系统。我的需求是...
```

就这样。智能体会引导你完成其余步骤
就这样。AI 会引导你完成其余步骤,包括如何使用新生成的智能体

## 目的

Expand All @@ -42,7 +42,7 @@ POMASA 采用"模式语言 + 生成器"的方法:

### 架构概览

![POMASA 架构](./pomasa-explained-v2.1.jpg)
![POMASA 架构](./pomasa-explained-zh-cn-v2.1.jpg)

POMASA 模式分为四个类别(如左侧所示),管理三个架构层:

Expand Down Expand Up @@ -84,13 +84,13 @@ pomasa/
为 Claude Code、Cursor、Cline 和其他兼容智能体安装 POMASA 作为智能体技能:

```bash
npx add-skill eXtremeProgramming-cn/pomasa
npx skills add eXtremeProgramming-cn/pomasa
```

安装后,只需告诉智能体你想要什么:

```
帮我创建一个用于分析医疗保健领域 AI 趋势的多智能体研究系统。
/pomasa 帮我创建一个用于分析医疗保健领域 AI 趋势的多智能体研究系统。我的需求是...
```

智能体将自动激活 POMASA 技能并引导你完成流程。
Expand Down
Binary file added pomasa-explained-zh-cn-v2.1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion skills/pomasa/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ description: >
Prompt-Defined Agent, Orchestrated Pipeline, Filesystem Data Bus,
and Verifiable Data Lineage.
license: Apache-2.0
argument-hint: "[USER_INPUT]"
metadata:
author: eXtremeProgramming-cn
version: "0.10"
Expand All @@ -22,7 +23,7 @@ You are a Multi-Agent System (MAS) architect. Your task is to generate a complet

When the user wants to create a multi-agent system, determine how to collect project information:

1. **If user provides a user_input file path**: Read and use it directly
1. **If user provides a USER_INPUT file path**: Read and use it directly
2. **If user has no file ready**, offer two options:
- **Option A**: Copy `user_input_template.md` to user's project directory for them to fill in
- **Option B**: Collect key information through conversation (suitable for simpler scenarios)
Expand Down