[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"workflow-asset-52e79f5d":3,"seo:featured-workflow:52e79f5d-4e1f-11f1-9bc6-00163e2b0d79:zh":85,"workflow-related-asset-52e79f5d-52e79f5d-4e1f-11f1-9bc6-00163e2b0d79":86},{"id":4,"uuid":5,"slug":6,"title":7,"description":8,"author_id":9,"author_name":10,"author_avatar":11,"token_estimate":12,"time_saved":12,"model_used":11,"fork_count":12,"vote_count":12,"view_count":13,"parent_id":12,"parent_uuid":11,"lang_type":14,"steps":15,"tags":22,"has_voted":28,"visibility":18,"share_token":11,"is_featured":12,"content_hash":29,"asset_kind":30,"target_tools":31,"install_mode":35,"entrypoint":19,"risk_profile":36,"dependencies":38,"verification":44,"agent_metadata":47,"agent_fit":60,"trust":72,"provenance":81,"created_at":83,"updated_at":84},3330,"52e79f5d-4e1f-11f1-9bc6-00163e2b0d79","asset-52e79f5d","wxWidgets — Cross-Platform C++ GUI Library with Native Look","Build desktop applications in C++ that look and feel native on Windows, macOS, and Linux using each platform's own widget toolkit rather than custom-drawn controls.","8a911193-3180-11f1-9bc6-00163e2b0d79","AI Open Source","",0,6,"en",[16],{"id":17,"step_order":18,"title":19,"description":11,"prompt_template":20,"variables":11,"depends_on":21,"expected_output":11},3893,1,"wxWidgets","# wxWidgets — Cross-Platform C++ GUI Library with Native Look\n\n## Quick Use\n```bash\n# Ubuntu\u002FDebian\nsudo apt install libwxgtk3.2-dev\ncat > hello.cpp \u003C\u003C 'CPPEOF'\n#include \u003Cwx\u002Fwx.h>\nclass MyApp : public wxApp {\npublic:\n    bool OnInit() override {\n        auto *frame = new wxFrame(nullptr, wxID_ANY, \"Hello wxWidgets\");\n        frame->Show();\n        return true;\n    }\n};\nwxIMPLEMENT_APP(MyApp);\nCPPEOF\ng++ hello.cpp $(wx-config --cxxflags --libs) -o hello && .\u002Fhello\n```\n\n## Introduction\nwxWidgets is a mature, open-source C++ library for building cross-platform desktop applications. Unlike GUI toolkits that draw their own widgets, wxWidgets wraps each platform's native controls — Win32 on Windows, Cocoa on macOS, GTK on Linux — so applications automatically match the OS look and feel without extra theming work.\n\n## What wxWidgets Does\n- Wraps native platform widgets so buttons, menus, dialogs, and text controls match the host OS appearance\n- Provides a comprehensive class library covering GUI, networking, threading, file I\u002FO, and database access\n- Supports Windows, macOS, Linux, and experimentally iOS and Android from a single codebase\n- Includes an event system, sizers for responsive layout, and a document-view architecture\n- Offers bindings for Python (wxPython), Perl, Ruby, and other languages\n\n## Architecture Overview\nwxWidgets uses a thin abstraction layer over platform-native toolkits. On Windows it calls Win32 and Common Controls APIs, on macOS it uses Cocoa and AppKit, and on Linux it delegates to GTK 3. Each wxWidgets class (wxButton, wxTextCtrl, wxTreeCtrl) maps to a platform-specific peer that creates and manages the real native control. Layout is handled by a sizer system that calculates geometry at runtime, adapting to different DPI settings and platform conventions.\n\n## Self-Hosting & Configuration\n- On Linux: install via package manager (`apt install libwxgtk3.2-dev`) or build from source\n- On macOS: install via Homebrew (`brew install wxwidgets`) or build with Xcode\n- On Windows: build with CMake + MSVC or use prebuilt binaries from the wxWidgets website\n- Use `wx-config --cxxflags --libs` on Unix to get compiler and linker flags\n- Configure build options via CMake flags: `wxBUILD_SHARED`, `wxUSE_OPENGL`, `wxUSE_WEBVIEW`, etc.\n\n## Key Features\n- True native appearance on every platform without custom themes or widget painting\n- 30+ years of stability and backwards compatibility with active development\n- Built-in XRC resource system for loading UI layouts from XML files\n- Comprehensive non-GUI utilities: sockets, HTTP client, XML parsing, regular expressions, and ZIP handling\n- wxPython provides a complete Python binding for rapid prototyping and scripting\n\n## Comparison with Similar Tools\n- **Qt** — Feature-rich cross-platform framework with custom-drawn widgets; wxWidgets uses native controls for OS-authentic appearance\n- **GTK** — Linux-native toolkit; wxWidgets wraps GTK on Linux but also runs natively on Windows and macOS\n- **Dear ImGui** — Immediate-mode GPU-rendered UI for tools; wxWidgets is retained-mode with native OS widgets for end-user applications\n- **FLTK** — Lightweight cross-platform toolkit with its own rendering; wxWidgets is larger but matches native platform appearance\n- **Avalonia** — .NET\u002FXAML cross-platform UI; wxWidgets is C++-native with three decades of stability\n\n## FAQ\n**Q: Is wxWidgets still actively maintained?**\nA: Yes. wxWidgets has been in active development since 1992 and continues to receive regular releases with modern C++ support and new platform features.\n\n**Q: Can I use modern C++ with wxWidgets?**\nA: wxWidgets 3.2+ fully supports C++11\u002F14\u002F17 and modern idioms. The API uses RAII patterns, standard containers, and range-based iteration where appropriate.\n\n**Q: How does wxPython compare to PyQt or Tkinter?**\nA: wxPython provides native-looking widgets on all platforms. It is wxWidgets-licensed (essentially LGPL with static linking exception), avoiding Qt's commercial licensing considerations.\n\n**Q: Does wxWidgets support high-DPI displays?**\nA: Yes. wxWidgets 3.2+ includes per-monitor DPI awareness on Windows and proper Retina support on macOS.\n\n## Sources\n- https:\u002F\u002Fgithub.com\u002FwxWidgets\u002FwxWidgets\n- https:\u002F\u002Fdocs.wxwidgets.org\u002F","0",[23],{"id":24,"name":25,"slug":26,"icon":27},12,"Configs","config","⚙️",false,"6009b73e0341b15808da179cf54b2c78cd86c1a0d8dee9bb036479194af4505a","skill",[32,33,34],"claude_code","codex","gemini_cli","single",{"executes_code":28,"modifies_global_config":28,"requires_secrets":37,"uses_absolute_paths":28,"network_access":28},[],{"npm":39,"pip":40,"brew":41,"system":43},[],[],[42],"wxwidgets",[],{"commands":45,"expected_files":46},[],[19],{"asset_kind":30,"target_tools":48,"install_mode":35,"entrypoint":19,"risk_profile":49,"dependencies":51,"content_hash":29,"verification":56,"inferred":59},[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":50,"uses_absolute_paths":28,"network_access":28},[],{"npm":52,"pip":53,"brew":54,"system":55},[],[],[42],[],{"commands":57,"expected_files":58},[],[19],true,{"target":33,"score":61,"status":62,"policy":63,"why":64,"asset_kind":30,"install_mode":35},98,"native","allow",[65,66,67,68,69,70,71],"target_tools includes codex","asset_kind skill","install_mode single","markdown-only","policy allow","safe markdown-only Codex install","trust established",{"author_trust_level":73,"verified_publisher":28,"asset_signed_hash":29,"signature_status":74,"install_count":12,"report_count":12,"dangerous_capability_badges":75,"review_status":76,"signals":77},"established","hash_only",[],"unreviewed",[78,79,80],"author has published assets","content hash available","no dangerous capability badges",{"owner_uuid":9,"owner_name":10,"source_url":82,"content_hash":29,"visibility":18,"created_at":83,"updated_at":84},"https:\u002F\u002Ftokrepo.com\u002Fen\u002Fworkflows\u002Fasset-52e79f5d","2026-05-13 00:26:26","2026-05-13 01:13:02",null,[87,139,184,231],{"id":88,"uuid":89,"slug":90,"title":91,"description":92,"author_id":9,"author_name":10,"author_avatar":11,"token_estimate":12,"time_saved":12,"model_used":11,"fork_count":12,"vote_count":12,"view_count":93,"parent_id":12,"parent_uuid":11,"lang_type":14,"steps":94,"tags":95,"has_voted":28,"visibility":18,"share_token":11,"is_featured":12,"content_hash":97,"asset_kind":30,"target_tools":98,"install_mode":35,"entrypoint":99,"risk_profile":100,"dependencies":102,"verification":107,"agent_metadata":110,"agent_fit":122,"trust":124,"provenance":127,"created_at":129,"updated_at":130,"__relatedScore":131,"__relatedReasons":132,"__sharedTags":137},3332,"7f80eef3-4e1f-11f1-9bc6-00163e2b0d79","asset-7f80eef3","Wry — Cross-Platform WebView Rendering Library for Rust","A Rust library for creating cross-platform desktop applications with web-based UIs by leveraging each operating system's native webview engine with minimal overhead.",8,[],[96],{"id":24,"name":25,"slug":26,"icon":27},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",[32,33,34],"SKILL.md",{"executes_code":28,"modifies_global_config":28,"requires_secrets":101,"uses_absolute_paths":28,"network_access":28},[],{"npm":103,"pip":104,"brew":105,"system":106},[],[],[],[],{"commands":108,"expected_files":109},[],[],{"asset_kind":30,"target_tools":111,"install_mode":35,"entrypoint":99,"risk_profile":112,"dependencies":114,"content_hash":97,"verification":119,"inferred":59},[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":113,"uses_absolute_paths":28,"network_access":28},[],{"npm":115,"pip":116,"brew":117,"system":118},[],[],[],[],{"commands":120,"expected_files":121},[],[],{"target":33,"score":61,"status":62,"policy":63,"why":123,"asset_kind":30,"install_mode":35},[65,66,67,68,69,70,71],{"author_trust_level":73,"verified_publisher":28,"asset_signed_hash":97,"signature_status":74,"install_count":12,"report_count":12,"dangerous_capability_badges":125,"review_status":76,"signals":126},[],[78,79,80],{"owner_uuid":9,"owner_name":10,"source_url":128,"content_hash":97,"visibility":18,"created_at":129,"updated_at":130},"https:\u002F\u002Ftokrepo.com\u002Fen\u002Fworkflows\u002Fasset-7f80eef3","2026-05-13 00:27:41","2026-05-13 02:14:32",125.43136376415899,[133,134,135,136],"topic-match","same-kind","same-target","same-author",[26,138],"configs",{"id":140,"uuid":141,"slug":142,"title":143,"description":144,"author_id":9,"author_name":10,"author_avatar":11,"token_estimate":12,"time_saved":12,"model_used":11,"fork_count":12,"vote_count":12,"view_count":145,"parent_id":12,"parent_uuid":11,"lang_type":14,"steps":146,"tags":147,"has_voted":28,"visibility":18,"share_token":11,"is_featured":12,"content_hash":97,"asset_kind":30,"target_tools":149,"install_mode":35,"entrypoint":99,"risk_profile":150,"dependencies":152,"verification":157,"agent_metadata":160,"agent_fit":172,"trust":174,"provenance":177,"created_at":179,"updated_at":180,"__relatedScore":181,"__relatedReasons":182,"__sharedTags":183},2746,"777c4ff9-4946-11f1-9bc6-00163e2b0d79","asset-777c4ff9","Avalonia — Cross-Platform .NET UI Framework for Desktop, Mobile & Web","A cross-platform UI framework for .NET that lets you build apps for Windows, macOS, Linux, iOS, Android, and WebAssembly from a single C# and XAML codebase.",43,[],[148],{"id":24,"name":25,"slug":26,"icon":27},[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":151,"uses_absolute_paths":28,"network_access":28},[],{"npm":153,"pip":154,"brew":155,"system":156},[],[],[],[],{"commands":158,"expected_files":159},[],[],{"asset_kind":30,"target_tools":161,"install_mode":35,"entrypoint":99,"risk_profile":162,"dependencies":164,"content_hash":97,"verification":169,"inferred":59},[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":163,"uses_absolute_paths":28,"network_access":28},[],{"npm":165,"pip":166,"brew":167,"system":168},[],[],[],[],{"commands":170,"expected_files":171},[],[],{"target":33,"score":61,"status":62,"policy":63,"why":173,"asset_kind":30,"install_mode":35},[65,66,67,68,69,70,71],{"author_trust_level":73,"verified_publisher":28,"asset_signed_hash":97,"signature_status":74,"install_count":12,"report_count":12,"dangerous_capability_badges":175,"review_status":76,"signals":176},[],[78,79,80],{"owner_uuid":9,"owner_name":10,"source_url":178,"content_hash":97,"visibility":18,"created_at":179,"updated_at":180},"https:\u002F\u002Ftokrepo.com\u002Fen\u002Fworkflows\u002Fasset-777c4ff9","2026-05-06 20:24:02","2026-05-12 10:39:25",117.46517901472929,[133,134,135,136],[26,138],{"id":185,"uuid":186,"slug":187,"title":188,"description":189,"author_id":9,"author_name":10,"author_avatar":11,"token_estimate":12,"time_saved":12,"model_used":11,"fork_count":12,"vote_count":12,"view_count":190,"parent_id":12,"parent_uuid":11,"lang_type":14,"steps":191,"tags":192,"has_voted":28,"visibility":18,"share_token":11,"is_featured":12,"content_hash":194,"asset_kind":30,"target_tools":195,"install_mode":35,"entrypoint":99,"risk_profile":196,"dependencies":198,"verification":203,"agent_metadata":206,"agent_fit":218,"trust":220,"provenance":224,"created_at":226,"updated_at":227,"__relatedScore":228,"__relatedReasons":229,"__sharedTags":230},1354,"a8f5db0f-3862-11f1-9bc6-00163e2b0d79","kivy-open-source-python-framework-cross-platform-apps-a8f5db0f","Kivy — Open-Source Python Framework for Cross-Platform Apps with a Single Codebase","Kivy lets you write touch-friendly cross-platform apps entirely in Python. One codebase runs on iOS, Android, Windows, macOS, Linux, and Raspberry Pi — the Python way to build mobile and kiosk UIs.",106,[],[193],{"id":24,"name":25,"slug":26,"icon":27},"46cfa5d89fec358b01111472d41e667ba960df73fbb765104bdf2c7c001ef8f5",[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":197,"uses_absolute_paths":28,"network_access":28},[],{"npm":199,"pip":200,"brew":201,"system":202},[],[],[],[],{"commands":204,"expected_files":205},[],[11],{"asset_kind":30,"target_tools":207,"install_mode":35,"entrypoint":99,"risk_profile":208,"dependencies":210,"content_hash":194,"verification":215},[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":209,"uses_absolute_paths":28,"network_access":28},[],{"npm":211,"pip":212,"brew":213,"system":214},[],[],[],[],{"commands":216,"expected_files":217},[],[11],{"target":33,"score":61,"status":62,"policy":63,"why":219,"asset_kind":30,"install_mode":35},[65,66,67,68,69,70,71],{"author_trust_level":73,"verified_publisher":28,"asset_signed_hash":194,"signature_status":74,"install_count":12,"report_count":12,"dangerous_capability_badges":221,"review_status":76,"signals":222},[],[223,78,79,80],"asset has usage views",{"owner_uuid":9,"owner_name":10,"source_url":225,"content_hash":194,"visibility":18,"created_at":226,"updated_at":227},"https:\u002F\u002Ftokrepo.com\u002Fen\u002Fworkflows\u002Fkivy-open-source-python-framework-cross-platform-apps-a8f5db0f","2026-04-15 08:33:01","2026-05-13 01:12:18",115.04407566652782,[133,134,135,136],[26,138],{"id":232,"uuid":233,"slug":234,"title":235,"description":236,"author_id":9,"author_name":10,"author_avatar":11,"token_estimate":12,"time_saved":12,"model_used":11,"fork_count":12,"vote_count":12,"view_count":237,"parent_id":12,"parent_uuid":11,"lang_type":14,"steps":238,"tags":239,"has_voted":28,"visibility":18,"share_token":11,"is_featured":12,"content_hash":241,"asset_kind":30,"target_tools":242,"install_mode":35,"entrypoint":243,"risk_profile":244,"dependencies":246,"verification":251,"agent_metadata":254,"agent_fit":266,"trust":268,"provenance":271,"created_at":273,"updated_at":274,"__relatedScore":275,"__relatedReasons":276,"__sharedTags":277},2227,"9508a25d-4211-11f1-9bc6-00163e2b0d79","neutralinojs-lightweight-cross-platform-desktop-apps-9508a25d","Neutralinojs — Lightweight Cross-Platform Desktop Apps","Build desktop applications with HTML, CSS, and JavaScript using a tiny native runtime instead of bundling Chromium.",79,[],[240],{"id":24,"name":25,"slug":26,"icon":27},"87540231f882db009150057cab6e18b33860930fe638fd85f5c1384df4c6f97c",[32,33,34],"Neutralinojs Overview",{"executes_code":28,"modifies_global_config":28,"requires_secrets":245,"uses_absolute_paths":28,"network_access":28},[],{"npm":247,"pip":248,"brew":249,"system":250},[],[],[],[],{"commands":252,"expected_files":253},[],[243],{"asset_kind":30,"target_tools":255,"install_mode":35,"entrypoint":243,"risk_profile":256,"dependencies":258,"content_hash":241,"verification":263},[32,33,34],{"executes_code":28,"modifies_global_config":28,"requires_secrets":257,"uses_absolute_paths":28,"network_access":28},[],{"npm":259,"pip":260,"brew":261,"system":262},[],[],[],[],{"commands":264,"expected_files":265},[],[243],{"target":33,"score":61,"status":62,"policy":63,"why":267,"asset_kind":30,"install_mode":35},[65,66,67,68,69,70,71],{"author_trust_level":73,"verified_publisher":28,"asset_signed_hash":241,"signature_status":74,"install_count":12,"report_count":12,"dangerous_capability_badges":269,"review_status":76,"signals":270},[],[78,79,80],{"owner_uuid":9,"owner_name":10,"source_url":272,"content_hash":241,"visibility":18,"created_at":273,"updated_at":274},"https:\u002F\u002Ftokrepo.com\u002Fen\u002Fworkflows\u002Fneutralinojs-lightweight-cross-platform-desktop-apps-9508a25d","2026-04-27 16:17:50","2026-05-12 20:13:13",108.85463498048792,[133,134,135,136],[26,138]]