Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add LeoLin990405/r-analytics-skill --skill r-parallelgit clone --depth 1 https://github.com/LeoLin990405/r-analytics-skillWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-parallel)<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-parallel"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-parallel/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-parallel"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-parallel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00032 | $0.01198 |
| Opus 5 | $0.00016 | $0.00599 |
| Sonnet 5 | $0.00006 | $0.00240 |
| Haiku 4.5 | $0.00003 | $0.00120 |
Grade A, and why
r-parallel scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 191 lines — stays where its author put it; the contents beside it link to each section on GitHub.
R Parallel & High Performance Skill
Sub-skills
| Sub-skill | Description |
|---|---|
| r-parallel-local | parallel, future, furrr, foreach |
| r-parallel-distributed | sparklyr, batchtools, clustermq |
| r-parallel-cpp | Rcpp, RcppParallel, RcppArmadillo |
Parallel computing and performance optimization in R.
Parallel Computing
| Package | Description |
|---|---|
| future ★ | Unified parallel/distributed API |
| furrr | future + purrr |
| foreach | Parallel loops |
| parallel | Built-in multicore/snow |
| doParallel | Parallel backend for foreach |
| Rmpi | MPI interface |
| batchtools | HPC cluster support |
Distributed Computing
| Package | Description |
|---|---|
| sparklyr ★ | Spark interface (RStudio) |
| SparkR | Spark R frontend |
| DistributedR | HP Vertica platform |
| ddR | Distributed data structures |
High Performance
| Package | Description |
|---|---|
| Rcpp ★ | C++ integration |
| cpp11 | Header-only C++ interface |
| Rcpp11 | C++11 Rcpp redesign |
| compiler | JIT compilation |
| data.table | Fast data manipulation |
Quick Examples
# future - unified parallel API
library(future)
plan(multisession, workers = 4) # Use 4 cores
# Async evaluation
f <- future({
slow_computation(data)
})
result <- value(f)
# future.apply
library(future.apply)
results <- future_lapply(1:100, function(i) {
expensive_function(i)
})
# furrr (future + purrr)
library(furrr)
plan(multisession, workers = 4)
results <- future_map(data_list, process_function)
results <- future_map_dfr(files, read_and_process)
# foreach
library(foreach)
library(doParallel)
registerDoParallel(cores = 4)
results <- foreach(i = 1:100, .combine = rbind) %dopar% {
expensive_function(i)
}
# parallel (base R)
library(parallel)
cl <- makeCluster(4)
results <- parLapply(cl, 1:100, function(i) {
expensive_function(i)
})
stopCluster(cl)
# Rcpp - C++ acceleration
library(Rcpp)
cppFunction('
double sumC(NumericVector x) {
int n = x.size();
double total = 0;
for(int i = 0; i < n; ++i) {
total += x[i];
}
return total;
}
')
sumC(1:1000000) # Much faster than sum()
# Rcpp with sourceCpp
# save as mycode.cpp
# [[Rcpp::export]]
# double meanC(NumericVector x) {
# return std::accumulate(x.begin(), x.end(), 0.0) / x.size();
# }
sourceCpp("mycode.cpp")
# Spark with sparklyr
library(sparklyr)
sc <- spark_connect(master = "local")
spark_df <- copy_to(sc, mtcars, "mtcars")
spark_df %>%
group_by(cyl) %>%
summarise(mean_mpg = mean(mpg)) %>%
collect()
spark_disconnect(sc)
What ships with it
17 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- r-parallel-cpp/Rcpp/SKILL.md 1.6 KB
- r-parallel-cpp/RcppParallel/SKILL.md 2.2 KB
- r-parallel-cpp/SKILL.md 2.3 KB
- r-parallel-distributed/SKILL.md 1.8 KB
- r-parallel-distributed/sparklyr/SKILL.md 1.5 KB
- r-parallel-local/doParallel/SKILL.md 3.5 KB
- r-parallel-local/foreach/SKILL.md 1.3 KB
- r-parallel-local/furrr/SKILL.md 1.4 KB
- r-parallel-local/future/SKILL.md 1.5 KB
- r-parallel-local/parallel/SKILL.md 3.2 KB
- r-parallel-local/SKILL.md 1.9 KB
- sub-skills/r-parallel-cpp/sub-skills/Rcpp/SKILL.md 1.6 KB
- sub-skills/r-parallel-cpp/sub-skills/RcppParallel/SKILL.md 2.2 KB
- sub-skills/r-parallel-distributed/sub-skills/sparklyr/SKILL.md 1.5 KB
- sub-skills/r-parallel-local/sub-skills/foreach/SKILL.md 1.3 KB
- sub-skills/r-parallel-local/sub-skills/furrr/SKILL.md 1.4 KB
- sub-skills/r-parallel-local/sub-skills/future/SKILL.md 1.5 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 191 lines · 32 tokens per session scan A 935fc6091b1e
r-parallel is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 32 tokens to every session and 1,198 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
model-registry-refresh
Re-verify and extend catalog/model-registry.json — the fail-closed model-name and reasoning-effort matrix scripts/model-policy.mjs validates against — via delegated Context7-backed research, orchestrator-owned registry edits, and the full validation chain; use when a policy check fails on an unregistered model, a…
databricks-ai-bi-genie
Use this skill to statically review AI/BI Genie agent and dashboard design: agent scoping (30-table limit), instructions and trusted assets, metric-view correctness, dashboard limits and rendering, benchmark design and honest accuracy reading, and the critical 'Individual data' versus 'Share data' permission decision.…
databricks-data-quality-observability
Use this skill to design and verify data quality expectations, table constraints, Lakehouse Monitoring, freshness detection, event-log interrogation, quality SLAs, and downstream quality signaling for Lakeflow pipelines. Reads pipeline source, table schema, expectations, monitor configuration, and event-log queries…
databricks-genai-agent-engineering
Use this skill to review generative-AI agent design on Databricks: Mosaic AI Agent Framework and ResponsesAgent interface, Databricks AI Search index variant and sync-mode choice, retrieval and context engineering, MCP server category and trust boundaries, external model-provider selection, and Unity AI Gateway…
databricks-genai-evaluation-observability
Use this skill to review generative-AI evaluation, tracing, and observability design on Databricks: MLflow Tracing instrumentation and span design, trace storage and governance, mlflow.genai.evaluate() harness design, the judge-versus-scorer distinction, built-in judge selection (ten single-turn and seven multi-turn)…
databricks-lakeflow-pipeline-engineering
Use this skill to design Lakeflow Spark Declarative Pipelines: medallion layering, Lakeflow Jobs orchestration and task dependencies, Delta table layout (liquid clustering, deletion vectors, Predictive Optimization), Auto Loader ingestion, schema evolution and rescueddata, materialized views versus streaming tables…