Ajt: An alternative package manager for Julia

Hi there!
I’ve been working on an alternative package manager for Julia for a while, called Ajt. I built it because I’ve hit some limitations with Pkg.jl in a game engine i am working on which is made in Julia (currently working on it privately). Ajt is implemented in the zig programming language.
Its not meant to replace or overthrow Pkg, i made it to see how far i can go and what will be the tradeoffs.
Some of the things it focuses on:

Do you set a generic CPU_TARGET to prevent architecture-dependent cache?

not in the code of Ajt itself, there is no hardcoded JULIA_CPU_TARGET, but AJt does read a CPU_TARGET from a Dockerfile for example (in my use case)

Curious about whether it supports functionality like Pkg’s Pkg.Apps? I use that for some of my projects but have had a few issues along the way and am wondering if this provides another option?

currently not, if you will try to use Pkg.apps via Ajt it will forward the call to Pkg due to it not being implemented yet, however, i am planning to implement it soon.