# Send Rstudio Research Agent to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rstudio-research-agent",
    "name": "Rstudio Research Agent",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/JackKuo666/rstudio-research-agent",
    "canonicalUrl": "https://clawhub.ai/JackKuo666/rstudio-research-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/rstudio-research-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rstudio-research-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "subskills/create-project/SKILL.md",
      "subskills/debug-env/SKILL.md",
      "subskills/generate-plots/SKILL.md",
      "subskills/run-analysis/SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rstudio-research-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rstudio-research-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/rstudio-research-agent",
    "agentUrl": "https://openagent3.xyz/skills/rstudio-research-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rstudio-research-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rstudio-research-agent/agent.md"
  }
}
```
## Documentation

### RStudio Research Agent

A Claude Code skill for comprehensive R-based research workflow automation. This skill enables interaction with R and RStudio environments for scientific computing, statistical analysis, bioinformatics, and data visualization.

### Overview

This skill helps researchers and data scientists:

Create structured, reproducible R research projects
Execute R scripts and RMarkdown analyses
Debug environment and dependency issues
Generate publication-quality plots and reports
Manage R packages with renv for reproducibility

Use this skill when the user wants to:

Create a new R project with standard structure
Run R analyses on existing projects
Troubleshoot R package dependencies
Generate statistical reports or visualizations
Set up reproducible R workflows

### What This Skill Does

When activated, this skill provides four main capabilities:

### 1. Create R Research Projects

Scaffold new R projects with standard folder structure
Initialize Git repositories (optional)
Set up renv for package management
Generate template scripts and reports
Create .Rproj files for RStudio

### 2. Run Analyses in Existing Projects

Execute R scripts and RMarkdown files
Handle parameterized analyses
Return results, tables, and plots
Generate HTML/PDF reports

### 3. Debug Environment and Dependencies

Check for missing R packages
Resolve library conflicts
Suggest fixes for environment issues
Verify R version compatibility

### 4. Generate Publication-Quality Plots

Create figures with ggplot2 and other visualization libraries
Export to PDF/PNG/SVG/TIFF formats
Follow journal-specific formatting guidelines
Support multi-panel composite figures
Use color-blind friendly palettes

### Example User Requests That Should Trigger This Skill

"Create a new R project for my genomics data analysis"
"Run analysis.R in my existing project and show results"
"Check if all required packages are installed"
"Generate a scatter plot with regression line from my dataset"
"Set up a reproducible R workflow for RNA-seq analysis"
"Debug my R environment - packages won't load"
"Create a statistical report for this clinical trial data"

### Project Structure

Projects created by this skill follow this standardized structure:

my-research-project/
├── data/
│   ├── raw/               # Original, immutable data files
│   └── processed/         # Cleaned, transformed data
├── scripts/               # Analysis and processing scripts
├── results/
│   ├── figures/           # Plots and visualizations
│   ├── tables/            # Summary tables
│   └── models/            # Saved model objects (.rds files)
├── reports/               # R Markdown/Quarto documents
├── renv.lock              # Package version lock file
├── .Rproj                 # RStudio project file
└── README.md              # Project documentation

### Tools & Packages Commonly Used

PurposeR PackagesData wranglingtidyverse, data.tableVisualizationggplot2, patchwork, scalesStatisticsstats, lme4, survival, broomBioinformaticsBioconductor (DESeq2, edgeR, limma)Reportingrmarkdown, quartoReproducibilityrenv

### Creating a New Project

User: Create a new R project for gene expression analysis with Git initialized.

Skill actions:

Create directory structure (data/, scripts/, results/, reports/)
Initialize Git repository
Set up renv environment
Install DESeq2, tidyverse, ggplot2
Generate analysis template scripts
Create R Markdown report template

### Running an Analysis

User: Run the differential expression analysis and return results.

Skill actions:

Activate project environment (renv)
Execute analysis script
Capture console output and plots
Return summary tables and model statistics
Generate report if requested

### Debugging Dependencies

User: My R script fails with "package not found" errors.

Skill actions:

Check R version and package library paths
Scan script for required packages
Compare with installed packages
Generate installation commands
Check for version conflicts

### Notes

Requires R >= 4.0.0
Supports both RStudio and command-line R
Uses renv for reproducible package management
All outputs saved to files (not just console)
Follows R best practices and modern conventions

### Sub-Skills

This skill includes specialized sub-skills:

create-project: Scaffold new R research projects
run-analysis: Execute R scripts and generate reports
debug-env: Troubleshoot R environments and dependencies
generate-plots: Create publication-quality figures with journal formatting

Each sub-skill can be invoked independently or as part of a complete workflow.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JackKuo666
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/rstudio-research-agent)
- [Send to Agent page](https://openagent3.xyz/skills/rstudio-research-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/rstudio-research-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/rstudio-research-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/rstudio-research-agent)