返回技能列表

scaffold-shiny-app

pjt222
更新于 Yesterday
8 次查看
17
2
17
在 GitHub 上查看
designdata

关于

This Claude Skill scaffolds new Shiny applications in R using golem (production), rhino (enterprise), or vanilla (prototype) frameworks. It handles project initialization and creates the first module, ideal for starting dashboards, data explorers, or production-ready web apps. Use it to quickly bootstrap interactive R web applications with proper structure.

快速安装

Claude Code

推荐
主要方式
npx skills add pjt222/agent-almanac -a claude-code
插件命令备选方式
/plugin add https://github.com/pjt222/agent-almanac
Git 克隆备选方式
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/scaffold-shiny-app

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

搭 Shiny 應用

以 golem、rhino、或素本之搭,立新 Shiny 應用,附生產可用之結構。

用時

  • 立新 R 之交互網應用乃用
  • 立儀表或數探索之原型乃用
  • 立生產 Shiny 為 R 包(golem)乃用
  • 啟企業 Shiny 之項目(rhino)乃用

  • 必要:應用之名
  • 必要:框架之擇(golem、rhino、或素本)
  • 可選:是否含模之搭(默:是)
  • 可選:是否用 renv 管依(默:是)
  • 可選:展之目標(shinyapps.io、Posit Connect、Docker)

第一步:擇框架

依項目之求擇宜之框:

框架宜於結構
golem生產應用以 R 包散R 包附 DESCRIPTION、試、vignette
rhino企業應用附 JS/CSS 之建管線box 模、Sass、JS 打包、rhino::init()
速原型與學一 app.R 或 ui.R/server.R 對

得:依範與團之需明擇框。

敗則:不知何擇,默用 golem——其結構最備,可後簡之。素唯宜於棄之原型。

第二步:搭項目

Golem 之路

golem::create_golem("myapp", package_name = "myapp")

此立:

myapp/
├── DESCRIPTION
├── NAMESPACE
├── R/
│   ├── app_config.R
│   ├── app_server.R
│   ├── app_ui.R
│   └── run_app.R
├── dev/
│   ├── 01_start.R
│   ├── 02_dev.R
│   ├── 03_deploy.R
│   └── run_dev.R
├── inst/
│   ├── app/www/
│   └── golem-config.yml
├── man/
├── tests/
│   ├── testthat.R
│   └── testthat/
└── vignettes/

Rhino 之路

rhino::init("myapp")

此立:

myapp/
├── app/
│   ├── js/
│   ├── logic/
│   ├── static/
│   ├── styles/
│   ├── view/
│   └── main.R
├── tests/
│   ├── cypress/
│   └── testthat/
├── .github/
├── app.R
├── dependencies.R
├── rhino.yml
└── renv.lock

素之路

app.R

library(shiny)
library(bslib)

ui <- page_sidebar(
  title = "My App",
  sidebar = sidebar(
    sliderInput("n", "Sample size", 10, 1000, 100)
  ),
  card(
    card_header("Output"),
    plotOutput("plot")
  )
)

server <- function(input, output, session) {
  output$plot <- renderPlot({
    hist(rnorm(input$n), main = "Random Normal")
  })
}

shinyApp(ui, server)

得:項目目已建,諸搭文件皆存。

敗則:golem 者,確 golem 已裝:install.packages("golem")。rhino 者,自 GitHub 裝:remotes::install_github("Appsilon/rhino")。素者,確 shiny 與 bslib 已裝。

第三步:配依

Golem/素

# Initialize renv
renv::init()

# Add core dependencies
usethis::use_package("shiny")
usethis::use_package("bslib")
usethis::use_package("DT")         # if using data tables
usethis::use_package("plotly")     # if using interactive plots

# Snapshot
renv::snapshot()

Rhino

依管於 dependencies.R

# dependencies.R
library(shiny)
library(bslib)
library(DT)

得:諸依錄於 DESCRIPTION(golem)或 dependencies.R(rhino),且以 renv 鎖。

敗則:renv::init() 敗,察寫之權。包裝敗,察 R 之版合否。

第四步:立首模

Golem

golem::add_module(name = "dashboard", with_test = TRUE)

此立 R/mod_dashboard.Rtests/testthat/test-mod_dashboard.R

Rhino

app/view/dashboard.R

box::use(
  shiny[moduleServer, NS, tagList, h3, plotOutput, renderPlot],
)

#' @export
ui <- function(id) {
  ns <- NS(id)
  tagList(
    h3("Dashboard"),
    plotOutput(ns("plot"))
  )
}

#' @export
server <- function(id) {
  moduleServer(id, function(input, output, session) {
    output$plot <- renderPlot({
      plot(1:10)
    })
  })
}

於別文件 R/mod_dashboard.R 增模函:

dashboardUI <- function(id) {
  ns <- NS(id)
  tagList(
    h3("Dashboard"),
    plotOutput(ns("plot"))
  )
}

dashboardServer <- function(id) {
  moduleServer(id, function(input, output, session) {
    output$plot <- renderPlot({
      plot(1:10)
    })
  })
}

得:模文件已立,UI 與 server 函皆用正之命名空。

敗則:確模於 UI 函之諸入/出 ID 皆用 NS(id) 包之。無命名空,模多用則 ID 衝。

第五步:行應用

# Golem
golem::run_dev()

# Rhino
shiny::runApp()

# Vanilla
shiny::runApp("app.R")

得:應用於瀏覽器啟而無誤。

敗則:察 R 控台之誤辭。常患:包缺(裝之)、端口被用(以 port = 3839 指他端)、UI/server 之語法誤。

  • 應用目附所擇框之正結構
  • shiny::runApp() 啟而無誤
  • 至少一模已搭,附 UI 與 server 函
  • 諸依已錄(DESCRIPTION 或 dependencies.R)
  • renv.lock 捕諸包之版
  • 模用 NS(id) 為命名空之隔

  • 生產用素:素無試之基、無文檔、無展之器。原型外宜用 golem 或 rhino
  • 模缺命名空:模 UI 之每 inputIdoutputId 必以 ns() 包。忘者默致 ID 衝
  • golem 不用 devtools 之流:golem 應用乃 R 包。用 devtools::load_all()devtools::test()devtools::document()——非 source()
  • rhino 不用 box:rhino 用 box 為模引。勿退至 library()——用 box::use() 為明引

  • build-shiny-module — 立可重用之 Shiny 模附正命名空之隔
  • test-shiny-app — 設 shinytest2 與 testServer() 之試
  • deploy-shiny-app — 展於 shinyapps.io、Posit Connect、或 Docker
  • design-shiny-ui — bslib 之主題與響應之布
  • create-r-package — R 包之搭(golem 應用乃 R 包)
  • manage-renv-dependencies — 詳之 renv 依管

GitHub 仓库

pjt222/agent-almanac
路径: i18n/wenyan/skills/scaffold-shiny-app
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能