Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub samtalki/agentrepl.jl --plugin juliaHow this skill is triggered — by the user, by Claude, or both
Slash command
/julia:julia-developThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up a complete Julia development workflow with project activation, dependency installation, and Revise.jl hot-reloading.
Guides Julia 1.10+ development with modern features, multiple dispatch, performance optimization, and production-ready practices.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Share bugs, ideas, or general feedback.
Set up a complete Julia development workflow with project activation, dependency installation, and Revise.jl hot-reloading.
path - Path to the project directory (default: current directory ".")Execute these steps in sequence:
Activate the project:
activate(path="<path>")
Install dependencies:
pkg(action="instantiate")
Load the package (if it's a Julia package with src/<PkgName>.jl):
eval(code="using <PkgName>")
Verify Revise.jl is available:
revise(action="status")
If Revise is not available:
pkg(action="add", packages="Revise")
Then reset to reload (Revise auto-loads on startup).
Report the setup to the user:
Once set up, the iterative development cycle is:
.jl files as neededrevise(action="revise") picks up changeseval to run code, or pkg(action="test") for full test suiteWhen developing a local package alongside a project:
pkg(action="develop", packages="./path/to/MyPkg")
This puts the package in development mode. Combined with Revise, any edits to the package source are automatically picked up without restarting.
When done:
pkg(action="free", packages="MyPkg")