mojo
Mojoは、Pythonの手軽さとC言語並みの性能を両立するプログラミング言語で、このSkillは、AI/MLコードの高速化、SIMDや並列処理による数値計算の最適化、Pythonコードの段階的なMojoへの移行を支援することで、大幅な速度向上を実現するSkill。
📜 元の英語説明(参考)
Expert guidance for Mojo, the programming language by Modular that combines Python's usability with C-level performance. Helps developers write high-performance AI/ML code, optimize numerical computations with SIMD and parallelism, and gradually port Python code to Mojo for orders-of-magnitude speedups.
🇯🇵 日本人クリエイター向け解説
Mojoは、Pythonの手軽さとC言語並みの性能を両立するプログラミング言語で、このSkillは、AI/MLコードの高速化、SIMDや並列処理による数値計算の最適化、Pythonコードの段階的なMojoへの移行を支援することで、大幅な速度向上を実現するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o mojo.zip https://jpskill.com/download/15138.zip && unzip -o mojo.zip && rm mojo.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15138.zip -OutFile "$d\mojo.zip"; Expand-Archive "$d\mojo.zip" -DestinationPath $d -Force; ri "$d\mojo.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
mojo.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
mojoフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Mojo — AI 向け Python 並みの速度のシステム言語
概要
Mojo は、Modular 社が開発したプログラミング言語で、Python の使いやすさと C レベルのパフォーマンスを兼ね備えています。開発者が高性能な AI/ML コードを作成し、SIMD と並列処理で数値計算を最適化し、Python コードを段階的に Mojo に移植して、桁違いの高速化を実現するのに役立ちます。
手順
Python との互換性
# Mojo は Python コードを直接実行し、Python ライブラリを呼び出すことができます。
# Python から始めて、Mojo でホットパスを最適化します。
from python import Python
fn main() raises:
# 任意の Python ライブラリをインポート
let np = Python.import_module("numpy")
let plt = Python.import_module("matplotlib.pyplot")
# NumPy 配列を通常どおりに使用
let data = np.random.randn(1000)
let mean = np.mean(data)
let std = np.std(data)
print("Mean:", mean, "Std:", std)
# matplotlib でプロット
plt.hist(data, bins=30)
plt.title("Distribution")
plt.savefig("plot.png")
高性能な構造体
# matrix.mojo — SIMD 演算を備えたカスタム行列型
# これは、小さな行列の場合、同等の NumPy よりも 10 ~ 100 倍高速に実行されます。
from math import sqrt
from algorithm import vectorize, parallelize
struct Matrix:
var data: DTypePointer[DType.float64]
var rows: Int
var cols: Int
fn __init__(inout self, rows: Int, cols: Int):
self.rows = rows
self.cols = cols
self.data = DTypePointer[DType.float64].alloc(rows * cols)
memset_zero(self.data, rows * cols)
fn __getitem__(self, row: Int, col: Int) -> Float64:
return self.data.load(row * self.cols + col)
fn __setitem__(inout self, row: Int, col: Int, val: Float64):
self.data.store(row * self.cols + col, val)
fn __del__(owned self):
self.data.free()
fn matmul(self, other: Matrix) -> Matrix:
"""SIMD ベクトル化を使用した行列乗算。
CPU 命令ごとに複数の浮動小数点演算を処理します。
256 ビット SIMD を搭載した最新の CPU では、4 つの float64 演算を
一度に処理します。これは、スカラーコードよりも 4 倍高速です。
"""
var result = Matrix(self.rows, other.cols)
let simd_width = simdwidthof[DType.float64]()
@parameter
fn calc_row(row: Int):
for k in range(self.cols):
@parameter
fn dot[simd_width: Int](col: Int):
result.data.store[width=simd_width](
row * other.cols + col,
result.data.load[width=simd_width](row * other.cols + col)
+ self[row, k] * other.data.load[width=simd_width](k * other.cols + col)
)
vectorize[dot, simd_width](other.cols)
parallelize[calc_row](self.rows) # CPU コア全体で並列化
return result
fn frobenius_norm(self) -> Float64:
"""SIMD 削減を使用してフロベニウスノルムを計算します。"""
var sum: Float64 = 0.0
let simd_width = simdwidthof[DType.float64]()
@parameter
fn accumulate[width: Int](idx: Int):
let vals = self.data.load[width=width](idx)
sum += (vals * vals).reduce_add()
vectorize[accumulate, simd_width](self.rows * self.cols)
return sqrt(sum)
SIMD とベクトル化
# simd_example.mojo — 並列レーンでデータを処理
from algorithm import vectorize
from sys.info import simdwidthof
fn relu_activation(inout data: DTypePointer[DType.float32], size: Int):
"""SIMD を使用して ReLU 活性化を適用します。
AVX2 CPU では 8 つの float32 値を同時に処理し、
AVX-512 では 16 個の値を処理します。@parameter デコレータは、
SIMD 幅がコンパイル時に解決されるようにします。
"""
let simd_width = simdwidthof[DType.float32]() # AVX2 では 8
@parameter
fn apply_relu[width: Int](idx: Int):
let values = data.load[width=width](idx)
let zeros = SIMD[DType.float32, width](0)
data.store[width=width](idx, values.max(zeros))
vectorize[apply_relu, simd_width](size)
fn softmax(inout data: DTypePointer[DType.float32], size: Int):
"""SIMD 演算による数値的に安定したソフトマックス。"""
# 数値安定性のために最大値を見つける
var max_val: Float32 = data.load(0)
for i in range(1, size):
let val = data.load(i)
if val > max_val:
max_val = val
# exp(x - max) を計算して合計
var sum: Float32 = 0.0
for i in range(size):
let exp_val = math.exp(data.load(i) - max_val)
data.store(i, exp_val)
sum += exp_val
# 正規化
let inv_sum = 1.0 / sum
let simd_width = simdwidthof[DType.float32]()
@parameter
fn normalize[width: Int](idx: Int):
data.store[width=width](idx, data.load[width=width](idx) * inv_sum)
vectorize[normalize, simd_width](size)
並列処理
# parallel.mojo — マルチコア並列処理
from algorithm import parallelize, vectorize
from time import now
fn parallel_image_processing(
inout pixels: DTypePointer[DType.uint8],
width: Int,
height: Int,
):
"""CPU コア全体で並行してグレースケール変換を適用します。
各行は異なるコアによって処理され、各行内では、
SIMD が複数のピクセルを同時に処理します。
"""
@parameter
fn process_row(row: Int):
let row_offset = row * width * 3 # 3 チャンネル (RGB)
for col in range(width):
let idx = row_offset + col * 3
let r = pixels.load(idx).cast[DType.float32]()
let g = pixels.load(idx + 1).cast[DType.float32]()
let b = pixels.load(idx + 2).cast[DType.float32]()
# 輝度式: 0.299R + 0.587G + 0.114B
let gray = (0.299 * r + 0.587 * g + 0.114 * b).cast[DType.uint8]()
pixels.store(idx, gray)
pixels.store(idx + 1, gray)
pixels.store(idx + 2, gray)
parallelize[process_row](height) # 各コアは行のサブセットを処理します
Ins
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Mojo — Python-Speed Systems Language for AI
Overview
Mojo, the programming language by Modular that combines Python's usability with C-level performance. Helps developers write high-performance AI/ML code, optimize numerical computations with SIMD and parallelism, and gradually port Python code to Mojo for orders-of-magnitude speedups.
Instructions
Python Compatibility
# Mojo can run Python code directly and call Python libraries.
# Start with Python, optimize hot paths in Mojo.
from python import Python
fn main() raises:
# Import any Python library
let np = Python.import_module("numpy")
let plt = Python.import_module("matplotlib.pyplot")
# Use NumPy arrays as usual
let data = np.random.randn(1000)
let mean = np.mean(data)
let std = np.std(data)
print("Mean:", mean, "Std:", std)
# Plot with matplotlib
plt.hist(data, bins=30)
plt.title("Distribution")
plt.savefig("plot.png")
High-Performance Structs
# matrix.mojo — Custom matrix type with SIMD operations
# This runs 10-100x faster than equivalent NumPy for small matrices.
from math import sqrt
from algorithm import vectorize, parallelize
struct Matrix:
var data: DTypePointer[DType.float64]
var rows: Int
var cols: Int
fn __init__(inout self, rows: Int, cols: Int):
self.rows = rows
self.cols = cols
self.data = DTypePointer[DType.float64].alloc(rows * cols)
memset_zero(self.data, rows * cols)
fn __getitem__(self, row: Int, col: Int) -> Float64:
return self.data.load(row * self.cols + col)
fn __setitem__(inout self, row: Int, col: Int, val: Float64):
self.data.store(row * self.cols + col, val)
fn __del__(owned self):
self.data.free()
fn matmul(self, other: Matrix) -> Matrix:
"""Matrix multiplication using SIMD vectorization.
Processes multiple floating-point operations per CPU instruction.
On a modern CPU with 256-bit SIMD, this processes 4 float64 ops
at once — a 4x speedup over scalar code.
"""
var result = Matrix(self.rows, other.cols)
let simd_width = simdwidthof[DType.float64]()
@parameter
fn calc_row(row: Int):
for k in range(self.cols):
@parameter
fn dot[simd_width: Int](col: Int):
result.data.store[width=simd_width](
row * other.cols + col,
result.data.load[width=simd_width](row * other.cols + col)
+ self[row, k] * other.data.load[width=simd_width](k * other.cols + col)
)
vectorize[dot, simd_width](other.cols)
parallelize[calc_row](self.rows) # Parallelize across CPU cores
return result
fn frobenius_norm(self) -> Float64:
"""Compute the Frobenius norm using SIMD reduction."""
var sum: Float64 = 0.0
let simd_width = simdwidthof[DType.float64]()
@parameter
fn accumulate[width: Int](idx: Int):
let vals = self.data.load[width=width](idx)
sum += (vals * vals).reduce_add()
vectorize[accumulate, simd_width](self.rows * self.cols)
return sqrt(sum)
SIMD and Vectorization
# simd_example.mojo — Process data in parallel lanes
from algorithm import vectorize
from sys.info import simdwidthof
fn relu_activation(inout data: DTypePointer[DType.float32], size: Int):
"""Apply ReLU activation using SIMD.
Processes 8 float32 values simultaneously on AVX2 CPUs,
or 16 on AVX-512. The @parameter decorator ensures the
SIMD width is resolved at compile time.
"""
let simd_width = simdwidthof[DType.float32]() # 8 on AVX2
@parameter
fn apply_relu[width: Int](idx: Int):
let values = data.load[width=width](idx)
let zeros = SIMD[DType.float32, width](0)
data.store[width=width](idx, values.max(zeros))
vectorize[apply_relu, simd_width](size)
fn softmax(inout data: DTypePointer[DType.float32], size: Int):
"""Numerically stable softmax with SIMD operations."""
# Find max for numerical stability
var max_val: Float32 = data.load(0)
for i in range(1, size):
let val = data.load(i)
if val > max_val:
max_val = val
# Compute exp(x - max) and sum
var sum: Float32 = 0.0
for i in range(size):
let exp_val = math.exp(data.load(i) - max_val)
data.store(i, exp_val)
sum += exp_val
# Normalize
let inv_sum = 1.0 / sum
let simd_width = simdwidthof[DType.float32]()
@parameter
fn normalize[width: Int](idx: Int):
data.store[width=width](idx, data.load[width=width](idx) * inv_sum)
vectorize[normalize, simd_width](size)
Parallelism
# parallel.mojo — Multi-core parallel processing
from algorithm import parallelize, vectorize
from time import now
fn parallel_image_processing(
inout pixels: DTypePointer[DType.uint8],
width: Int,
height: Int,
):
"""Apply grayscale conversion in parallel across CPU cores.
Each row is processed by a different core, and within each row,
SIMD processes multiple pixels simultaneously.
"""
@parameter
fn process_row(row: Int):
let row_offset = row * width * 3 # 3 channels (RGB)
for col in range(width):
let idx = row_offset + col * 3
let r = pixels.load(idx).cast[DType.float32]()
let g = pixels.load(idx + 1).cast[DType.float32]()
let b = pixels.load(idx + 2).cast[DType.float32]()
# Luminance formula: 0.299R + 0.587G + 0.114B
let gray = (0.299 * r + 0.587 * g + 0.114 * b).cast[DType.uint8]()
pixels.store(idx, gray)
pixels.store(idx + 1, gray)
pixels.store(idx + 2, gray)
parallelize[process_row](height) # Each core handles a subset of rows
Installation
# Install Modular CLI
curl -s https://get.modular.com | sh -
# Install Mojo
modular install mojo
# Verify
mojo --version
# Run a Mojo file
mojo run my_program.mojo
# Build a binary
mojo build my_program.mojo -o my_program
Examples
Example 1: Building a feature with Mojo
User request:
Add a real-time collaborative python compatibility to my React app using Mojo.
The agent installs the package, creates the component with proper Mojo initialization, implements the python compatibility with event handling and state management, and adds TypeScript types for the integration.
Example 2: Migrating an existing feature to Mojo
User request:
I have a basic high-performance structs built with custom code. Migrate it to use Mojo for better high-performance structs support.
The agent reads the existing implementation, maps the custom logic to Mojo's API, rewrites the components using Mojo's primitives, preserves existing behavior, and adds features only possible with Mojo (like SIMD and Vectorization, Parallelism).
Guidelines
- Start with Python, optimize in Mojo — Use Python imports for prototyping; rewrite hot loops in native Mojo for 10-1000x speedups
- Use SIMD for data processing —
vectorizeprocesses multiple values per instruction; always prefer it over scalar loops for numeric data - Parallelize across cores —
parallelizedistributes work across CPU cores; combine withvectorizefor maximum throughput fnoverdef— Usefnfor performance-critical functions (strict typing, no overhead); usedeffor flexibility- Owned and borrowed references — Use
borrowed(default) for read-only,inoutfor mutation,ownedfor transfers; this enables zero-copy optimizations - Compile-time metaprogramming — Use
@parameterfor compile-time evaluation; SIMD widths, loop unrolling, and specialization happen at compile time - Profile before optimizing — Use
mojo build -O3and benchmark; not everything needs SIMD — focus on actual bottlenecks - Gradual migration — Port one function at a time from Python to Mojo; the interop layer makes incremental adoption easy