基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tmdgusya/visualize-database-internals --skill frontend-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | frontend-worker |
| description | Frontend React/TypeScript 개발자 - PostgreSQL Internals 시각화 컴포넌트 구현 |
이 스킬은 PostgreSQL Internals Visualizer 프로젝트의 React/TypeScript 프론트엔드 컴포넌트를 구현할 때 사용됩니다:
mission.md와 AGENTS.md 읽기항상 테스트를 먼저 작성합니다 (Red → Green → Refactor)
// 예: B-Tree insertion logic
describe('BTree insertion', () => {
it('should split node when full', () => {
// 테스트 작성
});
it('should maintain BST property after split', () => {
// 테스트 작성
});
});
// 예: PageStructure 컴포넌트
describe('PageStructure', () => {
it('renders initial 8KB page layout', () => {
// 테스트 작성
});
it('updates on page size slider change', async () => {
// 테스트 작성
});
});
각 기능을 수동으로 테스트:
# 개발 서버 시작
npm run dev
# 브라우저에서 검증
# - 모든 인터랙션 작동 확인
# - 애니메이션 60fps 확인
# - 반응형 레이아웃 확인
interactiveChecks에 기록:
{
"action": "Page size slider 8KB → 16KB",
"observed": "Page layout updated, byte calculations refreshed, no console errors"
}
npm run typecheck
npm run lint
npm run test
{
"salientSummary": "Implemented Page Structure visualizer with interactive 8KB page layout, tuple insertion animation, and header field tooltips. Added comprehensive tests for page calculations and component rendering.",
"whatWasImplemented": "PageStructure component with: (1) Interactive page size slider (4KB-32KB), (2) Animated tuple insertion showing line pointer growth, (3) Header field hover tooltips, (4) TID navigation game, (5) Defragmentation simulator. Includes Zustand store for page state management and utility functions for page calculations.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{"command": "npm run typecheck", "exitCode": 0, "observation": "No type errors"},
{"command": "npm run lint", "exitCode": 0, "observation": "No lint errors"},
{"command"
interface > type 선호enum 대신 union type 사용useCallback/useMemo for expensive calculations