Agent skill · Content & Marketing

matlab-sharing

Share MATLAB content by guiding users through uploading to GitHub, MATLAB Drive, or File Exchange, then generating "Open in MATLAB Online" URLs. Covers the full sharing workflow: choosing a platform, uploading content (automated via gh CLI for GitHub, manual for MATLAB Drive and File Exchange), and constructing the correct URL. Use when a user wants to share MATLAB code with others, open local files in MATLAB Online, generate an open-in-MATLAB-Online button or badge, or when an AI agent has generated MATLAB code locally and the user wants to share it or run it in MATLAB Online.

matlabgithub.com/matlabGitHub ↗
claude-codecodexcopilotNOASSERTION
Install
npx skills add matlab/matlab-agentic-toolkit --skill matlab-sharing --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.0
Declared author: MathWorks
Path: skills-catalog/cloud-solutions/matlab-sharing/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 868
Language: MATLAB

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Sharing MATLAB Content Share MATLAB content by uploading to GitHub, MATLAB Drive, or File Exchange, then generating "Open in MATLAB Online" URLs that let recipients open the content directly in a browser. ## When to Use - User has local MATLAB files and wants to open them in MATLAB Online - User wants to share MATLAB code via a link that opens in MATLAB Online - AI agent generated MATLAB code locally and user wants to run/open it in MATLAB Online - User asks for an "Open in MATLAB Online" link, button, or badge - User has content on GitHub/MATLAB Drive/File Exchange and wants the direct-open URL ## When NOT to Use - User wants to try out MATLAB code without needing to upload anywhere - User is asking about MATLAB Online features, licensing, or account setup - User wants to run MATLAB code interactively in MATLAB Online without generating a shareable link ## Workflow ### 1. Identify the starting point Ask what the user has: - **Local files only** → they need to upload first, then generate the URL - **Already on GitHub** → skip to URL generation (GitHub path) - **Already on MATLAB Drive with a share link** → skip to URL generation (Drive path) - **Already on File Exchange** → skip

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to Use
  3. Workflow
  4. 1. Identify the starting point
  5. 2. Help choose a path
  6. 3. Guide the upload
  7. 4. Generate the URL
  8. 5. Optionally generate a badge (GitHub path only)
  9. URL Templates
  10. GitHub
  11. MATLAB Drive
  12. File Exchange
  13. GitHub Path: Step-by-Step
  14. MATLAB Drive Path: Step-by-Step
Ships with 1 file
  • manifest.yaml
Commands it runs
git init my-project
cd my-project
cp /path/to/your/file.m .
git add .
git commit -m "Add MATLAB code"
gh repo create my-project --public --source=. --push
More from matlab-agentic-toolkit
All skills →
About this skill
What does the matlab-sharing skill do?

Share MATLAB content by guiding users through uploading to GitHub, MATLAB Drive, or File Exchange, then generating "Open in MATLAB Online" URLs. Covers the full sharing workflow: choosing a platform, uploading content (automated via gh CLI for GitHub, manual for MATLAB Drive and File Exchange), and constructing the correct URL. Use when a user wants to share MATLAB code with others, open local files in MATLAB Online, generate an open-in-MATLAB-Online button or badge, or when an AI agent has generated MATLAB code locally and the user wants to share it or run it in MATLAB Online.

How do I install it?

Run `npx skills add matlab/matlab-agentic-toolkit --skill matlab-sharing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From matlab/matlab-agentic-toolkit, a repository with 868 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going