npx claudepluginhub samtalki/agentrepl.jl --plugin juliaThis skill is limited to using the following tools:
Set up a complete Julia development workflow with project activation, dependency installation, and Revise.jl hot-reloading.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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")