框架核心工程师 ORM与数据模型
AdvisoryAudited by Static analysis on May 8, 2026.
Overview
No suspicious patterns detected.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Using the skill could lead to database schema or query-behavior changes that affect application data paths.
The skill directs the agent to make ORM/schema changes and run an upgrade command. This is central to the stated purpose, but it can modify database behavior if applied.
Update model annotations, indexes, providers, or query flows in the owning framework path. ... Run `php bin/w setup:upgrade` when schema annotations change.
Review code diffs, confirm the target environment, and require backup or approval before running schema upgrade commands against shared or production databases.
An incorrect ORM or schema change could break dependent modules or shared data contracts.
The skill explicitly covers cross-module data contracts, so mistakes in schema or provider changes may propagate to downstream modules. The artifact also includes a mitigation by requiring compatibility reporting.
Use when a schema or data-model change affects framework conventions beyond one feature branch. ... Report any compatibility impact on downstream modules.
Run focused regression tests and review downstream compatibility notes before merging or deploying changes.
