소스 정보
- 저장소
- dvcrn/openclaw-skills-marketplace
- 최근 소스 활동
- 2026년 3월 15일 09:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 29
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill multi-agent-dev-team명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
SOC 직업 분류 기준
SKILL.md 표시 중
| name | Multi-Agent Dev Team |
| description | 2-agent collaborative software development workflow for OpenClaw |
| homepage | https://ubik.systems |
2-agent collaborative software development workflow for OpenClaw
Build complete software projects using AI agents that work together like a real development team.
The Multi-Agent Dev Team skill provides a PM (Project Manager) and Dev (Developer) agent that collaborate to build software projects. You describe what you want, the PM breaks it down into tasks, and the Dev agent implements them.
Perfect for:
npx clawhub install multi-agent-dev-team
The skill includes two pre-configured agents:
PM Agent (multi-agent-pm)
Dev Agent (multi-agent-dev)
~/.openclaw/config.yamlagents:
multi-agent-pm:
soul: ~/.openclaw/skills/multi-agent-dev-team/agents/pm-agent/SOUL.md
model: anthropic/claude-sonnet-4-5-20250929 # or your preferred model
multi-agent-dev:
soul: ~/.openclaw/skills/multi-agent-dev-team/agents/dev-agent/SOUL.md
model: google/gemini-2.5-flash # faster for code generation
openclaw chat --agent multi-agent-pm
You (Director):
Build me a Next.js landing page with hero section, features, and contact form. Use Tailwind CSS and TypeScript.
PM Agent:
I'll break this down into a clear task for the Dev agent. Starting now...
[Spawns Dev agent with detailed spec]
Dev agent is working on the project. I'll monitor progress and report back when complete.
PM Agent (later):
✅ Landing page completed!
Deliverables:
- Next.js 14+ App Router project
- Hero, Features, Contact sections
- Fully responsive design
- TypeScript + Tailwind CSS
- Git repository initialized
Location:
~/projects/my-landing-page/Ready for deployment. Would you like me to deploy to Vercel?
You (Director)
↓
PM Agent (Orchestrator)
↓
Dev Agent (Implementer)
↓
Working Code
The PM agent uses this template to communicate with Dev:
## Project: [NAME]
## Task: [ACTION]
## Requirements:
1. [Requirement 1]
2. [Requirement 2]
## Technical Constraints:
- [Constraint 1]
- [Constraint 2]
## Acceptance Criteria:
- [ ] [Criterion 1]
- [ ] [Criterion 2]
## Deliverables:
- [Deliverable 1]
- [Deliverable 2]
PM Agent (orchestration):
anthropic/claude-sonnet-4-5 - Best reasoninggoogle/gemini-2.5-flash - Fast & efficientopenai/gpt-4o - BalancedDev Agent (code generation):
google/gemini-2.5-flash - Fast iteration (recommended)anthropic/claude-sonnet-4-5 - Higher qualityopenai/gpt-4o-mini - Budget-friendlySet a dedicated workspace for projects:
agents:
multi-agent-pm:
soul: ~/.openclaw/skills/multi-agent-dev-team/agents/pm-agent/SOUL.md
model: anthropic/claude-sonnet-4-5-20250929
cwd: ~/dev-projects # All projects created here
Don't ask for everything at once. Start with an MVP:
❌ Bad:
Build a full e-commerce site with user auth, payments, admin dashboard, and inventory management.
✅ Good:
Build a simple product landing page with hero, features, and signup form.
The more specific your requirements, the better the result:
❌ Vague:
Make a nice website.
✅ Specific:
Create a Next.js landing page with:
- Hero section with CTA button
- 3-column feature grid
- Contact form with email validation
- Tailwind CSS styling
- Dark mode support
Build in phases:
Phase 1: Basic structure Phase 2: Add features Phase 3: Polish & deploy
Always review the generated code before deploying. The agents are good, but human oversight is important.
If you have a specific style or pattern in mind, share examples:
Build a landing page similar to https://example.com, but for [your product].
Check:
Solution:
sessions_historyCheck:
npm install)Solution:
Solutions:
gemini-2.5-flash)You: Build a landing page for a SaaS product called "TaskFlow".
Include hero, features (3 cards), and pricing table. Use Next.js
and Tailwind CSS.
PM: Working on it...
[2 minutes later]
PM: ✅ TaskFlow landing page complete! Ready for deployment.
You: Create a reusable Button component library with variants
(primary, secondary, outline) and sizes (sm, md, lg). Use
TypeScript and class-variance-authority.
PM: Task received. Spawning Dev agent...
[3 minutes later]
PM: ✅ Button component library complete with Storybook examples.
You: Build a Next.js app that fetches and displays GitHub user
profiles. Include search functionality and responsive cards.
PM: Starting development...
[4 minutes later]
PM: ✅ GitHub profile viewer complete with search and error handling.
Want more power? Upgrade to Multi-Agent Dev Team Pro ($49):
MIT License - See LICENSE file for details
Built by UBIK Collective
Powered by OpenClaw
Ready to build with AI agents? Install now:
npx clawhub install multi-agent-dev-team