/ ディレクトリ / プレイグラウンド / julia-agent-skills
● コミュニティ JuliaGenAI ⚡ 即起動

julia-agent-skills

作者 JuliaGenAI · JuliaGenAI/julia-agent-skills

JuliaGenAI's skill collection for AI agents writing Julia — starts with DocumenterVitepress.jl, aimed to expand across the Julia ecosystem.

julia-agent-skills is an early-stage collection of Julia-specific skills for Claude Code, Cursor, Gemini CLI, and other agent-skill-compatible tools. At time of writing, the documented skill is documenter-vitepress, which teaches agents to set up and iterate on Julia documentation sites built with DocumenterVitepress.jl. The repo is maintained by JuliaGenAI — the community behind Julia's GenAI tooling.

なぜ使うのか

主な機能

ライブデモ

実際の動作

julia-agent-skill.replay ▶ 準備完了
0/0

インストール

クライアントを選択

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "julia-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JuliaGenAI/julia-agent-skills",
        "~/.claude/skills/julia-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "julia-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JuliaGenAI/julia-agent-skills",
        "~/.claude/skills/julia-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "julia-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JuliaGenAI/julia-agent-skills",
        "~/.claude/skills/julia-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "julia-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JuliaGenAI/julia-agent-skills",
        "~/.claude/skills/julia-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop と同じ形式。Windsurf を再起動して反映。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "julia-agent-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/JuliaGenAI/julia-agent-skills",
        "~/.claude/skills/julia-agent-skills"
      ]
    }
  ]
}

Continue はマップではなくサーバーオブジェクトの配列を使用。

~/.config/zed/settings.json
{
  "context_servers": {
    "julia-agent-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/JuliaGenAI/julia-agent-skills",
          "~/.claude/skills/julia-agent-skills"
        ]
      }
    }
  }
}

context_servers に追加。保存時に Zed がホットリロード。

claude mcp add julia-agent-skill -- git clone https://github.com/JuliaGenAI/julia-agent-skills ~/.claude/skills/julia-agent-skills

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: julia-agent-skills

Bootstrap a DocumenterVitepress.jl documentation site for a Julia package

👤 Julia package maintainers ⏱ ~30 min intermediate

使うタイミング: You have a Julia package and want modern Vitepress-based docs instead of default Documenter HTML.

前提条件
  • Skill cloned — git clone https://github.com/JuliaGenAI/julia-agent-skills ~/.claude/skills/julia-agent-skills
  • Julia ≥ 1.10 installed — juliaup default release
フロー
  1. Ask the skill to scaffold docs
    Use documenter-vitepress skill — set up DocumenterVitepress.jl docs for MyPackage.jl.✓ コピーしました
    → Claude creates docs/ with Project.toml, make.jl, index.md configured for Vitepress
  2. Run the local preview
    Give me the exact commands to preview locally.✓ コピーしました
    → julia --project=docs docs/make.jl + npm dev server instructions
  3. Wire up CI
    Add GitHub Actions to deploy to gh-pages on main.✓ コピーしました
    → Standard Julia doc-deploy workflow YAML

結果: A working docs site you can extend.

注意点
  • Version mismatch between DocumenterVitepress.jl and node/vitepress — Pin versions as the skill suggests; DocumenterVitepress releases move fast
組み合わせ: github

Iterate on docs theme and sidebar structure

👤 Maintainers unhappy with defaults ⏱ ~20 min intermediate

使うタイミング: Docs work but the navigation / theme isn't landing.

フロー
  1. Describe the change
    documenter-vitepress — reorganize sidebar into Getting Started / Tutorials / API / Design sections.✓ コピーしました
    → Vitepress config diff matching Julia docs conventions
  2. Preview and tune
    Preview looks off on dark mode — fix the code-block contrast.✓ コピーしました
    → Specific CSS / theme override, not guessing

結果: Docs that actually match your package's story.

組み合わせ

他のMCPと組み合わせて10倍の力を

julia-agent-skill + github

Open a PR adding Vitepress docs to a Julia package

Scaffold the docs and open a PR to MyPackage.jl with the new docs/ and CI workflow.✓ コピーしました
julia-agent-skill + filesystem

Edit docs content alongside setup in one session

Set up DocumenterVitepress, then write index.md and Getting Started pages.✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
scaffold_docs package name + basic info First-time docs setup 0
update_config desired change (sidebar, theme, plugin) Tuning existing Vitepress setup 0
ci_deploy repo + target branch (usually gh-pages) Automating deploys 0

コストと制限

運用コスト

APIクォータ
None
呼び出しあたりのトークン
Small — config + boilerplate
金額
Free — skills are local files
ヒント
Docs work is modest context; no special budget needed.

セキュリティ

権限、シークレット、影響範囲

認証情報の保管: No credentials — pure prompts
データ送信先: None

トラブルシューティング

よくあるエラーと対処法

Skill not invoked — Claude sets up plain Documenter.jl instead

Say 'use documenter-vitepress skill' explicitly.

確認: ls ~/.claude/skills/julia-agent-skills/
SKILL.md frontmatter wrong

Check the documenter-vitepress subfolder.

確認: head ~/.claude/skills/julia-agent-skills/documenter-vitepress/SKILL.md
Wrong trigger keywords — plain Documenter.jl output

'Vitepress' is the key word; without it, Claude will default to HTML Documenter.

代替案

julia-agent-skills 他との比較

代替案代わりに使う場面トレードオフ
Plain Documenter.jlYou want the classic Julia docs look with no JS build stepLess modern UI, simpler setup
VitePress hand-rolledNon-Julia projectNo Julia package integration (doctests, @docs blocks)

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る