Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/content/prompts/architecture-design.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AI는 제품 요구사항을 만족할 수 있는 기술 구조를 설계해야

# 프롬프트

````prompt
````text
Generate ARCHITECTURE.md.

Assume PRODUCT_SPEC.md already exists and is correct.
Expand Down
2 changes: 1 addition & 1 deletion src/content/prompts/execution-validation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ AI는 구현 결과를 PRODUCT_SPEC.md, ARCHITECTURE.md, TASKS.md와 비교하

# 프롬프트

````prompt
````text
Review the following documents together:

- PRODUCT_SPEC.md
Expand Down
2 changes: 1 addition & 1 deletion src/content/prompts/idea-refinement.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AI는 결론을 내리기 전에 질문부터 해야 한다.

## 프롬프트

```prompt
```text
# Ideas Prompt

Generate IDEAS.md from this conversation.
Expand Down
2 changes: 1 addition & 1 deletion src/content/prompts/pitch-creation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ AI는 프로젝트를 처음 접하는 사람도 이해할 수 있도록 프로

## 프롬프트

```prompt
```text
Generate PITCHING_SCRIPT.md from:

- IDEAS.md
Expand Down
2 changes: 1 addition & 1 deletion src/content/prompts/product-specification.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AI는 프로젝트의 목적을 기반으로 제품 관점에서 요구사항을

## 프롬프트

````prompt
````text
Generate PRODUCT_SPEC.md.

Assume all product discovery and idea validation are already complete.
Expand Down
2 changes: 1 addition & 1 deletion src/content/prompts/task-generation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ AI는 PRODUCT_SPEC.md와 ARCHITECTURE.md 요구사항을 지키는 TASKS를 체

## Prompt

````prompt
````text
# TASKS_PROMPT.md

Generate TASKS.md.
Expand Down
6 changes: 3 additions & 3 deletions src/content/resources/planning-examples.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ docs/

### 토론 시작

```prompt
```text
나는 새로운 프로젝트를 검토하려고 한다.

문서를 바로 작성하지 마라.
Expand All @@ -41,15 +41,15 @@ IDEAS.md를 작성하라는 명시적인 요청 전까지는 문서를 생성하

### 토론 끝

```prompt
```text
지금까지의 토론 내용을 바탕으로 IDEAS.md를 작성해줘.

문서를 만들기 전에 추가로 확인해야 할 중요한 질문이 있다면 먼저 질문해줘.
```

## PITCHING_SCRIPT.md 만들기

```prompt
```text
지금까지의 토론 내용을 바탕으로 PITCHING_SCRIPT.md를 작성하라.

이 문서는 사업가, 파트너, 미래의 나를 설득하기 위한 문서다.
Expand Down
2 changes: 1 addition & 1 deletion src/content/resources/templates.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Then stop.

이 문서를 만들기 위해서 Chat AI에게 아래와 같은 프롬프트를 입력합니다.

```prompt
```text
나는 새로운 프로젝트 아이디어를 검토하려고 한다.

지금은 문서를 만들지 말고 Discussion Mode로 동작해라.
Expand Down
Loading