Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobcob7/dot-tools --skill diagram명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | diagram |
| description | Create PlantUML diagrams and add them to documentation |
| argument-hint | [diagram type] [description or target file] |
| allowed-tools | Bash, Read, Edit, Write, Glob |
Create a PlantUML diagram and optionally add it to a markdown file.
/diagram sequence user login flow - Create a sequence diagram/diagram component for README.md - Create a component diagram and add to README/diagram class data models - Create a class diagramDetermine diagram type from arguments:
sequence - Interactions between actors/systemscomponent - System architecture and dependenciesclass - Data models and relationshipsactivity - Workflows and decision flowsstate - State machinesCreate the PlantUML syntax appropriate for the type
Generate URLs using the plantuml plugin MCP server:
cd /path/to/plugins/plantuml && printf '%s\n%s\n%s\n' \
'{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"claude","version":"1.0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized"}' \
'{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"plantuml_generate_urls","arguments":{"diagram":"..."}}}' \
| python3 main.py
If a target file is specified, add the diagram to it:
[](editor-url)<details> blocks or other non-standard markdownShow the user:
@startuml
actor User
participant "System A" as A
participant "System B" as B
User -> A: request
A -> B: process
B --> A: response
A --> User: result
@enduml
@startuml
package "System" {
[Component A] as A
[Component B] as B
}
A --> B : uses
@enduml
@startuml
class Entity {
+id: string
+name: string
+save(): void
}
@enduml
When adding to a file, use a linked image with descriptive alt text. Do NOT include <details> blocks or inline PlantUML source — the editor link serves as the source reference:
[](https://www.plantuml.com/plantuml/uml/~1...)