Quickshell
SkillDev toolsBuild, lint, and troubleshoot Quickshell QML configurations or source builds. Use for shell.qml, Quickshell modules, qmllint setup, runtime validation, packaging, and version-matched API guidance.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Quickshell skill
What this skill tells your AI
The instructions your AI receives, as published by christitustech/titus-ai in .agents/skills/quickshell/SKILL.md and read by ahel’s review.
Core Workflow
- Locate the project shape:
- Config project: has
shell.qmland QML files. - Source checkout: has Quickshell CMake files and usually
BUILD.md. - Packaged config: has a named config intended for
$XDG_CONFIG_HOME/quickshell/<name>or$XDG_CONFIG_DIRS/quickshell/<name>.
- Config project: has
- Read local project instructions first (
AGENTS.md,README, docs, package metadata). - For QML edits, resolve this skill's absolute directory, keep the working
directory at the target project, and run its
scripts/quickshell-qmllinthelper before treatingqmllintimport errors as real. - For runtime validation, load the managed config with
quickshell --path <dir-or-shell.qml>orquickshell --config <name>in a real or nested compositor/session. - For documentation or API work, detect the project's target version from its
package metadata, lock files, source checkout, or
quickshell --version. Use the matching official versioned docs. If the project has no version signal, use the latest stable release and state the version selected. - For source builds, use CMake/Ninja and disable optional features whose dependencies are absent.
Resources
- Read
references/linting.mdwhen linting QML, configuringqmllint/qmlls, or diagnosing missingQuickshellorqs.*type declarations. - Read
references/build-and-run.mdwhen installing Quickshell, running a config, packaging a config, or building Quickshell from source. - Read
references/docs-map.mdwhen selecting version-matched official docs pages or type references.
Fast Commands
From the target project root, set the resolved absolute skill directory and lint
all QML under the nearest shell.qml root:
quickshell_skill_dir="/absolute/path/to/quickshell-skill"
"$quickshell_skill_dir/scripts/quickshell-qmllint"
Lint a specific config root:
"$quickshell_skill_dir/scripts/quickshell-qmllint" --root "$PWD/config/quickshell"
Run a config for validation:
quickshell --path config/quickshell --no-duplicate
Build Quickshell source:
cmake -GNinja -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
cmake --install build
Guardrails
- Prefer official docs matching the project's Quickshell version. Do not apply current APIs to an older pinned configuration without checking compatibility.
- Do not replace runtime
qs.*imports with relative imports only to satisfy stockqmllint; create lint-only module maps instead. - Treat plain
qmllintfailures aboutQuickshellorqs.*imports as setup failures until explicit import roots have been supplied. - Validate UI/runtime behavior in an actual compositor/X11/Wayland session when windows, panels, focus, IPC, or services are involved.
Signals
- GitHub stars
- 125
- Forks
- 21
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
quickshell- Source
- github.com/christitustech/titus-ai