npx claudepluginhub samtalki/agentrepl.jl --plugin juliaThis skill is limited to using the following tools:
Manage Julia packages in the current environment.
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.
Manage Julia packages in the current environment.
action - One of: add, rm, status, update, instantiate, resolve, test, develop, freepackages - Package names or paths (required for add/rm/develop/free, optional for update/test)Parse the user's arguments to determine the action and packages:
| User Input | Action | Packages |
|---|---|---|
add JSON | add | JSON |
add JSON DataFrames CSV | add | JSON, DataFrames, CSV |
rm OldPackage | rm | OldPackage |
status | status | (none) |
update | update | (none - updates all) |
update JSON | update | JSON |
instantiate | instantiate | (none) |
resolve | resolve | (none) |
test | test | (none - tests current project) |
test MyPackage | test | MyPackage |
develop ./MyLocalPkg | develop | ./MyLocalPkg |
free MyPackage | free | MyPackage |
Call pkg with the appropriate action and packages parameters.
using PackageNameinstantiate action installs dependencies from Project.toml/Manifest.tomltest action runs Pkg.test() - can be slow for large test suitesdevelop action puts a package in development mode (uses local code)free action exits development mode (returns to registry version)develop, consider using revise(action="revise") to hot-reload changes