agent-skills

by TheQtCompanyRnDVerified

Official Qt AI engineering skills for Claude Code, Codex, Copilot, Gemini,and other AI coding tools

376
Stars
39
Forks
QML
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/TheQtCompanyRnD/agent-skills

Getting Started

Guides for using skills like agent-skills.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Qt AI Skills

Official agentic skills for Qt software development and quality assurance, designed for use with AI coding tools such as Claude Code, Codex CLI, Gemini CLI, and GitHub Copilot.

Skills have been tested with frontier LLMs from the Claude, Gemini, and GPT model families.

There is no settled industry standard for AI skill packaging. Each platform has its own conventions. Our canonical format uses SKILL.md with YAML frontmatter in a directory-based structure — this works natively on Claude Code, Codex CLI, and GitHub Copilot, and can be adapted to other platforms through condensed variants. See CONTRIBUTING.md for the full cross-platform story.

These agentic development skills use AI and can make mistakes. Always double-check the output carefully.

Before using the skills under Qt commercial licensing, make sure you have understood and agree to the Qt AI Services Terms & Conditions. By using the skills or MCP tools, you accept these terms & conditions and that you have the right to do so on behalf of your employer.

Skills

SkillTypeDescription
qt-cpp-reviewReviewDeterministic linting + 6 parallel deep-analysis agents for Qt C++ code. Covers model rule compliance, memory ownership, thread safety, correctness, error handling, and performance.
qt-qml-reviewReviewDeterministic QML linting (47+ rules) + parallel deep-analysis agents for bindings, layout, loaders, delegates, states, and performance.
qt-qmlConceptualQML best practices for writing, reviewing, fixing, and refactoring. Corrects systematic LLM pre-training biases around bindings, scoping, modules, JS interop, and types.
qt-ui-designConceptualUI design and audit for Qt/QML, web, and embedded (MPU/MCU) targets. Covers screen layout, navigation, and UX review with platform-aware defaults for geometry, viewing distance, input, and locale.
qt-qml-docsProcessGenerates Markdown reference documentation for QML components and applications from .qml source files.
qt-cpp-docsProcessGenerates Markdown reference documentation for Qt/C++ source files — classes, modules, utilities, headers, and entry points.
qt-qml-profilerToolRuns qmlprofiler on a 2D QML / Qt Quick application, parses the .qtd trace, and analyzes hotspots against the source code with frame-time, memory, and pixmap-cache summaries. Does not cover Qt Quick 3D.
qt-qml-testProcessGenerates Qt Quick Test cases (tst_*.qml) for QML components using TestCase, SignalSpy, and tryCompare. Handles single files and batches. Does not cover CMake or runner setup.
qt-qml-test-runToolBuilds and runs Qt Quick Test (qmltestrunner) tests for a CMake project, parses the JUnit XML, and writes a Markdown report. Opt-in CMake test-infrastructure wiring with --wire-up. Companion to qt-qml-test.
qt-figma-token-extractionProcessExtracts design tokens, text styles, and variables from a Figma design system and produces a design-tokens.json plus ready-to-use QML singletons.
qt-figma-component-generationProcessExtracts component metadata from a Figma design system and generates production-ready QML controls mapped to Qt Quick Controls 2 patterns. Requires tokens from qt-figma-token-extraction.
qt-cmake-projectConceptualSets up and manages Qt 6 projects built with CMake — fresh projects, executables, libraries, QML modules, plugins, folder layout, and static resources. Corrects systematic LLM biases around qmake-isms and the legacy qt5_* macros.

Skill types

  • Review — structured code review workflows combining deterministic linters with deep AI analysis
  • Process — workflows and decision frameworks (architecture, build, test, documentation)
  • Conceptual — mental model corrections for areas where LLMs consistently fail (declarative QML, C++/QML boundary, Widgets patterns, UI design)
  • Tool — guidance on Qt CLI tools and testing solutions

MCP Tools

ToolDescription
qt-documentation-mcpHosted MCP server for Qt API documentation lookup across the latest release and active LTS branches. Bundled with the qt-development-skills plugin; also available standalone via the official MCP registry as io.qt/qt-documentation-mcp.

Qt Documentation MCP Tool

See mcp/qt-documentation-mcp/README.md for endpoint and manual setup instructions for AI clients other than Claude Code.

Repository Structure

skills/                           # All skills live here
  qt-cpp-review/                  #   Each skill is a directory
    SKILL.md                      #   with a SKILL.md entry point
    references/                   #   and optional reference docs
      lint-scripts/
      qt-review-checklist.md
    platforms/                    #   Platform-specific variants
  qt-qml-review/
  qt-qml/
  qt-ui-design/
  qt-qml-docs/
  qt-cpp-docs/
  qt-qml-profiler/
  qt-qml-test/
  qt-qml-test-run/
  qt-cmake-project/
mcp/                              # MCP servers bundled with the plugin
  qt-documentation-mcp/           #   Each server is a directory
    README.md                     #   with its own README
.mcp.json                         # MCP registration for Claude Code
.claude-plugin/                   # Claude Code CLI & Copilot CLI plugin config
gemini-extension.json             # Gemini CLI extension manifest
docs/                             # Source for the docs site (MkDocs)
CONTRIBUTING.md
LICENSE
README.md

Skill Format

Every skill is a directory containing a SKILL.md file with YAML frontmatter. This format aligns with what Claude Code and Codex CLI support natively:

---
name: qt-qml-review
description: >-
  Reviews QML source files for correctness, performance, and
  maintainability. Deterministic linting (47+ rules) plus
  parallel deep-analysis agents for bindings, layout, loaders,
  delegates, states, and performance.
license: LicenseRef-Qt-Commercial OR BSD-3-Clause
compatibility: >-
  Designed for Claude Code, GitHub Copilot, and similar agents.
metadata:
  author: qt-ai-skills
  version: "1.0"
  qt-version: "6.x"
---

Key conventions

  • name must be lowercase alphanumeric + hyphens, max 64 chars, and must match the directory name
  • description must describe what the skill does AND when to use it — front-load the key information in the first 250 characters, as some platforms truncate beyond that point
  • SKILL.md body should stay under 500 lines — move detailed content to references/ files
  • Progressive disclosure: agents load only name/description at startup, read SKILL.md body on activation, and pull references/ files only when needed

Multi-Tool Support

Skills are authored to be tool-agnostic wherever possible. However, different AI coding tools consume skills in different ways:

ToolSkill LocationFormatNotes
Claude Code CLI~/.claude/skills/SKILL.md + references (native)Full directory model with progressive loading
Codex CLI~/.codex/skills/SKILL.md + references (native)Full directory model; registered in ~/.codex/config.toml
Gemini CLIExtension skills/SKILL.md + references (native)Installed via gemini extensions install; @file.md imports
GitHub Copilot.github/skills/ or .claude/skills/ (project), ~/.copilot/skills/ (personal)SKILL.md + references (native)Auto-discovered across Copilot CLI, coding agent, and VS Code; existing .claude/skills/ setups Just Work

When platform-specific variants are needed

Most skills work across tools without changes. When a skill needs to reach platforms that cannot read multi-file directories (e.g. Windsurf, Amazon Q), create variants in a platforms/ directory:

skills/qt-qml-review/
├── SKILL.md                       # Core skill (tool-agnostic)
├── references/
│   ├── qml-lint-rules.md
│   └── qml-review-checklist.md
└── platforms/                     # Platform-specific variants
    └── windsurf.md                #   Self-contained compact variant

The platforms/ directory is a convention for this repository. See CONTRIBUTING.md for full details on creating platform variants.

Installation

Most AI coding tools can install skills directly from this GitHub repository. Choose the method for your platform below.

Claude Code CLI

Install as a plugin using the Claude Code CLI plugin system:

/plugin marketplace add TheQtCompanyRnD/agent-skills
/plugin install qt-development-skills

Or install individual skills manually:

# Symlink a skill into your personal skills directory
ln -s "$(pwd)/skills/qt-qml-review" ~/.claude/skills/qt-qml-review

# Or copy into a project for team use
cp -r skills/qt-qml-review .claude/skills/qt-qml-review

Claude Code auto-discovers skills — no restart needed.

Codex CLI

Use Vercel's cross-platform skill installer:

npx skills add TheQtCompanyRnD/agent-skills

Or copy skills manually:

cp -r skills/qt-qml-review ~/.codex/skills/qt-qml-review

Restart Codex after adding skills.

Note: Codex is evolving rapidly. If ~/.codex/skills/ does not work, try ~/.agents/skills/ or .agents/skills/ in your project root.

GitHub Copilot CLI

Copilot natively reads the same SKILL.md directory format as Claude Code. Install individual skills using GitHub CLI (preview):

gh skill install TheQtCompanyRnD/agent-skills qt-qml-review

Or copy/symlink the skill into one of Copilot's discovery paths:

# User-wide (available in any project)
cp -r skills/qt-qml-review ~/.copilot/skills/qt-qml-review

# Or scoped to a specific project
cp -r skills/qt-qml-review .github/skills/qt-qml-review

Copilot also auto-discovers skills installed for Claude Code under .claude/skills/, so a single install can serve both tools. Use /skills list inside Copilot CLI to confirm what loaded.

VSCode Agents (Copilot and others)

Run Chat: Install Plugin From Source from the Command Palette. Enter https://github.com/TheQtCompanyRnD/agent-skills (this repo) to clone and install

Gemini CLI

Install as an extension:

gemini extensions install https://github.com/TheQtCompanyRnD/agent-skills

Or import skills into your project's context file:

# Add to GEMINI.md (loaded automatically)
echo '@skills/qt-qml-review/SKILL.md' >> GEMINI.md

Documentation site

A browsable documentation site is built from the docs/ directory using MkDocs Material and published at:

https://doc.qt.io/agentictools/

The canonical repo is on Gerrit (codereview.qt-project.org/qtai/qtaiskills); doc.qt.io builds are driven by the qtaiskills Rundeck job in tqtc-doctools on each push to the publishing branch.

Local preview

Requires Python 3.12+:

pip install -r requirements-docs.txt
mkdocs serve

Then open http://127.0.0.1:8000/agent-skills/ — the dev server live-reloads on every save.

Production build

mkdocs build --strict

Output goes to site/. --strict fails on broken links and malformed nav, matching the GitHub Actions check.

Adding a new skill page

  1. Create docs/skills/<skill-name>.md (use an existing skill page as a template).
  2. Add it to nav: in mkdocs.yml.
  3. Add a row to the table in docs/skills/index.md.
  4. Run mkdocs serve to verify.

Contributing

See CONTRIBUTING.md for guidelines on authoring new skills, including:

  • Naming conventions and frontmatter requirements
  • How to structure progressive disclosure
  • Testing skills across AI coding tools
  • When and how to create platform-specific variants

License

BSD-3-Clause — see LICENSE for details.

Frequently Asked Questions

What is agent-skills?

agent-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by TheQtCompanyRnD. Official Qt AI engineering skills for Claude Code, Codex, Copilot, Gemini,and other AI coding tools. It has 376 GitHub stars.

Is agent-skills safe to use?

Yes. agent-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install agent-skills?

Clone the repository with "git clone https://github.com/TheQtCompanyRnD/agent-skills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is agent-skills written in?

agent-skills is primarily written in QML. It is open-source under TheQtCompanyRnD on GitHub, so you can review or fork the full source.

Are there alternatives to agent-skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agent-skills against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details