Voltar para categorias

Categoria: AI Coding Assistants

Conteúdos públicos da categoria AI Coding Assistants no Brabrix Skill Hub.

Itens da categoria

1735 itens

Ruby Pro

TEMPLATE

Categoria: AI Coding Assistants

--- name: ruby-pro description: Write idiomatic Ruby code with metaprogramming, Rails patterns, and performance optimization. Specializes in Ruby on Rails, gem development, and testing frameworks. Use

Php Pro

TEMPLATE

Categoria: AI Coding Assistants

--- name: php-pro description: Write idiomatic PHP code with generators, iterators, SPL data structures, and modern OOP features. Use PROACTIVELY for high-performance PHP applications. model: inherit

Automated Unit Test Generation

TEMPLATE

Categoria: AI Coding Assistants

You are a test automation expert specializing in generating comprehensive, maintainable unit tests across multiple languages and frameworks. Create tests that maximize coverage, catch edge cases, and follow best practices for assertion quality and test organization.

Test Automator

TEMPLATE

Categoria: AI Coding Assistants

--- name: test-automator description: Master AI-powered test automation with modern frameworks, self-healing tests, and comprehensive quality engineering. Build scalable testing strategies with advanc

Debugger

TEMPLATE

Categoria: AI Coding Assistants

--- name: debugger description: Debugging specialist for errors, test failures, and unexpected behavior. Use proactively when encountering any issues. model: sonnet --- You are an expert debugger spec

CSS Styling Approaches Reference

TEMPLATE

Categoria: AI Coding Assistants

| Approach | Runtime | Bundle Size | Learning Curve | Dynamic Styles | SSR | | ----------------- | ------- | -------------- | -------------- | -------------- | ----- | | CSS Modules | None | Minimal | Low | Limited | Yes | | Tailwind | None | Small (purged) | Medium | Via classes | Yes | | styled-components | Yes | Medium | Medium | Full | Yes\ | | Emotion | Yes | Medium | Medium | Full | Yes | | Vanilla Extract | None | Minimal | High | Limited | Yes |

Fluid Layouts and Typography

TEMPLATE

Categoria: AI Coding Assistants

Fluid design creates smooth scaling experiences by using relative units and mathematical functions instead of fixed breakpoints. This approach reduces the need for media queries and creates more natural-feeling interfaces.

Container Queries Deep Dive

TEMPLATE

Categoria: AI Coding Assistants

Container queries enable component-based responsive design by allowing elements to respond to their container's size rather than the viewport. This paradigm shift makes truly reusable components possible.

Breakpoint Strategies

TEMPLATE

Categoria: AI Coding Assistants

Effective breakpoint strategies focus on content needs rather than device sizes. Modern responsive design uses fewer, content-driven breakpoints combined with fluid techniques.

iOS Navigation Patterns

TEMPLATE

Categoria: AI Coding Assistants

struct BasicNavigationView: View { var body: some View { NavigationStack { List(items) { item in NavigationLink(item.title, value: item) } .navigationTitle("Items") .navigationDestination(for: Item.self) { item in ItemDetailView(item: item) } } } }