Anonymous 08/23/2026 (Sun) 19:11 No.15892 del
Commands are small async JavaScript programs that turn repetitive imageboard work into actions inside the app. Scope them to every forum, selected forums or one board, then run them by hand from the ⌘ menu
Draft commands receive the posting form's comment and attachments and may return replacements. Use them for one-tap transformations or run them automatically as a final pass before Send
Thread commands receive post metadata, raw comment HTML and attached files for a whole thread or one post at a time. They may temporarily replace comments and files on screen — enough to translate, decrypt or reshape a thread without changing the remote posts or their cached originals. Run them by hand, on one post, or automatically when a thread opens
App commands receive no draft or posts. They show their return value as a message and can act only through permissions granted to that command: app settings, forum cookies, and the forum's visible IP and proxy. They are not native Android plugins: beyond network requests, those narrow bridges are their only way into the app. One may be designated to change the visible IP when a forum bans the current one
Scripts can ask the user questions, keep JSON values between runs, read an optional shared environment, make unrestricted cross-origin network requests with fetch, use WebCrypto, and load shared or downloaded libraries. Each run uses a fresh engine and ends when it returns, is cancelled or times out; a command is not a background service