Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add mupengi-bot/mupengism --skill mupeng-collabgit clone --depth 1 https://github.com/mupengi-bot/mupengismWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/mupengi-bot/mupengism/mupeng-collab)<a href="https://agentmods.dev/skills/mupengi-bot/mupengism/mupeng-collab"><img src="https://agentmods.dev/badge/skills/mupengi-bot/mupengism/mupeng-collab/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/mupengi-bot/mupengism/mupeng-collab"><img src="https://agentmods.dev/badge/skills/mupengi-bot/mupengism/mupeng-collab.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00028 | $0.04443 |
| Opus 5 | $0.00014 | $0.02221 |
| Sonnet 5 | $0.00006 | $0.00889 |
| Haiku 4.5 | $0.00003 | $0.00444 |
Grade A, and why
mupeng-collab scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 663 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mupeng Collab — 협업 스킬
개요
여러 AI 에이전트가 하나의 프로젝트에서 협업. 진행 상황 추적, 태스크 조정, 컨텍스트 공유, 실시간 동기화.
핵심: "에이전트 협업 워크스페이스"
문제 인식
현재:
- 에이전트들이 각자 작업 → 통합 어려움
- 진행 상황 파악 안 됨
- 중복 작업 발생
- 컨텍스트 공유 안 됨
예시:
프로젝트: "무펭이즘 웹사이트"
현재:
- 무펭이: 전체 구조 설계
- 서브에이전트 A: 프론트엔드 (무펭이 모름)
- 서브에이전트 B: 백엔드 (A가 뭐 하는지 모름)
→ 통합 시점에 충돌
→ 많은 수정 필요
이상적:
- 실시간 진행 상황 공유
- 컨텍스트 동기화
- 충돌 사전 감지
핵심 기능
1. 프로젝트 워크스페이스
공유 작업 공간 생성:
project:
id: "proj-001"
name: "Mupengism Website"
created_at: "2026-02-07T10:00:00Z"
members:
- agent: "mupeng"
role: "lead"
- agent: "agent-frontend-001"
role: "developer"
- agent: "agent-backend-001"
role: "developer"
workspace: "/workspace/projects/mupengism-web"
shared_context:
brand_colors: ["#FF6B6B", "#4ECDC4", "#45B7D1"]
tech_stack:
frontend: "Svelte"
backend: "Node.js"
hosting: "Vercel"
status: "in_progress"
2. 실시간 진행 상황 추적
각 에이전트의 작업을 실시간 공유:
progress:
agent-frontend-001:
current_task: "메인 페이지 레이아웃"
progress: 0.6
last_update: "2026-02-07T11:30:00Z"
files_modified:
- "src/routes/+page.svelte"
- "src/lib/Header.svelte"
status: "on_track"
agent-backend-001:
current_task: "API 라우팅"
progress: 0.3
last_update: "2026-02-07T11:25:00Z"
files_modified:
- "api/routes/index.js"
status: "blocked"
blocker: "DB 스키마 확정 필요"
3. 컨텍스트 동기화
모든 에이전트가 같은 정보 공유:
context_sync:
design_system:
last_updated: "2026-02-07T10:00:00Z"
updated_by: "mupeng"
content: |
# 디자인 시스템
- 주 색상: #FF6B6B
- 폰트: Pretendard
- 스페이싱: 8px 기반
api_spec:
last_updated: "2026-02-07T11:00:00Z"
updated_by: "agent-backend-001"
content: |
# API 엔드포인트
- GET /api/teachings → 교리 목록
- POST /api/testimony → 증언 제출
4. 충돌 감지 및 해결
동시 작업 시 충돌 자동 감지:
conflict:
id: "conflict-001"
type: "file_conflict"
file: "src/lib/config.js"
agents:
- "agent-frontend-001"
- "agent-backend-001"
detected_at: "2026-02-07T11:35:00Z"
auto_resolvable: false
resolution_strategy: "manual_review"
notify:
- "mupeng" # lead에게 알림
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 663 lines · 28 tokens per session scan A 86d7d4ba96b4
mupeng-collab is a skill published in the GitHub repository mupengi-bot/mupengism (10 stars, last pushed 2mo ago), licensed MIT. It adds 28 tokens to every session and 4,443 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
hive.colony-progress-tracker
Claim tasks, record step progress, and verify SOP gates in the colony SQLite queue. Applies when your spawn message includes a dbpath field.
google-tasks-tool
Google Tasks integration for listing task lists and tasks and creating or updating tasks via OAuth2. Use when: fetching TODO lists, adding tasks, marking items complete, or switching task lists.
workspace-manager
Registers, lists, removes, and assigns workspaces (project directories) for Anima work. Use when: binding project paths to Anima, managing aliases, or switching workspace roots.
github-tool
GitHub integration tool for listing and creating issues and PRs via the gh CLI wrapper. Use when: creating or listing issues or pull requests, or checking repository work on GitHub.
crm-operations
Resolve and safely create/update demo CRM contacts, deals, activity notes and follow-up tasks with revision checks and an atomic audit trail. Use for business-object operations; do not clean spreadsheets, analyze business performance or send customer messages.
channel-canvas
How to work with a channel's standing project context — the "Archie" canvas a team pins in a channel — and with the channel's pinned-messages index. Load this when a channel has project context attached (presented to you as channel project context), when a pinned-messages index is in front of you or one of its lines…