ワンクリックで
umb-reset
Reset all Umbraco website work back to defaults. Use when asked to clean, reset, or undo generated Umbraco site work.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Reset all Umbraco website work back to defaults. Use when asked to clean, reset, or undo generated Umbraco site work.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Add hero images to blog posts and render image previews on list and detail pages. Use when asked to add blog media.
Ensure sufficient authored blog entries for the demo. Use when asked to generate or expand blog content.
Run the end-to-end Umbraco blogging-site demo as a Conductor multi-agent workflow. Use when asked to build the full demo site via Conductor (the orchestrated, workflow-driven variant of the umbraco-demo agent).
Create Blog List and Blog page document types and templates, plus exactly one starter blog post. Use when asked to set up blog pages in Umbraco.
Create the Umbraco home page structure, template, styling, and published root content. Use when asked to scaffold or build the home page.
Implement shared site navigation and validate rendering with Playwright. Use when asked to add or improve navigation.
| name | umb-reset |
| description | Reset all Umbraco website work back to defaults. Use when asked to clean, reset, or undo generated Umbraco site work. |
This skill may be a no-op on an already-empty site — run the Step 0 pre-check first and stop early if there is nothing to reset.
Follow the steps below in exact order. Deletion order matters — content must be removed before templates, and templates before document types.
Before deleting anything, check whether the site already looks empty:
get-all-document-types.Document types are the backbone of all content, templates, and schema, so their absence reliably indicates an empty site.
get-document-root to list root documents.move-document-to-recycle-bin with its ID.empty-recycle-bin to permanently delete all trashed documents.get-media-root to list root media items.move-media-to-recycle-bin with its ID.empty-media-recycle-bin to permanently delete all trashed media.get-template-root to list all templates.delete-template with its ID.get-all-document-types to list all document types.delete-document-type with its ID.delete-document-type-folder with its ID.get-stylesheet-root to list all stylesheets.delete-stylesheet with its path.Run the pre-built cleanup script:
& ".github/skills/umb-reset/reset-filesystem.ps1"
This script:
src/MyProject/wwwroot/css/src/MyProject/Views/Partials/ (preserves blockgrid/blocklist/singleblock).cshtml files in src/MyProject/Views/ (preserves _ViewImports.cshtml and _ViewStart.cshtml)Confirm all trees are empty:
get-document-root returns 0 itemsget-media-root returns 0 itemsget-template-root returns 0 itemsget-all-document-types returns 0 items