A Python PySide6 Qt template to quickly get up and running with vibe coded GUI desktop apps
npx skills add https://github.com/akiselev/qt-llm-template --skill pyside6-reviewerInstall this skill with the CLI and start using the SKILL.md workflow in your workspace.
This directory contains documentation for creating a PySide6 Qt GUI template repository optimized for LLM coding agents (Claude, GPT-4, etc.).
| Document | Description |
|---|---|
| docs/existing-concerns.md | Cross-cutting concerns from colonial-gui to redesign |
| docs/new-concerns.md | New cross-cutting concerns to implement |
| docs/architecture.md | Proposed template architecture |
| docs/llm-interface.md | API design for LLM coding agents |
| docs/claude-agents.md | Claude subagents and skills for the template |
| docs/questions.md | Clarifying questions (answer inline) |
LLMs work better with explicit, well-documented patterns than implicit conventions they need to infer.
Use declarative config (Pydantic models, dataclasses) over imperative setup code.
One place for each concern - no scattered configuration.
Simple things should be simple; complex things should be possible.
Every component should be testable in isolation.
pyside6-llm-template/
├── app/
│ ├── __init__.py
│ ├── main.py # Entry point
│ ├── main_window.py # Main window
│ ├── config.py # App configuration (Pydantic)
│ ├── theme.py # Theming system
│ ├── core/
│ │ ├── di.py # Dependency injection
│ │ ├── events.py # Event bus + event types
│ │ ├── state.py # State management
│ │ └── shortcuts.py # Keyboard shortcuts
│ ├── components/ # Reusable UI components
│ │ ├── base.py # Base component classes
│ │ ├── icons.py # Icon system
│ │ ├── palette.py # Command palette
│ │ └── toast.py # Notifications
│ ├── panels/ # Panel system
│ │ ├── registry.py # Panel registry
│ │ └── base.py # Base panel
│ ├── services/ # Service layer
│ │ ├── protocols.py # Service protocols
│ │ └── testing.py # Mock services
│ └── viewmodels/ # MVVM viewmodels
│ └── base.py # Base viewmodel
├── tests/
│ ├── conftest.py # Shared fixtures
│ ├── unit/ # Unit tests
│ └── e2e/ # E2E tests
├── mcp/ # MCP server for testing
│ ├── server.py
│ └── tools/
├── resources/
│ └── fonts/
├── scripts/
│ └── claude-setup.sh # Environment setup
├── CLAUDE.md # Instructions for Claude
├── AGENTS.md # Architecture documentation
├── pyproject.toml
└── app.py # UV shebang entry