julia-pkg

A tool for managing Julia programming-language packages in the current project. It can add, remove, inspect, update, install, resolve, test, develop, or free packages.

In plain words
What is it for?
Use it to install dependencies, update or remove packages, create local development links, resolve versions, instantiate an environment, and run package tests.
Why use it?
It avoids manually editing dependency files and provides the package-manager actions needed to keep a Julia environment consistent.

Skill for Claude CodeCodex

Part of the julia plugin — 10 skills, 1 hook, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/samtalki/agentrepl.jl/julia-pkg
Any agent
npx skills add samtalki/AgentREPL.jl --skill julia-pkg
Clone the repo
git clone --depth 1 https://github.com/samtalki/AgentREPL.jl

Made for: Claude Code, Codex.

Or install julia, the plugin that ships this one along with the rest of its 10 skills, 1 hook, 1 MCP server.

Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 425 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00021 $0.00425
Opus 5 $0.00010 $0.00212
Sonnet 5 $0.00004 $0.00085
Haiku 4.5 $0.00002 $0.00042

Measured 3d ago against content hash 59bc32fccfac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

julia-pkg scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude-plugin/skills/julia-pkg/SKILL.md · 47 lines

What it actually says

Julia Package Management

Manage Julia packages in the current environment.

Arguments

  • action - One of: add, rm, status, update, instantiate, resolve, test, develop, free
  • packages - Package names or paths (required for add/rm/develop/free, optional for update/test)

Instructions

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.

Notes

  • After adding packages, remind the user to load them with using PackageName
  • The instantiate action installs dependencies from Project.toml/Manifest.toml
  • The test action runs Pkg.test() - can be slow for large test suites
  • The develop action puts a package in development mode (uses local code)
  • The free action exits development mode (returns to registry version)
  • After develop, consider using revise(action="revise") to hot-reload changes
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 47 lines · 21 tokens per session scan A 59bc32fccfac

Subscribe to this mod's changes

julia-pkg is a skill published in the GitHub repository samtalki/AgentREPL.jl (6 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 21 tokens to every session and 425 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

adk-sample-creator

Creates a new sample agent in the ADK Python repository — the sample directory, its agent.py, and its README.md — following the conventions the existing samples already use. Use when the user wants to add a sample or example demonstrating a feature or agent pattern (dynamic nodes, fan-out/fan-in, a standalone…

google/adk-python · 150 tokens

adk-style

Python style and codebase conventions for ADK (Agent Development Kit): private-by-default file visibility, imports, type hints, Pydantic v2 models, formatting, docstrings, logging, async I/O, file and test layout, and unit test structure. Use when writing or editing ADK source or tests, deciding whether a new file or…

google/adk-python · 187 tokens

stack-trace-python-probe

Internal helper for meta-stack-trace-investigator. Use when a Python traceback needs Python-specific root-cause checks, pytest reproducer guidance, and defensive patch targets.

opensquilla/opensquilla · 40 tokens

datamol

Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…

synthetic-sciences/openscience · 67 tokens

cobrapy

Constraint-based metabolic modeling (COBRA). FBA, FVA, gene knockouts, flux sampling, SBML models, for systems biology and metabolic engineering analysis.

synthetic-sciences/openscience · 38 tokens

pysam

Genomic file toolkit. Read/write SAM/BAM/CRAM alignments, VCF/BCF variants, FASTA/FASTQ sequences, extract regions, calculate coverage, for NGS data processing pipelines.

synthetic-sciences/openscience · 47 tokens