ワンクリックで
management-edit-breadcrumbs
New and Edit pages in management-web should use breadcrumbs so users can see where they are and navigate back.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
New and Edit pages in management-web should use breadcrumbs so users can see where they are and navigate back.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
When changing API routes, auth, or env-dependent behavior, add or update the corresponding integration tests and keep the test file layout consistent.
When adding or changing files under infra/k8s/ or sync targets for k8s, know what Argo CD syncs and remind the user to push to Git so the cluster can sync.
Keeps tools/generate-data seeders and docs in sync when main or management DB schema or ORM entities change. Use when adding or changing tables/entities in packages/orm, packages/management-orm, or infra database migrations.
When changing DB schema or permission dimensions, consider predefined roles and bucket_role / role-related code.
Use when adding or changing environment variables, infra/env/classification YAML, scripts/env-classification, K8s env render, or local env generation.
Common patterns for the Boilerplate HTTP API (Express)
| name | management-edit-breadcrumbs |
| description | New and Edit pages in management-web should use breadcrumbs so users can see where they are and navigate back. |
When to use: When adding or changing New or Edit pages in management-web (e.g. new resource pages, edit resource pages).
Every New and Edit page should show breadcrumbs so users can see their position in the hierarchy and navigate back:
ContentPageLayout from @boilerplate/ui with a breadcrumbs prop.BreadcrumbItem[]: list route (link) → optional view/resource link → current page label (no href for last item).Breadcrumbs and Link from @boilerplate/ui; pass a LinkComponent that wraps Link (e.g. a small BreadcrumbLink that forwards href, children, className).contentMaxWidth="form" on ContentPageLayout for form pages.apps/management-web/src/app/(main)/user/[id]/edit/page.tsxpage.tsx files.apps/management-web/src/app/(main)/bucket/[id]/messages/[messageId]/edit/page.tsx (fetches bucket + ancestry for breadcrumbs).BucketSettingsLayoutClient.