ワンクリックで
umb-blogposts
Ensure sufficient authored blog entries for the demo. Use when asked to generate or expand blog content.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Ensure sufficient authored blog entries for the demo. Use when asked to generate or expand blog content.
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.
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.
Run accessibility checks and fix issues until passing. Use when asked to test or improve website accessibility.
| name | umb-blogposts |
| description | Ensure sufficient authored blog entries for the demo. Use when asked to generate or expand blog content. |
Git: Before making changes, verify you are on a
develop/*branch (seegit.instructions.md).
Check how many blog posts currently exist under the Blog List page (the
umb-blog-pages step already created one). Create only enough additional
posts to reach exactly 10 total — do not exceed 10. If 10 or more
already exist, create none.
title, subtitle, content (Markdown), excerpt, and tags.create-document with the Blog Post document type ID and the Blog List page as parent.editorAlias values: Umbraco.TextBox for title/subtitle, Umbraco.MarkdownEditor for content, Umbraco.TextArea for excerpt, Umbraco.Tags for tags.create-document calls together in a single parallel tool batch, wait for them to return, then issue all publish-document calls in a single parallel batch. Parallel writes to distinct content nodes are verified safe on the LocalDB backend (no deadlocks). Only the create→publish of the same post are order-dependent (create first, then publish).Use Playwright to navigate to the Blog List page. Confirm:
After validation passes, commit all changes before considering this step done:
git add -A
git commit -m "Step 4: Blog posts — <brief summary, e.g. '10 posts authored'>"
This commit is mandatory. The step is not complete until the commit exists in the git log.