Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

developing-gtk-apps开发 GTK 应用程序

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,448

周安装

58

GitHub Stars

2

下载量

469
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:developing-gtk-apps(开发 GTK 应用程序)
来源仓库:https://github.com/mhagrelius/dotfiles
仓库路径:skills/developing-gtk-apps
安装命令:
npx skills add https://github.com/mhagrelius/dotfiles --skill developing-gtk-apps
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mhagrelius/dotfiles --skill developing-gtk-apps

简介

developing-gtk-apps 构建 GTK4/libadwaita 应用程序的基础架构与生命周期管理机制,确保稳定性优先。

  • 应用启动必须初始化 GApplication 实例并连接 activate 信号,否则会导致资源泄漏或崩溃风险。
  • 主事件循环运行于单一线程,耗时操作应移至 worker thread 防止 UI 冻结影响响应速度。
  • 偏好设置窗口推荐使用 AdwPreferencesWindow 控件,自动适配系统主题与无障碍访问需求。
  • 所有对话框模态处理需绑定父窗口句柄,避免弹出层脱离焦点区域造成用户迷失操作路径。

SKILL.md

Developing GTK Apps

Build robust GTK 4/libadwaita applications with correct architecture, lifecycle, and patterns.

Core principle: Get the foundation right before the UI. Application lifecycle, threading model, and resource management are where most GTK apps break.

Relationship to UI skill: This skill handles architecture and plumbing. For widget selection, layout, and HIG compliance, use designing-gnome-ui.

Decision Flow

TaskUse
Which widget for settings?designing-gnome-ui
How to structure preferences window?designing-gnome-ui
App crashes on startupTHIS SKILL
UI freezes during operationTHIS SKILL
How to save user preferencesTHIS SKILL (GSettings)
Signal not firing/memory leakTHIS SKILL
Setting up new app boilerplateTHIS SKILL
Packaging for FlatpakTHIS SKILL

What's Current (libadwaita 1.7+, GTK 4.18+)

API deprecations to avoid:

  • GtkShortcutsWindow → Use AdwShortcutsDialog (libadwaita 1.8+)
  • .dim-label CSS class → Use .dimmed class
  • X11/Broadway backends are deprecated in GTK 4 (removal planned for GTK 5)

New patterns (libadwaita 1.6-1.8):

  • AdwSpinner - Preferred over GtkSpinner
  • AdwToggleGroup - Replaces multiple exclusive GtkToggleButton instances
  • AdwBottomSheet - Persistent bottom sheets
  • AdwWrapBox - Box that wraps children to new lines
  • AdwInlineViewSwitcher - For cards, sidebars, boxed lists

Application Boilerplate

import gi
gi.require_version('Gtk', '4.0')
gi.require_version('Adw', '1')
from gi.repository import Gtk, Adw, Gio

class MyApp(Adw.Application):
    def __init__(self):
        super().__init__(
            application_id="com.example.MyApp",
            flags=Gio.ApplicationFlags.DEFAULT_FLAGS
        )

    def do_activate(self):
        win = self.props.active_window
        if not win:
            win = MyWindow(application=self)
        win.present()

class MyWindow(Adw.ApplicationWindow):
    def __init__(self, **kwargs):
        super().__init__(**kwargs)
        self.set_default_size(800, 600)

def main():
    app = MyApp()
    return app.run(None)

Application ID Rules

RuleExample
Reverse domain notationcom.example.AppName
Only alphanumeric + dotsorg.gnome.TextEditor
Min 2 segmentscom.myapp (not myapp)
Match desktop filecom.example.MyApp.desktop

Lifecycle Signals

SignalWhenUse For
startupOnce, app launchesActions, CSS, GSettings
activateEach launch/raiseCreate/present window
shutdownApp exitsSave state, cleanup
openFiles passed to appHandle file arguments
def do_startup(self):
    Adw.Application.do_startup(self)  # Chain up FIRST
    self.setup_actions()

Threading - The Critical Rule

GTK is single-threaded. All UI calls MUST happen on the main thread.

# WRONG - will crash
def background_task():
    result = slow_computation()
    self.label.set_text(result)  # CRASH

# RIGHT - use GLib.idle_add
def background_task():
    result = slow_computation()
    GLib.idle_add(self.label.set_text, result)  # Safe

threading.Thread(target=background_task).start()

For async patterns with Gio.Task and cancellation, see gtk-patterns-reference.md.

Actions (Quick Reference)

Actions connect UI to behavior. Define at app level (app.action) or window level (win.action).

# In do_startup - app-level action
quit_action = Gio.SimpleAction.new("quit", None)
quit_action.connect("activate", lambda a, p: self.quit())
self.add_action(quit_action)
self.set_accels_for_action("app.quit", ["<Control>q"])

# In window __init__ - window-level action
save_action = Gio.SimpleAction.new("save", None)
save_action.connect("activate", self.on_save)
self.add_action(save_action)
self.get_application().set_accels_for_action("win.save", ["<Control>s"])

For stateful actions (toggles), parameterized actions, and menu integration, see gtk-patterns-reference.md.

GSettings (Quick Reference)

Persist user preferences with GSettings. Requires a schema file.

# In app __init__
self.settings = Gio.Settings.new("com.example.MyApp")

# Read/write values
dark = self.settings.get_boolean("dark-mode")
self.settings.set_boolean("dark-mode", True)

# Bind to widget property (auto-syncs)
self.settings.bind("window-width", window, "default-width",
    Gio.SettingsBindFlags.DEFAULT)

# React to changes
self.settings.connect("changed::dark-mode", self.on_dark_changed)

For schema XML format and installation, see gtk-patterns-reference.md.

Debugging (Quick Reference)

GTK_DEBUG=interactive myapp      # Open GTK Inspector (Ctrl+Shift+D)
G_MESSAGES_DEBUG=all myapp       # Show all debug messages
G_DEBUG=fatal-criticals myapp    # Abort on critical warnings
GSETTINGS_BACKEND=memory myapp   # Test without persisting settings

For full debugging patterns, profiling, and GDB integration, see gtk-debugging-reference.md.

Red Flags - STOP

  • Calling UI methods from threads (use GLib.idle_add)
  • Missing do_startup chain-up
  • Signal handlers without disconnect on destroy
  • Blocking operations in signal handlers
  • Hardcoded paths instead of XDG directories
  • Missing application ID or wrong format
  • Using time.sleep() in main thread
  • Using GtkShortcutsWindow (deprecated - use AdwShortcutsDialog)
  • Using GtkSpinner for libadwaita apps (use AdwSpinner)

Reference Files

NeedFile
GObject classes, properties, signals, list models, property bindings, factoriesgtk-gobject-reference.md
Actions, GSettings, Resources, Blueprint, async file opsgtk-patterns-reference.md
Desktop file, AppStream metadata, Meson, Flatpak, icons, Python depsgtk-packaging-reference.md
Testing with pytest, async testing, headless/CI testinggtk-testing-reference.md
Internationalization, gettext, ngettext plurals,.po files, Blueprint i18n, RTL testinggtk-i18n-reference.md
DBus activation, interface export, background services, Flatpak portalsgtk-dbus-reference.md
GTK Inspector, env vars, profiling, memory debugginggtk-debugging-reference.md
UI patterns, widgets, HIGUse designing-gnome-ui skill

External References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.51%
按下载量换算129

trae

24.67%
按下载量换算116

OpenCode

20.81%
按下载量换算98

Cursor

12.45%
按下载量换算58

Gemini CLI

8.37%
按下载量换算39

Antigravity

3.42%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills