Skip to content

docs(blog): 블로그 문체와 메타 카피 정리 - #84

Merged
dev-wooyeon merged 2 commits into
masterfrom
codex/blog-tone-structure-refresh
Mar 13, 2026
Merged

docs(blog): 블로그 문체와 메타 카피 정리#84
dev-wooyeon merged 2 commits into
masterfrom
codex/blog-tone-structure-refresh

Conversation

@dev-wooyeon

Copy link
Copy Markdown
Owner

변경 내용

  • 비시리즈 Engineering/Life 포스트 19개의 본문을 낮은 톤 해요체와 심리학 기반 구조에 맞춰 정리했어요.
  • 목록 카드 설명 원천인 meta.json을 다시 써서 카드, 검색, 피드, 포스트 메타 설명 톤을 맞췄어요.
  • Engineering/Life 소개 문구와 읽기 시간, 조회수, TOC 문구를 함께 정리했어요.

의도

  • 본문 첫 화면에서 문제 제기와 읽기 보상이 더 빨리 보이게 만들기 위함이에요.
  • 목록과 본문 밖 UI까지 같은 문체 기준으로 묶어서 읽기 경험의 일관성을 높이기 위함이에요.

영향 범위

  • posts/*/index.mdx
  • posts/*/meta.json
  • src/features/blog/ui/pages/*
  • src/features/blog/ui/components/*
  • 관련 Vitest 테스트

검증

  • npm run build
  • npx vitest run src/features/blog/ui/components/ViewCounter.test.tsx src/features/blog/ui/components/PostCard.test.tsx src/features/blog/ui/pages/EngineeringPage.test.tsx src/features/blog/ui/pages/LifePage.test.tsx src/features/blog/ui/pages/EngineeringPageClient.test.tsx
  • 다크/라이트 모드 확인
  • 모바일/데스크톱 확인

체크리스트

  • 작업 단위 브랜치(codex/<task>)에서 진행함
  • 커밋 메시지 규칙(<type>: <한국어 설명>) 준수
  • 관련 이슈/PR 링크를 본문에 연결함 (별도 이슈 없음)

@vercel

vercel Bot commented Mar 12, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
eunu-log Ready Ready Preview, Comment Mar 13, 2026 0:23am

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: e9d3462e08

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

});
}

const child = runAutorunCommand(payload);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Acquire autorun lock atomically before spawning process

Two webhook requests arriving at nearly the same time can both pass the readLockFile() check and both execute runAutorunCommand(...) because the lock file is only written after spawning; this defeats the single-run guard and can launch overlapping codex runs that race on the same repo. This is most visible under bursty annotation.add events in development, and it should be fixed by creating the lock with an exclusive operation before process spawn (or using a mutex) so only one request can proceed.

Useful? React with 👍 / 👎.

}) {
const { seriesId } = await params;

return <EngineeringSeriesPage seriesId={decodeURIComponent(seriesId)} />;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Avoid double-decoding dynamic series route params

Dynamic route params are already decoded by Next.js, so decoding seriesId again can throw URIError for valid encoded inputs that resolve to % (for example /engineering/series/%25), turning what should be a normal not-found path into a 500 response. Passing the param through without a second decodeURIComponent avoids this crash path.

Useful? React with 👍 / 👎.

비시리즈 Engineering/Life 글의 본문을 낮은 톤 해요체로 정리했어요.
도입과 전환, 정리 문장을 다시 구성해서 첫 화면의 문제 제기와 읽기 보상이 보이도록 맞췄어요.
Engineering/Life 목록 소개와 포스트 메타 카피를 낮은 톤 해요체로 맞췄어요.
카드 설명 원천인 meta.json과 읽기 시간, 조회수, 목차 문구를 함께 정리하고 관련 테스트도 갱신했어요.
@dev-wooyeon
dev-wooyeon force-pushed the codex/blog-tone-structure-refresh branch from d920b88 to b331884 Compare March 13, 2026 12:20
@dev-wooyeon
dev-wooyeon merged commit 1785b05 into master Mar 13, 2026
2 of 3 checks passed
@dev-wooyeon
dev-wooyeon deleted the codex/blog-tone-structure-refresh branch April 13, 2026 06:33
dev-wooyeon added a commit that referenced this pull request Jul 24, 2026
…resh

docs(blog): 블로그 문체와 메타 카피 정리
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant