Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,16 @@ triggered when Python types are used Mojo or a Python module needs to interact
with Mojo code. Many capabilities of Mojo - Python interoperability are fairly
new, and existing coding agents don't handle them correctly without guidance.

### `mojo-optimizations`

[This skill](mojo-optimizations/SKILL.md) captures performance optimization
patterns for Mojo. It layers on top of `mojo-syntax` and is triggered when
profiling, benchmarking, tuning latency, or porting performance-sensitive code
to Mojo. It covers hot-path inlining, pre-allocation, unsafe pointer access in
hot loops, struct layout, view-vs-owned types, lazy-initialized global caches,
hash-keyed caching, `comptime` specialization, nibble-based SIMD byte scanning,
prefiltering strategies, and fast-path dispatch.

## Examples

Once these skills are installed, you can use them for many common tasks.
Expand Down
Loading