feat: update main chat and system chat UI

This commit is contained in:
2026-05-25 17:26:37 +09:00
parent fb5ec649cd
commit f59522ffc4
120 changed files with 43262 additions and 3325 deletions

View File

@@ -0,0 +1,24 @@
import type { SampleMeta } from '../../../widgets/core';
import { ExecutorActivityCardSample } from '../sampleShared';
export const sampleMeta: SampleMeta = {
id: 'chat-activity-executor-verification',
componentId: 'chat-activity-executor-verification',
title: 'Chat Activity Executor Verification',
description: '검증 단계 실행기 문구 샘플입니다.',
category: 'Chat',
kind: 'feature',
order: 13,
features: ['component-sample'],
};
export function Sample() {
return (
<ExecutorActivityCardSample
title="검증 문구"
focus="시스템 Plan 체크리스트 문구 개선"
command="npm run capture:component -- chat-activity-executor-verification 2026-05-18"
description="스크린샷 캡처나 최종 확인 단계는 검증 문구로 명확하게 구분합니다."
/>
);
}