FOSMVVM Fluent DataModel Generator

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only skill appears to generate expected Swift Fluent model and migration code, but users should review generated database migrations before applying them.

Install/use this skill if you want a code-generation assistant for FOSMVVM Fluent persistence. Before running generated migrations, review the table names, fields, relationships, seed data, and revert behavior, especially for any environment connected to real data.

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

The agent may create or update files that define server-side database behavior.

Why it was flagged

The skill is intended to cause source-code changes, including database migration files. That is expected for its purpose, but it is still a material project modification users should review.

Skill content
Scaffolds models, migrations, and tests for database-backed entities.
Recommendation

Review the generated model, migration, and test files before committing them or running migrations.

What this means

If generated migrations are run without review, schema or relationship mistakes could affect application data structures.

Why it was flagged

The migration template includes schema deletion on revert. This is normal migration behavior and not automatically executed by the skill, but an incorrect generated migration could affect database state if applied.

Skill content
func revert(on database: any Database) async throws { try await database.schema({Model}.schema).delete() }
Recommendation

Inspect migration prepare and revert logic carefully, especially before applying it to shared, staging, or production databases.