muno-claude-plugin 1.7.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -314,6 +314,77 @@ test-cases/STORY-001/
314
314
 
315
315
  ---
316
316
 
317
+ ### /app-design
318
+
319
+ **UI/UX 디자인 생성**
320
+
321
+ 입력: 디자인 요청 (화면, 기능, 컴포넌트)
322
+ 출력: 디자인 스펙 문서
323
+
324
+ ```
325
+ /app-design
326
+
327
+ 로그인 화면을 디자인해주세요.
328
+ - 이메일/비밀번호 입력
329
+ - 소셜 로그인 (Apple, Google)
330
+ - Toss 스타일로
331
+ ```
332
+
333
+ **디자인 스펙 포함 내용:**
334
+ - 레이아웃 구조 (Navigation, Content, Actions)
335
+ - 비주얼 디자인 (Color, Typography, Spacing)
336
+ - 컴포넌트 명세 (Button, Input, Card 등)
337
+ - 인터랙션 정의 (Tap, Swipe, Animation)
338
+ - 상태별 UI (Default, Loading, Error, Empty)
339
+ - 접근성 가이드
340
+ - 다크 모드 대응
341
+ - 개발 가이드 (코드 스니펫)
342
+
343
+ **디자인 철학:**
344
+ - **Apple HIG**: Hierarchy, System Integration, Consistency
345
+ - **Toss Design**: 명확성, 속도, 신뢰
346
+ - **베스트 프랙티스**: Mobile-First, Accessibility, Performance
347
+
348
+ **참고 자료:**
349
+ - [Apple Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/)
350
+ - [Toss Design System](https://toss.tech/article/toss-design-system-guide)
351
+
352
+ ---
353
+
354
+ ### /swagger-docs-generator
355
+
356
+ **Swagger/OpenAPI 문서 → Markdown 변환**
357
+
358
+ 입력: Swagger 문서 URL
359
+ 출력: `documents/api/<service>-api-docs.md`
360
+
361
+ ```
362
+ /swagger-docs-generator
363
+
364
+ http://localhost:8080/v3/api-docs 의 API 문서를 생성해주세요.
365
+ ```
366
+
367
+ **기본 설정:**
368
+ - Host: `localhost`
369
+ - Port: `8080`
370
+ - Path: `/v3/api-docs`
371
+ - 주소 미제공 시 자동으로 `http://localhost:8080/v3/api-docs` 사용
372
+
373
+ **생성되는 문서 내용:**
374
+ - API 엔드포인트 목록 (태그별 그룹핑)
375
+ - Request/Response 스키마
376
+ - 파라미터 설명
377
+ - 데이터 모델 정의
378
+ - 에러 코드 정리
379
+ - cURL/JavaScript/Python/Java/Kotlin 예제
380
+
381
+ **고급 기능:**
382
+ - 여러 서버 문서 통합
383
+ - Postman Collection 생성
384
+ - 버전별 문서 관리
385
+
386
+ ---
387
+
317
388
  ## Personas Reference
318
389
 
319
390
  ### /dev - Developer
@@ -494,10 +565,59 @@ MCP 서버를 설정하는 방법을 알려주세요.
494
565
 
495
566
  ---
496
567
 
568
+ ### /app-designer - App Designer
569
+
570
+ **전문 분야:** UI/UX 디자인 및 사용자 경험 설계
571
+
572
+ ```
573
+ /app-designer
574
+
575
+ 이 기능의 UI/UX를 디자인해주세요.
576
+ 텍스트 없이도 직관적으로 이해할 수 있어야 합니다.
577
+ ```
578
+
579
+ **역량:**
580
+ - 미니멀리즘 디자인 (Apple, Toss 스타일)
581
+ - 텍스트 없는 직관적 인터페이스
582
+ - 마이크로 인터랙션 설계
583
+ - 디자인 시스템 구축
584
+ - 모션 디자인
585
+ - 접근성(Accessibility) 설계
586
+
587
+ **활용 시점:**
588
+ - UI/UX 디자인 검토
589
+ - 사용자 플로우 설계
590
+ - 디자인 시스템 구축
591
+ - 인터랙션 디자인
592
+ - 프로토타입 피드백
593
+
594
+ ---
595
+
497
596
  ## Subagents Reference
498
597
 
499
598
  Subagent는 특정 시점에 **자동으로 호출**됩니다.
500
599
 
600
+ ### code-reviewer
601
+
602
+ **호출 시점:** 코드 작성 완료 후, 커밋 전, PR 생성 시
603
+ **역할:** 코드 품질 검증 및 개선점 제안 (Staff Engineer 관점)
604
+
605
+ 검토 기준:
606
+ - **테스트 코드 존재 여부** (필수)
607
+ - 코드 품질 (SOLID, Clean Code)
608
+ - 아키텍처 준수 (Layer 분리, 의존성 방향)
609
+ - 보안 취약점 (SQL Injection, XSS, 인증/인가)
610
+ - 성능 이슈 (N+1 쿼리, 메모리 릭, 동시성)
611
+ - 에러 처리 (예외 처리, 로깅)
612
+ - 유지보수성 (가독성, 문서화)
613
+
614
+ 리뷰 우선순위:
615
+ - Priority 1 (MUST FIX): 보안, 버그, 데이터 손실, 테스트 코드 없음
616
+ - Priority 2 (SHOULD FIX): 테스트 부족, SOLID 위반, 아키텍처 위반
617
+ - Priority 3 (NICE TO HAVE): 변수명, 함수 분리, 리팩토링
618
+
619
+ ---
620
+
501
621
  ### tc-reviewer
502
622
 
503
623
  **호출 시점:** TC 생성 직후
package/bin/cli.js CHANGED
@@ -3,7 +3,7 @@
3
3
  const fs = require('fs');
4
4
  const path = require('path');
5
5
 
6
- const VERSION = '1.1.1';
6
+ const VERSION = '1.9.0';
7
7
  const PACKAGE_NAME = 'muno-claude-plugin';
8
8
 
9
9
  // ANSI colors
@@ -79,6 +79,8 @@ ${colors.bright}Available Skills:${colors.reset}
79
79
  /lld-generator Low-Level Design 생성
80
80
  /task-generator Implementation Task 생성
81
81
  /tc-generator Test Case 생성
82
+ /app-design UI/UX 디자인 생성
83
+ /swagger-docs-generator Swagger → Markdown 변환
82
84
 
83
85
  ${colors.bright}Available Personas:${colors.reset}
84
86
  /dev Developer (Java/Kotlin/Spring)
@@ -88,6 +90,7 @@ ${colors.bright}Available Personas:${colors.reset}
88
90
  /principal-engineer System Architect
89
91
  /staff-engineer Tech Leadership
90
92
  /claude-code-expert Claude Code Expert
93
+ /app-designer App Designer (UI/UX)
91
94
  `);
92
95
  }
93
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muno-claude-plugin",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "description": "Unleash Claude Code's full power - Complete development workflow with expert personas, TDD-based agents, and automated documentation",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {
@@ -18,13 +18,16 @@
18
18
  "agile",
19
19
  "development-workflow",
20
20
  "claude",
21
- "anthropic"
21
+ "anthropic",
22
+ "ui-ux-design",
23
+ "swagger",
24
+ "api-documentation"
22
25
  ],
23
26
  "author": "Muno Team",
24
27
  "license": "MIT",
25
28
  "repository": {
26
29
  "type": "git",
27
- "url": "https://github.com/headcha/muno-agent-workflow"
30
+ "url": "git+https://github.com/headcha/muno-claude-plugin.git"
28
31
  },
29
32
  "engines": {
30
33
  "node": ">=18.0.0"
@@ -33,6 +33,7 @@ AI 기반 개발 워크플로우 스킬 체계입니다.
33
33
  | `tc-reviewer` | TC 품질 리뷰 | TC 생성 후 |
34
34
  | `acceptance-test-generator` | 인수 테스트 생성 | TC 리뷰 후 |
35
35
  | `unit-test-generator` | Unit Test 생성 (TDD) | Task 구현 전 |
36
+ | `code-reviewer` | 코드 품질 리뷰 | 코드 작성 완료 후, 커밋 전, PR 생성 시 |
36
37
  | `task-tracker` | 상태 추적 | Task 완료 시 |
37
38
 
38
39
  ---