plugins marketplace
← All plugins

create-diagram

v0.1.0

Create tld architecture diagrams from a local codebase or system description.

CodexClaude Code1 skill

by Mert CiklaMIT279updated 5 hours ago

Source

git clone https://github.com/Mertcikla/tld

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

create-diagram/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── skills/create-diagram/SKILL.md

Skills1

create-diagramskills/create-diagram/SKILL.md

Create architecture diagrams from a local codebase or system description. Use when the user asks to diagram a repo, map system architecture, show component relationships, create drill-down views, or explain a system visually with tld.

Manifests2

.codex-plugin/plugin.json
{
  "name": "create-diagram",
  "version": "0.1.0",
  "description": "Create tld architecture diagrams from a local codebase or system description.",
  "author": {
    "name": "Mert Cikla",
    "url": "https://tldiagram.com"
  },
  "homepage": "https://tldiagram.com",
  "repository": "https://github.com/Mertcikla/tld",
  "license": "MIT",
  "keywords": [
    "architecture",
    "diagrams",
    "tld"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Create Diagram",
    "shortDescription": "Create tld architecture diagrams from codebases.",
    "longDescription": "Create Diagram helps Codex inspect a codebase or system description and build a navigable tld architecture model with elements, views, and connectors.",
    "developerName": "Mert Cikla",
    "category": "Productivity",
    "capabilities": [
      "Read",
      "Write"
    ],
    "websiteURL": "https://tldiagram.com",
    "defaultPrompt": "Create an architecture diagram for this repo."
  }
}
.claude-plugin/plugin.json
{
  "name": "tldiagram",
  "description": "Codebase diagram generation for tldiagram.com",
  "version": "0.0.1",
  "homepage": "https://tldiagram.com",
  "author": {
    "name": "Mert Çıkla",
    "url": "https://github.com/mertcikla"
  }
}