From ba59e1f0d1caa49cc91f0159384e042fba234732 Mon Sep 17 00:00:00 2001 From: Samgu Lee Date: Sat, 13 Jun 2026 02:50:11 +0900 Subject: [PATCH 1/2] fix: sitemap URL Generation Issue (`/index/` trailing) --- astro.config.mjs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 39ad9b5..ae5eaec 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -11,7 +11,14 @@ export default defineConfig({ integrations: [ mdx(), pagefind(), - sitemap(), + sitemap({ + serialize(item) { + if (item.url.endsWith('/index/')) { + item.url = item.url.replace('/index/', '/'); + } + return item; + }, + }), astroBrokenLinksChecker({ throwError: true, checkExternalLinks: false, From d8d9b6ebfcc7bf114d44c7bbf42f521d7aab605e Mon Sep 17 00:00:00 2001 From: Samgu Lee Date: Sat, 13 Jun 2026 02:50:29 +0900 Subject: [PATCH 2/2] fix: shiki Code Block Warning during Build --- src/content/prompts/architecture-design.mdx | 2 +- src/content/prompts/execution-validation.mdx | 2 +- src/content/prompts/idea-refinement.mdx | 2 +- src/content/prompts/pitch-creation.mdx | 2 +- src/content/prompts/product-specification.mdx | 2 +- src/content/prompts/task-generation.mdx | 2 +- src/content/resources/planning-examples.mdx | 6 +++--- src/content/resources/templates.mdx | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/content/prompts/architecture-design.mdx b/src/content/prompts/architecture-design.mdx index 329ae1f..1bc66b5 100644 --- a/src/content/prompts/architecture-design.mdx +++ b/src/content/prompts/architecture-design.mdx @@ -35,7 +35,7 @@ AI는 제품 요구사항을 만족할 수 있는 기술 구조를 설계해야 # 프롬프트 -````prompt +````text Generate ARCHITECTURE.md. Assume PRODUCT_SPEC.md already exists and is correct. diff --git a/src/content/prompts/execution-validation.mdx b/src/content/prompts/execution-validation.mdx index a53adf0..c7afd16 100644 --- a/src/content/prompts/execution-validation.mdx +++ b/src/content/prompts/execution-validation.mdx @@ -39,7 +39,7 @@ AI는 구현 결과를 PRODUCT_SPEC.md, ARCHITECTURE.md, TASKS.md와 비교하 # 프롬프트 -````prompt +````text Review the following documents together: - PRODUCT_SPEC.md diff --git a/src/content/prompts/idea-refinement.mdx b/src/content/prompts/idea-refinement.mdx index 61b6e48..d657e81 100644 --- a/src/content/prompts/idea-refinement.mdx +++ b/src/content/prompts/idea-refinement.mdx @@ -35,7 +35,7 @@ AI는 결론을 내리기 전에 질문부터 해야 한다. ## 프롬프트 -```prompt +```text # Ideas Prompt Generate IDEAS.md from this conversation. diff --git a/src/content/prompts/pitch-creation.mdx b/src/content/prompts/pitch-creation.mdx index 96df496..e802ff0 100644 --- a/src/content/prompts/pitch-creation.mdx +++ b/src/content/prompts/pitch-creation.mdx @@ -33,7 +33,7 @@ AI는 프로젝트를 처음 접하는 사람도 이해할 수 있도록 프로 ## 프롬프트 -```prompt +```text Generate PITCHING_SCRIPT.md from: - IDEAS.md diff --git a/src/content/prompts/product-specification.mdx b/src/content/prompts/product-specification.mdx index 7af6d91..03beb75 100644 --- a/src/content/prompts/product-specification.mdx +++ b/src/content/prompts/product-specification.mdx @@ -35,7 +35,7 @@ AI는 프로젝트의 목적을 기반으로 제품 관점에서 요구사항을 ## 프롬프트 -````prompt +````text Generate PRODUCT_SPEC.md. Assume all product discovery and idea validation are already complete. diff --git a/src/content/prompts/task-generation.mdx b/src/content/prompts/task-generation.mdx index b58c049..a94f26c 100644 --- a/src/content/prompts/task-generation.mdx +++ b/src/content/prompts/task-generation.mdx @@ -31,7 +31,7 @@ AI는 PRODUCT_SPEC.md와 ARCHITECTURE.md 요구사항을 지키는 TASKS를 체 ## Prompt -````prompt +````text # TASKS_PROMPT.md Generate TASKS.md. diff --git a/src/content/resources/planning-examples.mdx b/src/content/resources/planning-examples.mdx index 597e8f6..5c3dbe5 100644 --- a/src/content/resources/planning-examples.mdx +++ b/src/content/resources/planning-examples.mdx @@ -17,7 +17,7 @@ docs/ ### 토론 시작 -```prompt +```text 나는 새로운 프로젝트를 검토하려고 한다. 문서를 바로 작성하지 마라. @@ -41,7 +41,7 @@ IDEAS.md를 작성하라는 명시적인 요청 전까지는 문서를 생성하 ### 토론 끝 -```prompt +```text 지금까지의 토론 내용을 바탕으로 IDEAS.md를 작성해줘. 문서를 만들기 전에 추가로 확인해야 할 중요한 질문이 있다면 먼저 질문해줘. @@ -49,7 +49,7 @@ IDEAS.md를 작성하라는 명시적인 요청 전까지는 문서를 생성하 ## PITCHING_SCRIPT.md 만들기 -```prompt +```text 지금까지의 토론 내용을 바탕으로 PITCHING_SCRIPT.md를 작성하라. 이 문서는 사업가, 파트너, 미래의 나를 설득하기 위한 문서다. diff --git a/src/content/resources/templates.mdx b/src/content/resources/templates.mdx index 978a31e..04244c1 100644 --- a/src/content/resources/templates.mdx +++ b/src/content/resources/templates.mdx @@ -145,7 +145,7 @@ Then stop. 이 문서를 만들기 위해서 Chat AI에게 아래와 같은 프롬프트를 입력합니다. -```prompt +```text 나는 새로운 프로젝트 아이디어를 검토하려고 한다. 지금은 문서를 만들지 말고 Discussion Mode로 동작해라.