jpskill.com
🛠️ 開発・MCP コミュニティ

chartli

chartliをインストールして、数値データが書かれたテキストファイルや標準入力から、ターミナル上で見やすいグラフを簡単に描画できる便利なSkill。

📜 元の英語説明(参考)

Install and use chartli to render terminal charts from numeric text files or stdin.

🇯🇵 日本人クリエイター向け解説

一言でいうと

chartliをインストールして、数値データが書かれたテキストファイルや標準入力から、ターミナル上で見やすいグラフを簡単に描画できる便利なSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o chartli.zip https://jpskill.com/download/10656.zip && unzip -o chartli.zip && rm chartli.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10656.zip -OutFile "$d\chartli.zip"; Expand-Archive "$d\chartli.zip" -DestinationPath $d -Force; ri "$d\chartli.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して chartli.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → chartli フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

chartli Skill

エージェントがターミナルで数値データを ASCII/Unicode/SVG チャートとして可視化する必要がある場合に、このスキルを使用します。

インストール

npx skills add ahmadawais/chartli

CLI インストール/使用

すぐに使用する場合:

npx chartli --help

グローバルにインストールする場合:

npm i -g chartli

chartli でできること

  • チャートタイプをレンダリング: ascii, spark, bars, columns, heatmap, unicode, braille, svg
  • ファイルパス入力から読み込み
  • ファイルが渡されない場合は stdin から読み込み
  • --width--height で出力の寸法を制御
  • --mode circles|lines で SVG をレンダリング

コマンドテンプレート

ファイルから:

npx chartli <file> -t <type> [--width N] [--height N] [--mode circles|lines]

stdin から:

printf 'x y\n1 10\n2 20\n3 15\n' | npx chartli -t ascii -w 24 -h 8

タイプごとの例:

npx chartli data.txt -t ascii -w 24 -h 8
npx chartli data.txt -t spark
npx chartli data.txt -t bars -w 28
npx chartli data.txt -t columns -h 8
npx chartli data.txt -t heatmap
npx chartli data.txt -t unicode
npx chartli data.txt -t braille -w 16 -h 6
npx chartli data.txt -t svg -m lines -w 320 -h 120

入力フォーマット

空白で区切られた数値の行。オプションのヘッダー行も許可されます。

day sales costs profit
1 10 8 2
2 14 9 5
3 12 11 3

リポジトリのサンプルアセット

  • examples/assets/core-single-series.txt
  • examples/assets/core-multi-series.txt
  • examples/assets/image-data.txt
  • examples/assets/image-columns-variant.txt
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

chartli Skill

Use this skill when an agent needs to visualize numeric data in the terminal as ASCII/Unicode/SVG charts.

Install

npx skills add ahmadawais/chartli

CLI install/use

Instant use:

npx chartli --help

Global install:

npm i -g chartli

What chartli can do

  • Render chart types: ascii, spark, bars, columns, heatmap, unicode, braille, svg
  • Read from file path input
  • Read from stdin when no file is passed
  • Control output dimensions with --width and --height
  • Render SVG with --mode circles|lines

Command templates

From file:

npx chartli <file> -t <type> [--width N] [--height N] [--mode circles|lines]

From stdin:

printf 'x y\n1 10\n2 20\n3 15\n' | npx chartli -t ascii -w 24 -h 8

Per-type examples:

npx chartli data.txt -t ascii -w 24 -h 8
npx chartli data.txt -t spark
npx chartli data.txt -t bars -w 28
npx chartli data.txt -t columns -h 8
npx chartli data.txt -t heatmap
npx chartli data.txt -t unicode
npx chartli data.txt -t braille -w 16 -h 6
npx chartli data.txt -t svg -m lines -w 320 -h 120

Input format

Whitespace-separated numeric rows; optional header row is allowed.

day sales costs profit
1 10 8 2
2 14 9 5
3 12 11 3

Repository example assets

  • examples/assets/core-single-series.txt
  • examples/assets/core-multi-series.txt
  • examples/assets/image-data.txt
  • examples/assets/image-columns-variant.txt