modelscope.cn

plantuml-diagram

Generate PlantUML diagrams including UML class, sequence, and component diagrams. Use when creating UML diagrams or system architecture visualizations.

Installation

$ npx skills add https://modelscope.cn

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,101 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

PlantUML Diagram Skill

PlantUML記法でUML図を生成するスキルです。

主な機能

  • クラス図: UML class diagrams
  • シーケンス図: Interaction diagrams
  • アクティビティ図: Workflow diagrams
  • コンポーネント図: Architecture diagrams

クラス図

@startuml
class User {
  +String id
  +String name
  +String email
  +login()
  +logout()
}

class Order {
  +String id
  +Date createdAt
  +Float total
  +addItem()
  +checkout()
}

User "1" -- "*" Order : places
@enduml

シーケンス図

@startuml
actor User
participant Frontend
participant Backend
database Database

User -> Frontend: Login
Frontend -> Backend: POST /api/login
Backend -> Database: SELECT user
Database --> Backend: User data
Backend --> Frontend: JWT token
Frontend --> User: Success
@enduml

バージョン情報

  • Version: 1.0.0