Plugin Claude Code
Drogon C++ framework Claude Code plugin — rules and skills for correct async code generation.
Plugin Claude Code
Drogon C++ framework Claude Code plugin — rules and skills for correct async code generation.
Plugin Claude Code
Guidance for writing C++ back-end services with Drogon, a web framework for building HTTP servers. It focuses on asynchronous code and common problems with callbacks and event loops.
Instructions file
Project instructions for building Drogon backends with C++, covering asynchronous request handling, the Trantor event-loop system, and routing work to related skills. Drogon is a C++ web framework, while an event loop runs network work without blocking its processing thread.
Hook
Runs when a session starts on startup, clear and compact, running an inline shell check. From voidvec/drogon-claude-plugin.
Hook
Runs after a tool call finishes for Write, Edit and MultiEdit tool calls, executing posttooluse.py via python. From voidvec/drogon-claude-plugin.
Skill Claude CodeCodex
生成 drogon 控制器代码(.h + .cc),支持 HttpSimpleController、HttpController、WebSocketController 三种类型。.
Skill Claude CodeCodex
A code-generation skill for registering Drogon advice, which is Drogon's way to run logic at selected points in request, connection, and session handling. It supports observing an event or intercepting it.
Skill Claude CodeCodex
A CMakeLists.txt generator for Drogon, a C++ web framework. It creates build configuration for options such as database access, Redis, WebSockets, C++20, and coroutines.
Skill Claude CodeCodex
A generator for Drogon coroutine code, where coroutines let C++ pause while waiting for database, Redis, or HTTP work without blocking the request thread.
Skill Claude CodeCodex
A code generator for Drogon, a C++ web framework, that creates HTML view templates in its CSP format and the controller code needed to render them.
Skill Claude CodeCodex
A generator for Drogon database settings in config.json, the file used to configure a Drogon application.
Skill Claude CodeCodex
A generator for Drogon file-upload handlers, which receive files sent through an HTML form or API request.
Skill Claude CodeCodex
A code generator for Drogon filters, which inspect or reject web requests before they reach a handler. It can create filters for authentication, rate limits, or input checks.
Skill Claude CodeCodex
A code generator for making outgoing HTTP requests from a Drogon C++ application. HTTP is the standard way software calls web services; the generator supports asynchronous requests, coroutine-based requests, and reverse-proxy forwarding.
Skill Claude CodeCodex
A code generator for Drogon lambda-based HTTP routes. A route maps a web address and HTTP method, such as GET or POST, to code that handles the request.
Skill Claude CodeCodex
A code generator for Drogon middleware, which is shared request-processing code that runs as part of the web request chain. It supports logging, cross-origin request handling, and timing requests.
Skill Claude CodeCodex
A code generator for database create, read, update, and delete operations in Drogon, a C++ web framework. It supports PostgreSQL, MySQL, and SQLite, using either callbacks or coroutines; coroutines are a way to write asynchronous code in a sequential style.
Skill Claude CodeCodex
A code generator for Drogon plugins, which initialize and manage application-wide resources during the program's lifetime. Examples include connection pools and third-party software libraries.
Skill Claude CodeCodex
A generator for the Redis section of a Drogon project's config.json file. Redis is a fast data store often used for caching, sessions, or shared application data.
Skill Claude CodeCodex
A code generator for Drogon session-based login, logout, and access checks. Drogon is a C++ web framework, and a session stores information about a visitor between requests.
Skill Claude CodeCodex
A test-case generator for Drogon applications using the DROGON_TEST framework. It can describe unit tests, integration tests, and asynchronous database tests.
Skill Claude CodeCodex
A code-generation skill for creating a Drogon web server's configuration file in JSON or YAML. Drogon is a C++ web framework.