/ Annuaire / Playground / julia-agent-skills
● Communauté JuliaGenAI ⚡ Instantané

julia-agent-skills

par 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.

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

julia-agent-skill.replay ▶ prêt
0/0

Installer

Choisissez votre client

~/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
    }
  }
}

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.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 utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

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
    }
  }
}

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "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
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

~/.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 utilise un tableau d'objets serveur plutôt qu'une map.

~/.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"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

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

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : julia-agent-skills

Bootstrap a DocumenterVitepress.jl documentation site for a Julia package

👤 Julia package maintainers ⏱ ~30 min intermediate

Quand l'utiliser : You have a Julia package and want modern Vitepress-based docs instead of default Documenter HTML.

Prérequis
  • Skill cloned — git clone https://github.com/JuliaGenAI/julia-agent-skills ~/.claude/skills/julia-agent-skills
  • Julia ≥ 1.10 installed — juliaup default release
Déroulement
  1. Ask the skill to scaffold docs
    Use documenter-vitepress skill — set up DocumenterVitepress.jl docs for MyPackage.jl.✓ Copié
    → 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.✓ Copié
    → julia --project=docs docs/make.jl + npm dev server instructions
  3. Wire up CI
    Add GitHub Actions to deploy to gh-pages on main.✓ Copié
    → Standard Julia doc-deploy workflow YAML

Résultat : A working docs site you can extend.

Pièges
  • Version mismatch between DocumenterVitepress.jl and node/vitepress — Pin versions as the skill suggests; DocumenterVitepress releases move fast
Combiner avec : github

Iterate on docs theme and sidebar structure

👤 Maintainers unhappy with defaults ⏱ ~20 min intermediate

Quand l'utiliser : Docs work but the navigation / theme isn't landing.

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

Résultat : Docs that actually match your package's story.

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

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.✓ Copié
julia-agent-skill + filesystem

Edit docs content alongside setup in one session

Set up DocumenterVitepress, then write index.md and Getting Started pages.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
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

Coût et limites

Coût d'exécution

Quota d'API
None
Tokens par appel
Small — config + boilerplate
Monétaire
Free — skills are local files
Astuce
Docs work is modest context; no special budget needed.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : No credentials — pure prompts
Sortie de données : None

Dépannage

Erreurs courantes et correctifs

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

Say 'use documenter-vitepress skill' explicitly.

Vérifier : ls ~/.claude/skills/julia-agent-skills/
SKILL.md frontmatter wrong

Check the documenter-vitepress subfolder.

Vérifier : 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.

Alternatives

julia-agent-skills vs autres

AlternativeQuand l'utiliserCompromis
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)

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills