AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL unreviewed Apache-2.0 Self-run

Julia Develop

skill-samtalki-agentrepl-jl-julia-develop · by samtalki

Set up a Julia development workflow with Revise hot-reloading

No reviews yet
0 installs
36 views
0.0% view→install

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

⚠ Flagged

1 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.

View the full security report →

Reliability & compatibility

Not yet reviewed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Julia Develop? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Activate the project:

`` activate(path="") ``

  1. Install dependencies:

`` pkg(action="instantiate") ``

  1. Load the package (if it's a Julia package with src/.jl):

`` eval(code="using ") ``

  1. 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).

  1. 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:

  1. Edit source files — Claude edits .jl files as needed
  2. Hot-reloadrevise(action="revise") picks up changes
  3. Testeval to run code, or pkg(action="test") for full test suite
  4. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.