valinor-php
Write and fix PHP code using `cuyz/valinor`. Use this skill whenever the user mentions Valinor, `MapperBuilder`, `NormalizerBuilder`, `MappingError`, mapping arrays, JSON, YAML, or HTTP requests into typed PHP objects, normalizing objects back to arrays or JSON, custom converters, constructors, transformers, or advanced PHPStan or Psalm type signatures with Valinor.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o valinor-php.zip https://jpskill.com/download/8690.zip && unzip -o valinor-php.zip && rm valinor-php.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/8690.zip -OutFile "$d\valinor-php.zip"; Expand-Archive "$d\valinor-php.zip" -DestinationPath $d -Force; ri "$d\valinor-php.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
valinor-php.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
valinor-phpフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Valinor PHP
Use this skill to write production-quality code against Valinor's public API. Favor the smallest correct Valinor configuration and keep the code on the public surface.
Core stance
- Default to strict mapping. Relax rules only when the input contract actually requires it.
- Prefer precise PHP and PHPDoc types over
mixedorobject. - Prefer public entrypoints such as
MapperBuilder,NormalizerBuilder,Mapper\Source\Source,Normalizer\Format,HttpRequest,AsConverter,AsTransformer, andObject\Constructor. - Treat builders as immutable configuration objects. Chain or reassign them; do not assume in-place mutation.
- Prefer reusable configurators for shared application policy.
- Avoid internal classes under areas like
Library,Compiler,Definition, or concrete mapper internals.
Read only what you need
| Task | Read |
|---|---|
| General mapping, builder setup, cache, public API | references/api-surface.md |
| Choosing exact types and signatures | references/type-signatures.md |
| JSON/YAML/file sources, path mapping, and custom iterable sources | references/source-shaping.md |
| Converters, key remapping, constructors, interface inference, custom errors | references/customization.md |
| HTTP request mapping, PSR-7 integration, source-binding attributes | references/http-request-mapping.md |
| Array or JSON normalization and transformers | references/normalization.md |
| Formatting, translating, and remapping validation messages | references/error-messages-formatting.md |
| Static-analysis plugins, purity, framework integration, and upgrade notes | references/static-analysis-and-integration.md |
| Picking an implementation pattern from a user request | references/common-use-cases.md |
| Debugging mapping failures or weird behavior | references/troubleshooting-workarounds.md |
| Fast starter snippets | examples/happy-path.md |
| HTTP-specific starter snippets | examples/http-requests.md |
| Message-formatting snippets | examples/error-formatting.md |
| Production-safe baseline | examples/production-safe.md |
| Smells and corrected versions | examples/anti-patterns.md |
Workflow
- Identify the boundary: object mapping, callable arguments, HTTP request mapping, normalization, or customization.
- Load the one or two reference files that match the task.
- Use the narrowest correct target type.
- Start with strict defaults; only add toggles like
allowScalarValueCasting()orallowSuperfluousKeys()when justified by the input contract. - Catch
CuyZ\Valinor\Mapper\MappingErrorat the application boundary when invalid external input is expected. - If the same Valinor policy will be reused, extract it into a builder configurator instead of repeating chained calls.
- If code is production-facing, add cache usage when appropriate.
Preferred defaults
- For JSON, YAML, and files, prefer
Mapper\Source\Source::json(),Source::yaml(), andSource::file(). - For new code, prefer provided key-case configurators over deprecated source
modifiers like
Source::camelCaseKeys(). Source::map()path mapping is still valid when reshaping inbound payloads; only the deprecated key-case source modifier should be avoided in new code.- Use direct type signatures like
'list<Foo>'or'array{status: non-empty-string, page?: positive-int}'when a dedicated DTO would be unnecessary. - Use DTOs or value objects when the structure is reused, domain-bearing, or deserves constructor validation.
- Use
infer()for interface or abstract-class polymorphism when the concrete implementation depends on input data. - Use
registerConstructor()or#[Object\Constructor]when object creation is not a plain constructor mapping problem. - Use
registerConverter()for input value transformation andregisterTransformer()for output normalization. - For HTTP request mapping, remember route and query parameters already support
scalar casting without enabling global
allowScalarValueCasting().
Hard rules
- Do not recommend internal Valinor classes for application code.
- Do not silently widen types just to make mapping pass.
- Do not enable permissive behavior globally without an explicit reason.
- Do not forget that custom constructors, converters, transformers, and infer callbacks must stay pure and deterministic.
Delivery checklist
Before finishing, make sure the code:
- Uses public Valinor APIs only.
- Uses the exact type signature the boundary needs.
- Explains any non-default flexibility setting by the input contract.
- Handles
MappingErrorwhere invalid external input can occur. - Avoids deprecated patterns unless maintaining existing code.
This skill is self-contained and should be sufficient at runtime.