draw-io
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: README.md Description: # draw-io Diagram Skill A Claude Code skill for creating, editing, and managing draw.io diagrams with professional quality standards. ## Purpose This skill enables AI-assisted creation and maintenance of draw.io architecture diagrams, flowcharts, and technical documentation visuals.
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: draw-io description: draw.io diagram creation, editing, and review. Use for .drawio XML editing, PNG conversion, layout adjustment, and AWS icon usage.
Tool: SKILL.md [2/2]
Malicious tool definition detected
Tool: references/aws-icons.md [1/4] Description: # AWS アイコンとサービス名 ## 1.
Tool: references/aws-icons.md [2/4] Description: | AWS PrivateLink | mxgraph.aws4.privatelink | | AWS Global Accelerator | mxgraph.aws4.global_accelerator | | AWS App Mesh | mxgraph.aws4.app_mesh | | AWS Cloud Map | mxgraph.aws4.cloud_map | | AWS Client VPN | mxgraph.aws4.client_vpn | | AWS Site-to-Site VPN | mxgraph.aws4.site_to_site_vpn | | AWS Network Firewall | mxgraph.aws4.network_firewall | | Amazon VPC Lattice | mxgraph.aws4.vpc_lattice | | Verified Access | mxgraph.aws4.verified_access |
Tool: references/aws-icons.md [3/4] Description: | mxgraph.aws4.automation | | Systems Manager Inventory | mxgraph.aws4.inventory | | Systems Manager Patch Manager | mxgraph.aws4.patch_manager | | Systems Manager Run Command | mxgraph.aws4.run_command | | Systems Manager State Manager | mxgraph.aws4.state_manager | | Systems Manager Parameter Store | mxgraph.aws4.parameter_store | | Systems Manager OpsCenter | mxgraph.aws4.opscenter | | AWS Config | mxgraph.aws4.config | | AWS Service Catalog |
Tool: references/aws-icons.md [4/4] Description: Open 3D Engine | mxgraph.aws4.open_3d_engine | | Amazon Lumberyard | mxgraph.aws4.lumberyard | ### 3.20.
Malicious tool definition detected
Tool: references/layout-guidelines.md Description: # レイアウトガイドライン ## 1.
Malicious tool definition detected
Tool: scripts/convert-drawio-to-png.sh Description: #!/bin/bash set -e # Convert .drawio files to .drawio.png generated_files=() for drawio in "$@"; do png="${drawio%.drawio}.drawio.png" echo "Converting $drawio to $png..." # drawio CLI export to PNG with 2x scale for high quality if !
Malicious tool definition detected
Tool: scripts/find_aws_icon.py Description: #!/usr/bin/env python3 """AWS アイコン検索スクリプト references/aws-icons.md からサービス名でアイコン情報を検索する。 トークン効率を向上させるため、必要な情報のみを抽出する。 Usage: python find_aws_icon.py <service_name> python find_aws_icon.py ec2 python find_aws_icon.py lambda python find_aws_icon.py s3 """ import re import sys from pathlib import Path def load_icon_data() -> dict[str, str]: """aws-icons.md からアイコンデータを読み込む""" icons = {} script_dir = Path(__file__).parent aws_icons_path = script_dir.parent / "