aspkg.ayaan.info

The publish endpoint for the AyaanScript+ package registry.

● service configured

For AS+ users

You don't need a GitHub account or token. Just install AS+ and publish:

$ cargo install ayaan
$ aspkg create               # interactive wizard
$ aspkg publish              # ships your package here

How it works

aspkg publish POSTs your compiled .aspkg bundle to POST /publish.php on this server. The server validates the bundle and uses a GitHub token (held server-side) to commit it to the public registry repo: ayaan511/AyaanScript--Packages.

Once committed, aspkg install <name> fetches it from GitHub for everyone.

Manual upload (curl)

curl -X POST https://aspkg.ayaan.info/publish.php \
  -H "Content-Type: application/json" \
  -d '{
    "name": "mypkg",
    "version": "0.1.0",
    "author": "you",
    "content_b64": "<base64 of mypkg.aspkg>"
  }'

Source: ayaan511/AyaanScriptPlus. Hosted as a tiny PHP service. No tracking, no cookies.