Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when you create a CLI written in Julia packages or MCP servers
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -39% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -30% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -49% | 0% |
Apps are Julia packages that are intended to be run as "standalone programs" (by e.g. typing the name of the app in the terminal possibly together with some arguments or flags/options). This is in contrast to most Julia packages that are used as "libraries" and are loaded by other files or in the Julia REPL.
A Julia app is structured similar to a standard Julia library with the following additions:
A @main entry point in the package module (see the Julia help on @main for details) An [apps] section in the Project.toml file listing the executable names that the package provides. A very simple example of an app that prints the reversed input arguments would be:
julia# src/MyReverseApp.jl module MyReverseApp function (@main)(ARGS) for arg in ARGS print(stdout, reverse(arg), " ") end return end end # module
toml# Project.toml # standard fields here [apps] reverse = {}
The empty table {} is to allow for giving metadata about the app.
After installing this app one could run:
$ ~/.julia/bin/reverse some input string
emos tupni gnirtsdirectly in the terminal. See the following link to learn more:
Other measured skills in the registry, with their headline benchmark lift.