框架核心工程师 ORM与数据模型

ReviewAudited by ClawScan on May 8, 2026.

Overview

This instruction-only ORM/database engineering skill is coherent and purpose-aligned, but users should review schema upgrades and query changes before applying them.

Install only if you want the agent to help with ORM/schema/query-provider engineering. Before accepting its changes, review the database-impacting diffs, run tests, confirm the target database/environment, and avoid running schema upgrades on shared or production systems without approval and backups.

Findings (2)

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.

What this means

Using the skill could lead to database schema or query-behavior changes that affect application data paths.

Why it was flagged

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.

Skill content
Update model annotations, indexes, providers, or query flows in the owning framework path. ... Run `php bin/w setup:upgrade` when schema annotations change.
Recommendation

Review code diffs, confirm the target environment, and require backup or approval before running schema upgrade commands against shared or production databases.

What this means

An incorrect ORM or schema change could break dependent modules or shared data contracts.

Why it was flagged

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.

Skill content
Use when a schema or data-model change affects framework conventions beyond one feature branch. ... Report any compatibility impact on downstream modules.
Recommendation

Run focused regression tests and review downstream compatibility notes before merging or deploying changes.