ソース情報
- リポジトリ
- javimosch/supercli
- ソースの最終更新活動
- 2026年6月22日 09:18
- 検出された SKILL.md の言語
- 英語
- スター
- 51
- フォーク
- 7
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/javimosch/supercli --skill dutreeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Use this skill when the user wants to search, create, read, or manage Notion pages and databases — search workspace, query databases, create pages, read/write page content as Markdown, manage blocks, users, and files.
Use this skill when the user wants to chat with LLMs from the terminal — OpenAI, Claude, Gemini, local models, RAG, and multi-turn conversations without leaving the shell.
Use this skill when the user wants static analysis for Kotlin code — detect code smells, complexity, style violations, and generate reports for CI pipelines.
| name | dutree |
| description | a tool to analyze disk usage as a colored tree |
dutree is a fast, Rust-based command-line tool that displays disk usage as a colored tree, combining the functionality of du and tree.
Analyze current directory:
dutree
Show deeper tree (default depth is 1):
dutree -d 2 /path/to/dir
Aggregate small files (hide files smaller than given size):
dutree -a 10M
Show summary equivalent to -d1 -a1M:
dutree -s
Report real disk usage instead of file size:
dutree -u
Skip directories for a fast local overview:
dutree -f
Exclude directories by name:
dutree -x target
Compare multiple directories:
dutree /path/to/dir1 /path/to/dir2
| Flag | Description |
|---|---|
-d, --depth [DEPTH] | Show directories up to depth N (default 1) |
-a, --aggr [N[KMG]] | Aggregate smaller than N B/KiB/MiB/GiB (default 1M) |
-s, --summary | Equivalent to -da, or -d1 -a1M |
-u, --usage | Report real disk usage instead of file size |
-b, --bytes | Print sizes in bytes |
-f, --files-only | Skip directories for a fast local overview |
-x, --exclude NAME | Exclude matching files or directories |
-H, --no-hidden | Exclude hidden files |
-A, --ascii | ASCII characters only, no colors |
-h, --help | Show help |
-v, --version | Print version number |
cargo install dutree
Or download a prebuilt binary from the releases page.