linux observer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Move agent instructions to about submenu, rename to help agent

"copy help agent instructions" now lives under about — points
the user's coding agent to the installed source repo and INSTALL.md
for troubleshooting and configuration help.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6 -6
+6 -6
src/solstone_linux/tray.py
··· 258 258 label="open config.json", 259 259 callback=self._open_config, 260 260 ) 261 - settings_copy_agent = MenuItem( 262 - label="copy coding agent instructions", 263 - callback=self._copy_agent_instructions, 264 - ) 265 - 266 261 settings_submenu = MenuItem( 267 262 label="settings", 268 263 children_display="submenu", 269 264 ) 270 265 settings_submenu.children = [ 271 266 settings_open_config, 272 - settings_copy_agent, 273 267 ] 274 268 275 269 # ── About submenu ── ··· 298 292 label="about", 299 293 children_display="submenu", 300 294 ) 295 + about_copy_agent = MenuItem( 296 + label="copy help agent instructions", 297 + callback=self._copy_agent_instructions, 298 + ) 299 + 301 300 about_submenu.children = [ 302 301 about_version, 303 302 about_website, 304 303 about_source, 305 304 about_privacy, 305 + about_copy_agent, 306 306 separator(), 307 307 about_copyright, 308 308 ]