Install
$ agentstack add skill-samtalki-agentrepl-jl-julia-develop Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Dangerous shell/eval execution.
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ● Dynamic code execution Used
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Julia Development Workflow
Set up a complete Julia development workflow with project activation, dependency installation, and Revise.jl hot-reloading.
Arguments
path- Path to the project directory (default: current directory ".")
Instructions
Execute these steps in sequence:
- Activate the project:
`` activate(path="") ``
- Install dependencies:
`` pkg(action="instantiate") ``
- Load the package (if it's a Julia package with
src/.jl):
`` eval(code="using ") ``
- 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:
- Project path
- Installed dependencies
- Package loaded
- Revise.jl status
- Ready for iterative development
Development Cycle
Once set up, the iterative development cycle is:
- Edit source files — Claude edits
.jlfiles as needed - Hot-reload —
revise(action="revise")picks up changes - Test —
evalto run code, orpkg(action="test")for full test suite - Repeat — no session restart needed
For Package Development
When 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")
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: samtalki
- Source: samtalki/AgentREPL.jl
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.