スキル一覧に戻る

create-quarto-report

pjt222
更新日 Yesterday
2 閲覧
17
2
17
GitHubで表示
メタpdfwordpowerpointdesign

について

このスキルは、再現可能なレポート、プレゼンテーション、ウェブサイト用のQuartoドキュメントを作成します。YAML設定、コードチャンク、出力形式、HTML/PDF/Wordへのレンダリングを処理します。コード埋め込み型の分析や、R Markdownからの移行にご利用ください。

クイックインストール

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/create-quarto-report

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Create Quarto Report

Repro Quarto doc → reports / presentations / websites.

Use When

  • Repro analysis report
  • Presentation w/ embedded code
  • Gen HTML/PDF/Word from code
  • Migrate R Markdown → Quarto

In

  • Required: Topic + audience
  • Required: Out fmt (html, pdf, docx, revealjs)
  • Optional: Data + analysis code
  • Optional: Bib (.bib)

Do

Step 1: Create Doc

report.qmd:

---
title: "Analysis Report"
author: "Author Name"
date: today
format:
  html:
    toc: true
    toc-depth: 3
    code-fold: true
    theme: cosmo
    self-contained: true
execute:
  echo: true
  warning: false
  message: false
bibliography: references.bib
---

Got: report.qmd exists w/ valid YAML (title, author, date, format, exec).

If err: Validate YAML header — --- delimiters match, indent correct. format: = supported (html, pdf, docx, revealjs).

Step 2: Content + Chunks

## Introduction

This report analyzes the relationship between variables X and Y.

## Data

```{r}
#| label: load-data
library(dplyr)
library(ggplot2)

data <- read.csv("data.csv")
glimpse(data)
```

## Analysis

```{r}
#| label: fig-scatter
#| fig-cap: "Scatter plot of X vs Y"
#| fig-width: 8
#| fig-height: 6

ggplot(data, aes(x = x_var, y = y_var)) +
  geom_point(alpha = 0.6) +
  geom_smooth(method = "lm") +
  theme_minimal()
```

As shown in @fig-scatter, there is a positive relationship.

## Results

```{r}
#| label: tbl-summary
#| tbl-cap: "Summary statistics"

data |>
  summarise(
    mean_x = mean(x_var),
    sd_x = sd(x_var),
    mean_y = mean(y_var),
    sd_y = sd(y_var)
  ) |>
  knitr::kable(digits = 2)
```

See @tbl-summary for descriptive statistics.

Got: Sections w/ {r} chunks + #| opts (labels, captions, dims).

If err: Verify ```{r} syntax (not inline). #| inside chunk (not YAML). Label prefix matches xref type (fig-, tbl-).

Step 3: Chunk Opts

Common (#|):

#| label: chunk-name        # Required for cross-references
#| echo: false               # Hide code
#| eval: false               # Show but don't run
#| output: false             # Run but hide output
#| fig-width: 8              # Figure dimensions
#| fig-height: 6
#| fig-cap: "Caption text"   # Enable @fig-name references
#| tbl-cap: "Caption text"   # Enable @tbl-name references
#| cache: true               # Cache expensive computations

Got: Opts via #| syntax, labels = xref naming conv.

If err: #| (Quarto-native), not legacy {r, option=value}. Labels alphanumeric + hyphens only.

Step 4: Xrefs + Citations

See @fig-scatter for the visualization and @tbl-summary for statistics.

This approach follows @smith2023 methodology.

::: {#fig-combined layout-ncol=2}
![Plot A](plot_a.png){#fig-plotA}
![Plot B](plot_b.png){#fig-plotB}

Combined figure caption
:::

Got: Xrefs (@fig-name, @tbl-name) resolve. Citations (@key) match .bib.

If err: Verify labels exist w/ correct prefix (fig-, tbl-). .bib keys exact (case-sensitive). bibliography: in YAML.

Step 5: Render

quarto render report.qmd

# Specific format
quarto render report.qmd --to pdf
quarto render report.qmd --to docx

# Preview with live reload
quarto preview report.qmd

Got: Out file in fmt.

If err:

Step 6: Multi-Fmt Out

format:
  html:
    toc: true
    theme: cosmo
  pdf:
    documentclass: article
    geometry: margin=1in
  docx:
    reference-doc: template.docx

Render all: quarto render report.qmd

Got: All fmts gen, correct styling per target.

If err: 1 fail, others OK → check fmt-specific. PDF → LaTeX engine (quarto install tinytex). DOCX → valid ref template if set. Fmt opts nested under each format key.

Check

  • Renders no err
  • All chunks execute
  • Xrefs resolve (fig, tbl, cite)
  • TOC accurate
  • Out fmt fits audience

Traps

  • No label prefix: Fig xref needs fig-, tbl needs tbl-
  • Cache invalid: Cached chunks don't re-run on upstream change. Delete _cache/ → force.
  • PDF no LaTeX: Install TinyTeX OR pdf-engine: weasyprint (CSS-based)
  • RMD syntax in Quarto: Use #| not {r, echo=FALSE}

  • format-apa-report — APA academic reports
  • build-parameterized-report — param multi-reports
  • generate-statistical-tables — pub-ready tables
  • write-vignette — Quarto vignettes in R pkgs

GitHub リポジトリ

pjt222/agent-almanac
パス: i18n/caveman-ultra/skills/create-quarto-report
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

関連スキル

content-collections

メタ

このスキルは、Content Collections(Markdown/MDXファイルを型安全なデータコレクションに変換するTypeScriptファーストのツール)の本番環境でテストされた設定を提供します。Zodバリデーションによる型安全性を実現し、ブログ、ドキュメントサイト、コンテンツ重視のVite + Reactアプリケーション構築時にご利用ください。Viteプラグインの設定、MDXコンパイルから、デプロイ最適化、スキーマバリデーションまで、すべてを網羅しています。

スキルを見る

polymarket

メタ

このスキルは、開発者がPolymarket予測市場プラットフォームを活用したアプリケーション構築を可能にします。API統合による取引や市場データの取得に加え、WebSocketを介したリアルタイムデータストリーミングにより、ライブ取引や市場活動を監視できます。取引戦略の実装や、ライブ市場更新を処理するツールの作成にご利用ください。

スキルを見る

creating-opencode-plugins

メタ

このスキルは、開発者がコマンド、ファイル、LSP操作など25種類以上のイベントタイプにフックするOpenCodeプラグインを作成することを支援します。JavaScript/TypeScriptモジュール向けに、プラグイン構造、イベントAPI仕様、および実装パターンを提供します。カスタムイベント駆動ロジックでOpenCode AIアシスタントのライフサイクルをインターセプト、監視、または拡張する必要がある場合にご利用ください。

スキルを見る

sglang

メタ

SGLangは、高性能なLLMサービングフレームワークであり、RadixAttentionプレフィックスキャッシュを活用したJSON、正規表現、エージェントワークフロー向けの高速で構造化された生成を特長とします。特にプレフィックスが繰り返されるタスクにおいて、大幅に高速な推論を実現し、複雑な構造化出力やマルチターン対話に最適です。制約付きデコードが必要な場合や、広範なプレフィックス共有を伴うアプリケーションを構築する場合は、vLLMなどの代替案ではなくSGLangを選択してください。

スキルを見る