MyLLM Skills
A curated, open collection of Skills for MyLLM — the private, on-device AI agent for iOS. Get the app on the App Store.
A Skill is a small bundle of reusable instructions in the open Agent-Skill format: a SKILL.md file with simple frontmatter (name, description) followed by a markdown body of guidance. MyLLM shows the model each skill's name and description, and loads the full instructions on demand when a task matches — so skills add know-how without bloating every prompt.
These skills are instruction-only (Tier 1): they contain no scripts and no network calls. The model follows them using the tools it already has.

Add your own skill in ~2 minutes → open the "Submit a skill" form or send a PR (one
SKILL.md). See CONTRIBUTING. New ideas to claim are ingood first issue. If these are useful, a ⭐ helps others find them.
Install
From the app (recommended) — in any chat:
/skill add teamdzx/myllm-skills
/skill install meeting-notes@teamdzx
…or install everything by name, e.g. /skill install code-review@teamdzx.
Direct, one tap — open a skill's SKILL.md URL or use a deep link:
/skill install https://raw.githubusercontent.com/TeamDzX/myllm-skills/main/skills/meeting-notes/SKILL.md
From the Marketplace — browse and tap Install skill at opticell-limited.com/myllm-wiki#skills.
Every install asks you to confirm in the app first.
What's inside
| Skill | What it does |
|---|---|
meeting-notes |
Turn raw notes or a transcript into clean minutes |
commit-message |
Write a Conventional Commits message from a change description |
email-reply |
Draft a professional email reply from bullet points |
code-review |
Review a snippet for bugs, security, and style |
flashcards |
Turn notes or a topic into Q/A study flashcards |
explain-simply |
Explain a complex topic in plain language with an analogy |
summarize-url |
Summarize a web page or article from a URL |
research-brief |
Answer a question with a short, sourced research brief |
proofread |
Fix grammar, clarity, and tone — and show what changed |
sql-query |
Write a SQL query from plain English and a schema |
regex-builder |
Build and explain a regular expression with examples |
unit-tests |
Write unit tests covering edge and error cases |
changelog |
Turn commits into Keep a Changelog release notes |
decision-matrix |
Weigh options against weighted criteria |
Layout
skills/
<skill-name>/
SKILL.md # frontmatter (name, description) + instructions
skills.json # machine-readable index of the above
The SKILL.md format
---
name: my-skill
description: One line — what it does and when to use it. This drives discovery, so write it like a trigger.
license: MIT
---
# My skill
Step-by-step instructions the model should follow when this skill is loaded.
Keep it focused. Reference the model's normal tools where useful.
Name must be lowercase letters, digits, hyphen, or underscore. Description must be a single line.
Contributing
See CONTRIBUTING.md. PRs welcome — one skill per folder, instruction-only.
License
MIT — use, modify, and redistribute freely, with attribution.
No comments yet
Be the first to share your take.