elementor-controls
π―Skillfrom peixotorms/odinlayer-skills
Enhances WordPress Elementor plugin development by providing intelligent code generation and control creation guidelines for custom widget and extension controls.
Part of
peixotorms/odinlayer-skills(4 items)
Installation
npx skills add peixotorms/odinlayer-skills --skill elementor-controlsSkill Details
Overview
# AI Skills Marketplace
A curated collection of [Claude Code](https://docs.anthropic.com/en/docs/claude-code) plugins for development best practices and coding standards.
Quick Start
```bash
# 1. Add this marketplace (one-time setup)
claude plugin marketplace add peixotorms/odinlayer-skills
# 2. Install the plugins you want
claude plugin install rust-skills
claude plugin install go-skills
claude plugin install php-skills
claude plugin install wp-skills
claude plugin install compliance-skills
```
Available Plugins
rust-skills
Comprehensive Rust guidelines β 11 focused skills covering core guidelines, unsafe/FFI, async/concurrency, performance, and 7 domain-specific areas.
```bash
claude plugin install rust-skills
```
One install gives you all 11 skills. Claude loads only the relevant ones per conversation based on what you're working on.
Skills included:
| Skill | Auto-activates when... |
|-------|------------------------|
| rust-guidelines | Writing, reviewing, building, or deploying Rust code β error handling, API design, types, ownership, lifetimes, smart pointers, generics, domain modeling, RAII, docs, naming, lints, build/deploy workflow, test placement |
| rust-unsafe | Writing unsafe code, FFI bindings, raw pointers, or C interop |
| rust-async | Writing async/concurrent code with tokio, channels, mutexes, threads |
| rust-performance | Optimizing performance β profiling, allocations, collections, Rayon, memory layout |
| rust-web | Building web services with axum, actix-web, warp, or rocket |
| rust-cloud-native | Building cloud-native apps, microservices, or Kubernetes deployments |
| rust-cli | Building CLI tools or TUI apps with clap, ratatui |
| rust-fintech | Building financial, trading, or payment systems |
| rust-embedded | Developing embedded/no_std/bare-metal for microcontrollers |
| rust-iot | Building IoT applications, sensor networks, or edge devices |
| rust-ml | Building ML/AI inference pipelines |
Command included:
| Command | Description |
|---------|-------------|
| /rust-review | Review any Rust file against the guidelines. Usage: /rust-review src/main.rs |
Sources:
- [Microsoft Pragmatic Rust Guidelines](https://microsoft.github.io/rust-guidelines/) (48 production rules)
- [ZhangHanDong/rust-skills](https://github.com/ZhangHanDong/rust-skills) (community patterns for ownership, concurrency, type-driven design, domain modeling)
---
go-skills
Idiomatic Go guidelines β 3 focused skills covering core idioms, concurrency patterns, and error handling.
```bash
claude plugin install go-skills
```
One install gives you all 3 skills. Claude loads only the relevant ones per conversation.
Skills included:
| Skill | Auto-activates when... |
|-------|------------------------|
| go-guidelines | Writing, reviewing, building, or deploying Go code β formatting, naming, doc comments, control structures, functions, defer, data types, methods, interfaces, embedding, initialization, functional options, generics, testing, linting, build/deploy workflow, test placement, anti-patterns |
| go-concurrency | Writing concurrent Go with goroutines, channels, select, sync primitives, worker pools, fan-out/fan-in, context cancellation |
| go-errors | Handling errors β wrapping, errors.Is/errors.As, sentinel errors, custom types, errors-as-values patterns, panic/recover |
Command included:
| Command | Description |
|---------|-------------|
| /go-review | Review any Go file against the guidelines. Usage: /go-review main.go |
Sources:
- [Effective Go](https://go.dev/doc/effective_go)
- [Google Go Style Guide](https://google.github.io/styleguide/go/)
- [Go Code Review Comments](https://go.dev/wiki/CodeReviewComments)
- [Go Proverbs](https://go-proverbs.github.io/)
---
php-skills
Comprehensive PHP guidelines β 5 focused skills covering modern PHP 8.x patterns, type system, OOP, security, performance, networking, internationalization, and version migration.
```bash
claude plugin install php-skills
```
One install gives you all 5 skills. Claude loads only the relevant ones per conversation based on what you're working on.
Skills included:
| Skill | Auto-activates when... |
|-------|------------------------|
| php-guidelines | Writing, reviewing, or deploying PHP code β type system, strict types, OOP, enums, modern PHP 8.x patterns, DI & SOLID, PSR standards, Composer, JSON, functions, generators, fibers, namespaces, error handling, attributes, version migration (8.0-8.5), testing, build/deploy, anti-patterns |
| php-security | Handling user input, database queries, file operations, authentication β SQL injection, XSS, CSRF, input validation, output escaping, password hashing, session management, serialization security, file uploads, cryptography, php.ini hardening (OWASP) |
| php-performance | Optimizing performance β OPcache, JIT, preloading, database (PDO), caching (Redis, Memcached), SPL data structures, micro-optimizations, memory management, profiling |
| php-networking | Making HTTP requests with cURL, multi-curl, writing regex (PCRE), parallel/async execution (pcntl_fork, stream_select, parallel extension, fibers) |
| php-intl | Working with multibyte strings, UTF-8 encoding, internationalization (mbstring, intl extension, Collator, NumberFormatter, IntlDateFormatter, Transliterator) |
Command included:
| Command | Description |
|---------|-------------|
| /php-review | Review any PHP file against the guidelines. Usage: /php-review src/Controller/UserController.php |
Sources:
- [PHP Manual](https://www.php.net/manual/en/)
- [OWASP Cheat Sheet Series](https://cheatsheetseries.owasp.org/)
- [PHP The Right Way](https://phptherightway.com/)
- PHP 8.0-8.5 Migration Guides
---
wp-skills
Comprehensive WordPress, WooCommerce, and Elementor guidelines β 17 focused skills covering the full WordPress ecosystem.
```bash
claude plugin install wp-skills
```
One install gives you all 17 skills. Claude loads only the relevant ones per conversation based on what you're working on.
WordPress Core (8 skills):
| Skill | Auto-activates when... |
|-------|------------------------|
| wp-guidelines | Writing, reviewing, or refactoring WordPress PHP code β naming conventions, hooks, i18n, enqueuing, Yoda conditions, WordPress API usage, formatting, deprecated functions |
| wp-security | Handling user input, database queries, file operations, authentication, or output in WordPress β escaping, nonces, sanitization, SQL safety, capabilities, file uploads, AJAX security, REST API permissions |
| wp-performance | Optimizing WordPress performance, debugging slow queries, configuring caching, reviewing database code β WP_Query optimization, object cache, transients, anti-patterns, profiling, platform-specific guidance |
| wp-blocks | Building Gutenberg blocks, block themes, or using the Interactivity API β block.json, static and dynamic rendering, InnerBlocks, deprecations, theme.json, templates, patterns, data-wp-* directives, server-side rendering, WordPress 6.9 features |
| wp-rest-api | Building WordPress REST API endpoints, custom routes, controllers, or using the Abilities API β route registration, schema validation, permission callbacks, authentication, response shaping, field registration, Abilities API for declarative permissions |
| wp-plugins | Building WordPress plugins or themes β architecture, lifecycle hooks, settings API, data storage, custom tables, WP-CLI commands, PHPStan configuration, PHPCS, testing, build and deploy workflow |
| wp-apis | Working with WordPress core APIs in plugins or themes β admin menus, shortcodes, meta boxes, custom post types, taxonomies, HTTP API, WP-Cron, dashboard widgets, users and roles, privacy (GDPR), theme mods and Customizer, Site Health, global variables, responsive images, advanced hooks |
| wp-javascript | Using JavaScript in WordPress β scr
More from this repository3
Validates, enhances, and provides best practices for creating and managing WordPress Elementor form configurations and submissions.
Provides expert guidance and best practices for developing WordPress websites and plugins using the Elementor page builder, focusing on efficient, standards-compliant custom widget and template cre...
Provides Claude Code guidance and best practices for creating, managing, and extending WordPress Elementor plugin hooks and custom extensions.