Back to the catalog

filament-pro

marcelorodrigo/agent-skills · skills.sh

Open source Repository Open in the app JSON README (API)

About

Skill publicada por marcelorodrigo/agent-skills no skills.sh. Instale com: npx skills add marcelorodrigo/agent-skills@filament-pro

Details

Kind
Agent skills
Topic
No topic detected
Publisher
marcelorodrigo
Origin
skillssh
Category
ferramentas
Stars
18
Forks
3
Last push
2026-09-03T10:00:35Z
Repository state
ativo
License
MIT
Added
2026-08-30 15:22:51
Updated
2026-09-08 15:06:04
Origin id
marcelorodrigo/agent-skills/filament-pro

README

# Agent Skills

A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.

Skills available in this repository follow the [Agent Skills format](https://agentskills.io/).

## Available Skills

### Technical Skills

| Skill               | Description                                                                 |
|---------------------|-----------------------------------------------------------------------------|
| `conventional-commit` | Create commit messages following [Conventional Commits](https://www.conventionalcommits.org/) |
| `create-pr`         | Create pull requests following best engineering practices                   |
| `dependency-updater` | Analyze dependency upgrades and produce implementation-ready migration plans |
| `filament-pro`      | Build Laravel admin panels with Filament v5 using server-driven UI          |
| `phpstan-fixer`     | Fix PHPStan static analysis errors with proper type annotations and PHPDocs |
| `spring-boot-testing` | Expert Spring Boot 4 testing with best practices and modern Java 25 features |

### Soft Skills

| Skill               | Description                                                                 |
|---------------------|-----------------------------------------------------------------------------|
| `technical-writing-for-engineers` | Write technical content for senior engineering audiences with narrative structure and editorial voice |

### conventional-commit

**Killer features:** Analyzes your changes to understand what was modified, explains the **why** (not just what), contrasts with previous behavior, and crafts commits that tell a short story. Follows Conventional Commits with proper types, scopes, and formatting for readable git history and automated versioning.

```bash
npx skills add https://github.com/marcelorodrigo/agent-skills --skill conventional-commit
```

### create-pr

**Killer features:** Reviews your commits and diffs to deeply understand changes, explains the **motivation** behind them, considers alternative approaches, and structures PRs for faster, better reviews. Creates clear descriptions focused on context reviewers need (not redundant test plans or checklists). Uses draft PRs for early feedback.

```bash
npx skills add https://github.com/marcelorodrigo/agent-skills --skill create-pr
```

### dependency-updater

**Killer features:** Scans polyglot repositories and monorepos for manifests, lockfiles,
workspace boundaries, and package managers. Traces dependency usage across source, tests,
configuration, build tooling, CI, generated code, and documentation. Researches authoritative
release notes and migration guides, maps applicable changes to repository files, and produces
a grouped implementation handoff with mandatory compile/build and test verification steps.
The skill is planning-only and hands implementation changes to a separate workflow.

```bash
npx skills add https://github.com/marcelorodrigo/agent-skills --skill dependency-updater
```

### filament-pro

**Killer features:** Comprehensive guide for building Laravel admin panels with Filament v5. Covers server-driven UI, schema-based forms, tables with filters and actions, relation managers, testing with Pest, multi-tenancy, and authorization. Includes 10 detailed reference files and complete code examples for rapid development.

```bash
npx skills add https://github.com/marcelorodrigo/agent-skills --skill filament-pro
```

### phpstan-fixer

**Killer features:** Systematically fixes PHPStan static analysis errors without suppressing them. Teaches agents to add proper type annotations, PHPDocs, and framework-specific fixes (Laravel/Symfony). Respects project configuration, never modifies phpstan.neon without approval, uses Question tool for user decisions, and verifies fixes by re-running analysis. Includes error identifier reference and debugging strategies.

```bash
npx skills add https://github.com/marcelorodrigo/agent-skills --skill phpstan-fixer
```

### spring-boot-testing

**Killer features:** Expert guide for testing Spring Boot 4 applications with Java 25 features. Selects optimal test slices (@WebMvcTest, @DataJpaTest, @SpringBootTest), uses MockMvcTester with AssertJ-style assertions, integrates Testcontainers for real database testing, applies production-scenario testing, and maintains 80% coverage. Includes complexity assessment, helper methods, and @DisplayName best practices with focused reference files.

```bash
npx skills add marcelorodrigo/agent-skills --skill spring-boot-testing
```

### technical-writing-for-engineers

**Killer features:** Teaches narrative structure (Before → Journey → After) for technical content targeted at senior engineers and tech leads. Guides agents to write with intellectual honesty, craft compelling hooks that signal stakes and audience, structure posts around reader decisions, and avoid filler patterns. Includes banned words list, formatting rules, and guidelines for titles and conclusions that deliver actual takeaways rather than summaries.

```bash
npx skills add marcelorodrigo/agent-skills --skill technical-writing-for-engineers
```

## Installation

Install skills from this repository using the [skills](https://github.com/vercel-labs/skills) CLI:

```bash
# Install all skills
npx skills add marcelorodrigo/agent-skills

# Install a specific skill
npx skills add marcelorodrigo/agent-skills --skill conventional-commit
npx skills add marcelorodrigo/agent-skills --skill create-pr
npx skills add marcelorodrigo/agent-skills --skill filament-pro
npx skills add marcelorodrigo/agent-skills --skill phpstan-fixer
npx skills add marcelorodrigo/agent-skills --skill spring-boot-testing
npx skills add marcelorodrigo/agent-skills --skill technical-writing-for-engineers
npx skills add marcelorodrigo/agent-skills --skill dependency-updater

# List available skills
npx skills add marcelorodrigo/agent-skills --list
```

## Repository Guide

See [AGENTS.md](./AGENTS.md) for repository structure, code style guidelines, and conventions.

More