Add `amy napplet list <author>` and `amy nsite list <author>`: fetch the author's root + named manifests (15129/35129 for napplets, 15128/35128 for nsites), keep the latest per identifier, and emit a summary of each (kind, d, title, description, path count, servers, requires/aggregate, event id, created_at). Thin assembly over ctx.drain + the quartz manifest accessors. Harness README notes `amy napplet list` for enumerating what you've published. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016ncMHuBBVHEf7spAoSssde
Napplet test harness
A self-contained napplet for on-device verification of Amethyst's NIP-5D host — it calls every
window.napplet.* API and shows each result on screen, so you can confirm the whole
shim → shell → broker → consent round-trip (and the newer identity.getList/getZaps/getBadges,
identity.onChanged, keys.onAction, and resource.bytes nostr: paths) works on a real device.
index.html is the napplet: read-only checks run on load; publish/upload/pay are behind buttons; live
pushes (identity.changed, keys.action) land in the top banner.
Publish it
amy napplet publish uploads the whole directory to Blossom (BUD-02 signed) and broadcasts the NIP-5D
event in one step, as the account amy is logged in as:
./gradlew :cli:installDist # builds amy → cli/build/install/amy/bin/amy
amy napplet publish tools/napplet-test \
--server https://blossom.primal.net \
--requires identity,relay,storage,value,resource,upload,keys \
--d napplet-test --title "Napplet Test Harness" \
--relay wss://relay.damus.io --relay wss://nos.lol
--dmakes it an addressable kind-35129 napplet; omit it for a root kind-15129.- For a plain static site, use
amy nsite publish <dir> --server …(kind 15128/35128). - Use the same key you're logged in as in Amethyst, so the napplet appears under your account and
the identity reads (
getProfile,getFollows, …) have data.
Verify it resolves (optional): amy napplet fetch <your-pubkey-hex> --d napplet-test.
List everything you've published: amy napplet list <your-pubkey-hex> (or amy nsite list <pubkey>).
Preview in a browser (optional)
amy napplet serve resolves the published manifest and serves its static content locally (each blob
sha256-verified, just like the device host) so you can eyeball that it loads:
amy napplet serve <your-pubkey-hex> --d napplet-test --port 8080 # then open http://127.0.0.1:8080
This serves the files only — the window.napplet.* runtime needs the Amethyst host, so the API
rows won't pass in a plain browser. Use it to confirm the files publish and route correctly.
Run on a device
Build & install the debug app and watch the logs:
./gradlew :amethyst:installPlayDebug
adb logcat -s NappletHostActivity NappletBrokerService NappletContentServer
Logged in as the publishing key, find "Napplet Test Harness" in your Apps / Napplets list (or its
feed card) and tap Open. It launches in the sandboxed :napplet process.
What to verify
- On load: each read row turns green.
shell.supports(identity)= true,(bogus)= false. Every capability prompts for consent the first time. - identity.getList/getZaps/getBadges: open your own profile first so the cache has your lists / zaps / badges, then relaunch — the rows show your data (empty arrays are valid if you have none).
- identity.onChanged: with the napplet open, switch accounts (or log out) → the banner shows
identity.changed → <pubkey>. It must NOT fire on the initial load. - keys.onAction: with a hardware keyboard (or
adb shell input keyevent 47for "S" while holding Ctrl), press Ctrl+S → banner showskeys.action → save fired, and the keystroke is consumed. - resource.bytes
nostr:: paste anostr:nevent1…/note1…/naddr1…/npub1…and run → it returns the event JSON as a blob. Also try anhttps://…image URL. - Side effects (deliberate):
relay.publishsigns+broadcasts a note as you;upload.blobuploads a tiny blob;value.payInvoicepays a BOLT-11 invoice (needs a connected wallet). Each prompts. - Security: the applet has no direct network (a plain
fetch()inside it fails — CSPconnect-src 'none'); an undeclared capability is denied even if you'd allow it.
Notes
- Re-running
amy napplet publish … --d napplet-testreplaces the same addressable event.