gen-dashboard
스타10
포크0
업데이트2026년 4월 5일 17:55
Generate dashboard page with Recent blocks for each entity from brief
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Generate dashboard page with Recent blocks for each entity from brief
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | gen-dashboard |
| description | Generate dashboard page with Recent blocks for each entity from brief |
| agent | _builder |
| argument-hint |
Creates or updates the dashboard page with:
src/routes/_authenticated/dashboard.tsx or index.tsx)useEffect// For each entity:
<Card className="p-4">
<div className="flex items-center justify-between mb-3">
<h3 className="font-semibold">Recent <Entities></h3>
<Link to="/<entities>">View all</Link>
</div>
{items.slice(0, 5).map(item => (
<div key={item.public_id} className="flex justify-between py-2 border-b last:border-0">
<span>{item.<primary_field>}</span>
<Badge>{item.status}</Badge>
</div>
))}
{items.length === 0 && <p className="text-muted-foreground text-sm">No <entities> yet</p>}
</Card>
Token-only design polish for landing: accent scale check, optional font / radius overrides in design.ts
Fill packages/landing/src/content/site.ts from brief.md. The landing template already ships to the venture via platform-modules in bootstrap Step 1 — this skill only populates content.
Frontend development task
Apply color palette, typography, logo, and visual branding from brief
Remove sample entities and UI not present in the brief
Generate one complete entity vertical slice (backend + frontend)