ワンクリックで
umbraco-models-builder
Trigger and inspect ModelsBuilder source generation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Trigger and inspect ModelsBuilder source generation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use csv-update to batch-modify a property across multiple documents.
Search for a data type, inspect it, and update its configuration.
Walk the content tree to find a document, update a property, and publish.
Search for documents matching a query and publish them.
Call an authenticated raw Umbraco Management API endpoint
Persistent authentication helpers
| name | umbraco-models-builder |
| description | Trigger and inspect ModelsBuilder source generation |
| metadata | {"version":"0.4.8","requires":{"bins":["umbraco"],"skills":["umbraco-shared"]}} |
PREREQUISITE: Read
../umbraco-shared/SKILL.mdfor auth, global flags, and security rules.
umbraco models-builder <command> [flags]
| Command | Description |
|---|---|
models-builder dashboard | Get dashboard: mode, modelsNamespace, outOfDate flag, last error |
models-builder status | Get out-of-date status: Current |
umbraco models-builder dashboard
| Flag | Type | Default | Description |
|---|---|---|---|
--fields | string | — | Limit response fields |
umbraco models-builder status
Safety: Always use
--dry-runfirst. Remove the flag only after verifying the dry-run output.
| Command | Description |
|---|---|
models-builder build | Trigger source generation (SourceCodeManual / SourceCodeAuto only) |
umbraco models-builder build
POSTs to /models-builder/build. Pre-checks the dashboard mode so non-source-generating modes (InMemory, Nothing) fail with a clear message instead of an opaque server error. With --wait, polls status until Current or --timeout elapses. --dry-run runs the dashboard/mode pre-checks and returns the planned POST without triggering generation.
| Flag | Type | Default | Description |
|---|---|---|---|
--dry-run | bool | false | Run dashboard/mode pre-checks and return the planned POST without triggering generation; incompatible with --wait |
--poll-interval | duration | 1s | How often to poll status when --wait is set |
--timeout | duration | 1m0s | How long to wait when --wait is set (e.g. 30s, 2m) |
--wait | bool | false | Poll status after triggering the build until it reports Current or --timeout elapses |
Safe pattern:
# 1. Dry run first
umbraco models-builder build --dry-run
# 2. Execute
umbraco models-builder build
# Browse subcommands
umbraco models-builder --help
# Inspect a specific endpoint schema
umbraco schema models-builder.<method>