What I mean is that the pinned anouncement should contain the cheat sheet, I didn't see it.
But also, the announcement should contain the information that really matter, because less than 50% of people who see the announcement will see anything else.
This is the place to put the really important things to know, if there are any ?
I asked chatgpt what are the 5 MOST important things general openwrt operator MUST know and it said the following.
[spoiler]
Command Transition: Replace opkg install pkg with apk add pkg, and opkg remove pkg with apk del pkg. Most basic commands have direct replacements, so learn these first.
Signature Validation: Unlike opkg, apk enforces valid signatures for all packages. Use --allow-untrusted when installing unsigned or self-built packages to avoid errors.
Single-Step Install & Update: Use apk --update-cache add pkg to update indexes and install packages in one step, replacing opkg update && opkg install pkg.
Listing Tools: Use apk list --installed to see installed packages, apk list --upgradeable for updates, and apk list --orphaned to identify leftover dependencies after uninstalls.
Advanced Features: Leverage apk --simulate to test changes before applying them, and apk info --who-owns <file> to trace installed files to their package for better system management.
[/spoiler]