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 personamanagmentlayer/pcl --skill r-expertgit clone --depth 1 https://github.com/personamanagmentlayer/pclWrote 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/personamanagmentlayer/pcl/r-expert)<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/r-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/r-expert/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/personamanagmentlayer/pcl/r-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/r-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 387 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00053 | $0.02488 |
| Opus 5 | $0.00026 | $0.01244 |
| Sonnet 5 | $0.00011 | $0.00498 |
| Haiku 4.5 | $0.00005 | $0.00249 |
Grade A, and why
r-expert 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 4d 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 — 437 lines — stays where its author put it; the contents beside it link to each section on GitHub.
R Statistical Computing Expert
Expert guidance for R programming, statistical analysis, data visualization, and data science.
Core Concepts
R Fundamentals
- Vectors and data frames
- Factors and lists
- Functions and apply family
- Packages and libraries
- R Markdown
- Tidyverse ecosystem
Statistical Analysis
- Descriptive statistics
- Hypothesis testing
- Regression analysis
- ANOVA
- Time series analysis
- Machine learning
Data Visualization
- ggplot2
- Base R graphics
- Interactive plots (plotly)
- Statistical charts
- Maps and spatial data
R Basics
# Vectors
numbers <- c(1, 2, 3, 4, 5)
names <- c("Alice", "Bob", "Charlie")
# Data frames
df <- data.frame(
id = 1:5,
name = c("Alice", "Bob", "Charlie", "David", "Eve"),
age = c(25, 30, 35, 28, 32),
salary = c(50000, 60000, 55000, 52000, 58000)
)
# Subsetting
df[df$age > 30, ] # Rows where age > 30
df[, c("name", "age")] # Select columns
# Functions
calculate_mean <- function(x) {
sum(x) / length(x)
}
# Apply family
sapply(df$age, function(x) x * 2)
lapply(list(1:5, 6:10), sum)
# Control structures
if (mean(df$age) > 30) {
print("Average age is above 30")
} else {
print("Average age is 30 or below")
}
# Loops
for (i in 1:nrow(df)) {
print(df$name[i])
}
Tidyverse
library(dplyr)
library(tidyr)
library(stringr)
# dplyr operations
df %>%
filter(age > 28) %>%
select(name, age, salary) %>%
mutate(
salary_bonus = salary * 1.1,
age_group = case_when(
age < 30 ~ "Young",
age < 35 ~ "Mid-career",
TRUE ~ "Senior"
)
) %>%
arrange(desc(salary)) %>%
group_by(age_group) %>%
summarise(
count = n(),
avg_salary = mean(salary),
total_salary = sum(salary)
)
# Reshaping data
wide_data <- data.frame(
id = 1:3,
year_2021 = c(100, 200, 150),
year_2022 = c(120, 210, 160)
)
# Wide to long
long_data <- wide_data %>%
pivot_longer(
cols = starts_with("year"),
names_to = "year",
values_to = "value",
names_prefix = "year_"
)
# Long to wide
wide_again <- long_data %>%
pivot_wider(
names_from = year,
values_from = value,
names_prefix = "year_"
)
# String operations
df %>%
mutate(
name_upper = str_to_upper(name),
name_length = str_length(name),
first_letter = str_sub(name, 1, 1)
)
# Joining data
df1 <- data.frame(id = 1:3, value1 = c("A", "B", "C"))
df2 <- data.frame(id = 2:4, value2 = c("X", "Y", "Z"))
inner_join(df1, df2, by = "id")
left_join(df1, df2, by = "id")
full_join(df1, df2, by = "id")
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.
- 4d ago Changed · +10 lines · +38 tokens per session cf3ffc588e66
- 6d ago First seen · 427 lines · 15 tokens per session scan A 7e053c78f3ab
r-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 2d ago), licensed Apache-2.0. It adds 53 tokens to every session and 2,488 once invoked, about $0.0003 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
jupyter-notebook
Iterative Python via live Jupyter kernel (hamelnb).
neuroskill-bci
Use live BCI cognitive and mood state from NeuroSkill.
saelens
Train sparse autoencoders to interpret model features.
accelerate
Run PyTorch training across GPUs with minimal changes.
pydantic-ai
Build production-ready AI agents with PydanticAI — type-safe tool use, structured outputs, dependency injection, and multi-model support.
bioinformatics
Gateway to 400+ genomics and computational biology skills.