From julia
Hot-reload Julia code changes using Revise.jl without restarting the session
npx claudepluginhub samtalki/agentrepl.jl --plugin juliaThis skill is limited to using the following tools:
Hot-reload Julia code changes using Revise.jl — the key to maximizing REPL session lifespan.
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.
Hot-reload Julia code changes using Revise.jl — the key to maximizing REPL session lifespan.
revise(action="revise") to pick up all file changestrack <path>: starts tracking a file with Reviseincludet <path>: includes a file with Revise trackingstatus: shows what Revise is trackingrevise with the appropriate action and path parameterspkg(action="add", packages="Revise")reset to reload (Revise loads automatically on worker startup)Revise.jl enables iterative development without losing session state:
revise(action="revise") to pick up changesThis eliminates the most common reason for using reset.
| Situation | Use Revise | Use Reset |
|---|---|---|
| Changed function body | Yes | No |
| Added new function | Yes | No |
| Modified method signature | Yes | No |
| Changed struct layout (Julia < 1.12) | No | Yes |
| Corrupted session state | No | Yes |
| Want clean slate | No | Yes |
| Changed const value | Sometimes | If needed |
pkg(action="develop", packages="./MyPkg"), Revise automatically tracks the package sourceincludet("file.jl") (via eval) instead of include("file.jl") for standalone scripts — it enables hot-reloadingrevise(action="status") to see what files and packages Revise is watching