Skip to content

Commit fa0bdaa

Browse files
authored
Add mirai skill and instructions (#576)
1 parent 5894b65 commit fa0bdaa

File tree

2 files changed

+503
-0
lines changed

2 files changed

+503
-0
lines changed

dev/skills/README.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# mirai Skill for Agents
2+
3+
The mirai skill for async, parallel, and distributed computing in R is part of the [posit-dev/skills](https://github.com/posit-dev/skills) repository, a collection of Claude Skills from Posit for R package development, Shiny, Quarto, and more.
4+
5+
## Installation
6+
7+
### Using `npx skills add` (Any Agent)
8+
9+
Works with Claude Code, Codex, Cursor, Cline, and [other supported agents](https://github.com/vercel-labs/skills).
10+
11+
```bash
12+
# Install just the mirai skill
13+
npx skills add posit-dev/skills --skill mirai
14+
15+
# Browse and install interactively
16+
npx skills add posit-dev/skills --all
17+
```
18+
19+
### Using Claude Code Plugins
20+
21+
#### Add the Posit marketplace (recommended)
22+
23+
Adding the marketplace lets you browse and install any skill, and easily update them later.
24+
25+
```bash
26+
# Add the marketplace
27+
claude plugin marketplace add posit-dev/skills
28+
29+
# Install the r-lib category (includes mirai and all R package dev skills)
30+
claude plugin install r-lib@posit-dev-skills
31+
```
32+
33+
#### Direct install without marketplace
34+
35+
```bash
36+
claude plugin install r-lib@posit-dev-skills
37+
```
38+
39+
## Updating
40+
41+
Skills installed via the Claude Code plugin system can be updated:
42+
43+
```bash
44+
# Update the marketplace index first
45+
claude plugin marketplace update
46+
47+
# Then update individual plugins (use the same plugin@marketplace identifier as install)
48+
claude plugin update r-lib@posit-dev-skills
49+
```
50+
51+
Skills installed via `npx skills add` are copied into your agent's configuration at install time. To update, simply re-run the install command to fetch the latest versions.

0 commit comments

Comments
 (0)