r-parallel-distributed

r-parallel-distributed is a skill for Claude Code, Codex from LeoLin990405/r-analytics-skill. It costs 25 tokens per session (543 once invoked), scanned A, original, MIT.

An R skill for running data-processing and computational jobs across clusters or cloud resources.

In plain words
What is it for?
Use it with Spark, batchtools, or future.batchtools to process distributed data and submit jobs to systems such as SLURM or SGE.
Why use it?
It helps move work beyond the limits of a single computer when datasets or job counts become large.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it with Spark, batchtools, or future.batchtools to process distributed data and submit jobs to systems such as SLURM or SGE.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leolin990405/r-analytics-skill/r-parallel-distributed
Install

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.

Any agent
npx skills add LeoLin990405/r-analytics-skill --skill r-parallel-distributed
Clone the repo
git clone --depth 1 https://github.com/LeoLin990405/r-analytics-skill

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for r-parallel-distributed

README.md
[![agentmods](https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-parallel-distributed/github.svg)](https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-parallel-distributed)
Your own site
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-parallel-distributed"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-parallel-distributed/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.

agentmods 80×15 button for r-parallel-distributed

Your own site · 80×15
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-parallel-distributed"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-parallel-distributed.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 543 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.00543
Opus 5 $0.00013 $0.00271
Sonnet 5 $0.00005 $0.00109
Haiku 4.5 $0.00003 $0.00054

Measured 6d ago against content hash 46d548151c43, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

r-parallel-distributed 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 6d 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.

sub-skills/r-parallel/r-parallel-distributed/SKILL.md · 115 lines

What it actually says

R Distributed Computing

Cluster and cloud computing.

sparklyr

library(sparklyr)

# Connect
sc <- spark_connect(master = "local")
sc <- spark_connect(master = "yarn")

# Copy data
sdf <- copy_to(sc, df, "my_table")
sdf <- spark_read_csv(sc, "data", "path/to/file.csv")
spark_read_parquet(sc, "data", "path/to/file.parquet")

# dplyr operations
result <- sdf %>%
  filter(x > 0) %>%
  group_by(category) %>%
  summarize(mean_x = mean(x)) %>%
  collect()

# SQL
sdf <- sdf_sql(sc, "SELECT * FROM my_table WHERE x > 0")

# ML
model <- sdf %>%
  ml_linear_regression(y ~ x1 + x2)

predictions <- ml_predict(model, new_data)

# Disconnect
spark_disconnect(sc)

future.batchtools

library(future.batchtools)

# SLURM
plan(batchtools_slurm, workers = 100)

# SGE
plan(batchtools_sge)

# Custom template
plan(batchtools_slurm,
  template = "slurm.tmpl",
  resources = list(
    walltime = "01:00:00",
    memory = "4G",
    ncpus = 1
  )
)

# Submit jobs
results <- future_map(1:1000, process_task)

batchtools

library(batchtools)

# Create registry
reg <- makeRegistry(file.dir = "registry")

# Define jobs
batchMap(fun = my_function, args = list(x = 1:100), reg = reg)

# Submit
submitJobs(reg = reg)

# Status
getStatus(reg = reg)
getJobTable(reg = reg)

# Results
reduceResults(reg = reg)
loadResult(1, reg = reg)

clustermq

library(clustermq)

# Options
options(clustermq.scheduler = "slurm")

# Submit
results <- Q(
  fun = my_function,
  x = 1:100,
  n_jobs = 10
)

# With data
results <- Q(
  fun = my_function,
  x = 1:100,
  const = list(data = my_data),
  export = list(helper_function = helper_function)
)
Files

What ships with it

1 file 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.

Changes

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.

  1. 6d ago First seen · 115 lines · 25 tokens per session scan A 46d548151c43

Subscribe to this mod's changes

r-parallel-distributed is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 25 tokens to every session and 543 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

databricks-lakehouse-engineering-at-azure

Review and guide Databricks Lakehouse engineering on Azure: medallion architecture (bronze/silver/gold), Delta Lake pipelines, ADLS Gen2 access via Unity Catalog external locations and storage credentials, Access Connector managed identity, cluster access mode enforcement, AKV-backed secret scopes, VNet injection and…

VincentChuWaiChow/vanguard-frontier-agentic · 0 tokens

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…

VincentChuWaiChow/vanguard-frontier-agentic · 79 tokens

contabo-live-instance-lifecycle-guard

Live-guard skill for Contabo VPS and VDS lifecycle operations including instance creation with product selection and region, reinstallation with image and Cloud-Init userData, and cancellation. Requires mandatory contract period acknowledgment (1, 3, 6, or 12 months), billing impact confirmation, and a rollback plan…

VincentChuWaiChow/vanguard-frontier-agentic · 91 tokens

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.…

VincentChuWaiChow/vanguard-frontier-agentic · 112 tokens

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…

VincentChuWaiChow/vanguard-frontier-agentic · 86 tokens

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)…

VincentChuWaiChow/vanguard-frontier-agentic · 113 tokens