定制 jeffersongoncalves/screentest-cli 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jeffersongoncalves/screentest-cli

最新稳定版本:v1.0.8

Composer 安装命令:

composer create-project jeffersongoncalves/screentest-cli

包简介

CLI tool for automated screenshot generation of Filament plugins.

README 文档

README

Screentest CLI

Screentest CLI

CLI tool for automated screenshot generation of Filament plugins. Generates documentation screenshots in light and dark themes with zero manual effort.

Features

  • Reads a screentest.json config from your plugin
  • Creates a temporary Filament project via filakit
  • Installs the plugin via path repository (symlink)
  • Auto-generates seeds by analyzing Resources (static analysis)
  • Captures screenshots with Puppeteer (light + dark themes)
  • Saves to {plugin}/screenshots/{theme}/{name}.png
  • Optionally updates README.md with screenshot references

Installation

composer global require jeffersongoncalves/screentest-cli

Quick Start

# Navigate to your Filament plugin directory
cd my-filament-plugin

# Initialize config (interactive)
screentest init

# Run the complete pipeline
screentest run

Commands

Command Description
screentest init Analyze plugin and generate screentest.json
screentest run Run the complete pipeline (setup → seed → capture → readme → cleanup)
screentest setup Create temporary Filament project and install plugin
screentest seed Generate and run seeds for the temporary project
screentest capture Capture screenshots using Puppeteer
screentest readme Update README.md with screenshot references
screentest cleanup Remove temporary project

Configuration

The screentest.json file controls the entire process:

{
  "plugin": {
    "name": "My Filament Plugin",
    "package": "vendor/my-plugin"
  },
  "filakit": {
    "kit": "filakitphp/basev5"
  },
  "install": {
    "extra_packages": [],
    "plugins": [
      {
        "class": "Vendor\\MyPlugin\\MyPluginPlugin",
        "panel": "admin"
      }
    ],
    "publish": [],
    "post_install_commands": ["migrate"]
  },
  "seed": {
    "auto_detect": true,
    "user": {
      "email": "admin@example.com",
      "password": "password",
      "name": "Admin User"
    },
    "models": []
  },
  "screenshots": [
    {
      "name": "resource-list",
      "url": "admin/resources",
      "selector": "body",
      "viewport": { "width": 1920, "height": 1080, "deviceScaleFactor": 3 },
      "before": [
        { "action": "wait", "delay": 500 }
      ]
    }
  ],
  "output": {
    "directory": "screenshots",
    "themes": ["light", "dark"],
    "format": "png"
  },
  "readme": {
    "update": true,
    "section_marker": "<!-- SCREENSHOTS -->",
    "template": "table"
  }
}

Requirements

  • PHP 8.2+
  • Node.js (for Puppeteer)
  • pnpm
  • Composer
  • Composer

How It Works

  1. Init - Analyzes your plugin's composer.json and Resources to generate a config
  2. Setup - Creates a temporary Filament project using filakit, installs your plugin via symlink
  3. Seed - Auto-detects Filament Resources, maps fields to Faker methods, generates factories and seeders
  4. Capture - Launches Puppeteer, logs into Filament, navigates to each URL, captures screenshots in light and dark themes
  5. Readme - Updates your README.md between <!-- SCREENSHOTS --> markers with a table or gallery

Auto-Seed Field Mapping

Filament Component Faker Method
TextInput('name') $faker->name()
TextInput('email') $faker->safeEmail()
TextInput('title') $faker->sentence(4)
TextInput()->numeric() $faker->numberBetween(0, 100)
Textarea $faker->paragraph()
RichEditor $faker->paragraph() (wrapped in HTML)
Toggle / Checkbox $faker->boolean()
Select('..._id') FK to related model
Select->options([...]) Random from options
DatePicker $faker->date()
DateTimePicker $faker->dateTime()
ColorPicker $faker->hexColor()
FileUpload Skipped (null)

License

Screentest CLI is open-source software licensed under the MIT license.

统计信息

  • 总下载量: 10
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-24