체계적 컨텍스트 분리 - 역할별 파일과 효율적 관리 방법
핵심 원칙: AI 작업 시 일관된 품질과 효율성을 보장하는 기본 가이드라인
작업 워크플로: 파일 변경부터 S3 배포까지의 표준화된 프로세스
aws s3api put-object \
--profile shared-service \
--bucket ai-seminar-materials-demo \
--key "pages/[파일명].html" \
--body "/path/to/file.html" \
--content-type "text/html" \
--cache-control "no-cache, no-store, must-revalidate"
히스토리 관리: 모든 사용자 요청을 시간순으로 체계적 기록하는 프롬프트 히스토리 시스템
<div class="section" id="[작업-id]">
<h2>🎯 2025년 [월] [일] [시간] - [작업 제목]</h2>
<h3>사용자 프롬프트</h3>
<blockquote>"[실제 사용자 입력]"</blockquote>
<h3>요구사항 분석</h3>
<ul>
<li><strong>[핵심 요구사항 1]</strong>: [분석 내용]</li>
</ul>
<div class="alert alert-success">
<strong>✅ 실행 결과</strong>: [완료된 작업 요약]
</div>
</div>
대량 작업: "묻지 말고 모두 진행" 지시 시 연속 작업 및 배치 처리 방법
# 28개 링크 일괄 수정 사례 (2025-09-26)
for file in *.html; do
# 매핑 테이블 기반 자동 수정
sed -i 's/old-link/new-link/g' "$file"
done
# S3 배치 업로드
for file in *.html; do
aws s3api put-object \
--profile shared-service \
--bucket ai-seminar-materials-demo \
--key "pages/$file" \
--body "$file" \
--cache-control "no-cache"
done
효율성 팁: 실제 프로젝트에서 검증된 AI 작업 효율화 방법들