ソース情報
- リポジトリ
- trungdo9/ClauKit
- ソースの最終更新活動
- 2026年6月4日 14:24
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/trungdo9/ClauKit --skill tech-graphコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
WordPress REST API client — connect to a live WP site to publish/update posts & pages (draft→publish), upload media, manage categories/tags, write Yoast/RankMath SEO meta, and audit existing content. Use when pushing generated marketing content to WordPress or auditing live WP articles. Auth via Application Passwords (env vars only). Consumer/client skill (not for building WP plugin endpoints).
Conversion Rate Optimization — landing pages, signup flows, popups, A/B tests. 25-point framework.
End-to-end SEO article production pipeline — from keyword strategy to published post. Standardizes a 6-stage flow (research/strategy → competitor analysis + outline → section-by-section writing → on-page optimization → media → internal-link + publish) into a Claude-native workflow. Ported from an n8n production pipeline. Use to plan, write, optimize, and publish complete SEO articles (single or at scale), incl. WordPress. State tracked via a content pipeline table (Supabase or a local plan file).
SOC 職業分類に基づく
SKILL.md を表示中
| name | tech-graph |
| description | Create publication-ready SVG technical diagrams |
| category | Documentation & Content |
| status | active |
Generate publication-quality technical diagrams as SVG code. Tech-graph tools (GraphViz DOT, mingrammer/diagrams, D3.js + Graphviz) render structured architecture, infrastructure, and graph visualizations suitable for documentation, whitepapers, and presentations.
Do NOT use when: Needing hand-drawn casual style (use Excalidraw), requiring interactive pan/zoom/filters (use D3.js directly), or building real-time dashboards (overhead not justified).
dot -Tsvg, Python script with diagram rendering, or D3 rendering pipelineDOT is a graph description language used by GraphViz (AT&T Bell Labs 1991, now open-source) for automatic layout. Define nodes and edges; GraphViz applies layout algorithms (Graphviz, neato, fdp) to compute positions. Output: SVG, PNG, PDF.
Example:
digraph G {
A -> B [label="depends"];
B -> C;
C -> A [style=dashed];
}
Simple syntax, powerful auto-layout. No explicit positioning; let algorithm optimize.
Diagrams library (Python 3.9+) renders cloud architecture using AWS/Azure/GCP provider icons. Define infrastructure as code; generates Graphviz DOT internally; outputs SVG/PNG. Ideal for visualizing cloud deployments, Kubernetes clusters, on-premises resources.
Example:
from diagrams import Diagram
from diagrams.aws.compute import EC2
from diagrams.aws.database import RDS
with Diagram("Architecture"):
EC2("web") >> RDS("db")
Requires Graphviz installed (apt-get install graphviz).
d3-graphviz library combines D3.js rendering with Graphviz layout via WebAssembly. Enables interactive SVG: animated transitions, hover effects, click handlers. Suitable for browser-based diagram exploration.
Performance caveat: SVG rendering slower than Canvas for large graphs; best for <500 nodes.
GraphViz (DOT):
strict digraph {
node [shape=box, style=filled, fillcolor=lightblue];
API [label="REST API"];
Service1 [label="Service A"];
Service2 [label="Service B"];
DB [shape=cylinder, label="Database"];
API -> Service1 [label="calls"];
API -> Service2 [label="calls"];
Service1 -> DB;
Service2 -> DB;
}
Render: dot -Tsvg architecture.dot -o architecture.svg
Mingrammer (Python):
from diagrams import Diagram, Cluster
from diagrams.aws.compute import EC2, Lambda
from diagrams.aws.network import ELB
from diagrams.aws.database import RDS
with Diagram("Microservices", show=False):
lb = ELB("load balancer")
with Cluster("Compute"):
web = [EC2("web1"), EC2("web2")]
api = Lambda("api")
db = RDS("postgres")
lb >> web >> api >> db
Outputs microservices.png with AWS icons automatically positioned.
digraph, add styling incrementally)graphviz binary; container/deployment must include it)