sandermuller/rector-ecosystem-boost

Agent skills, coding standards, and PR conventions for the rector / symplify / TomasVotruba ecosystem (boost catalog).

Maintainers

Package info

github.com/SanderMuller/rector-ecosystem-boost

Homepage

pkg:composer/sandermuller/rector-ecosystem-boost

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-06-13 22:22 UTC

This package is auto-updated.

Last update: 2026-06-13 22:24:07 UTC


README

Latest Version on Packagist Total Downloads License

Agent skills, coding standards, and PR conventions for the rector / symplify / TomasVotruba ecosystem — and for contributing to repos you don't own. A Composer-distributed boost catalog: pure-Markdown, no runtime code.

What it ships

Skills (loaded on demand):

  • oss-contribution — the foreign-repo contribution playbook: read the target's rules first, run its gate, draft maintainer-facing prose for a human (never post it as the agent), one PR at a time, scope ambition to trust.
  • rule-authoring — the canonical shape for an ecosystem rule (Rector / PHPStan / symplify): mirror-path namespace, final + framework base, ctor injection, bail-early, the test + fixture conventions, no value-object tests. Tuned per repo by the rule.* conventions.

Guidelines (always loaded):

  • rector-ecosystem-house-style — the shared rectorphp / symplify / TomasVotruba coding standards (final classes, strict types, ReflectionProvider-not-runtime, no setters, …); php-tagged.
  • pr-contribution — the ecosystem's PR conventions + anti-slop rules (one feature/PR, tests required, lead-with-a-failing-test, no coverage/Docker padding, why-not-what descriptions); php-tagged.
  • verification-before-completion — evidence-before-claims, with doc-only and intended-red (failing-test) carve-outs.

conventions-schema.json — per-repo slots (gate command, base branch, package kind, PHP floor, docs path, rule framework / test-case base / identifier scheme) the skills and guidelines resolve at sync time, so one catalog tunes itself per repo.

Install

composer require --dev sandermuller/rector-ecosystem-boost

Allowlist it and sync with a boost engine (sandermuller/boost-core or laravel/boost):

// boost.php or .config/boost.php
return BoostConfig::configure()
    ->withAgents([Agent::CLAUDE_CODE, Agent::CODEX, Agent::CURSOR])
    ->withAllowedVendors(['sandermuller/rector-ecosystem-boost'])
    ->withTags(['github', 'php'])
    ->withConventions([/* gate.command, contribution.base_branch, … */]);
vendor/bin/boost sync

The skill and guidelines fan out into each configured agent's directory (Claude Code, Codex, Cursor, …). Per-repo values are supplied through withConventions(...) against conventions-schema.json.

License

MIT — see LICENSE.