700 달러에서 1억 달러까지: 일본 최연소 상장사 CEO의 AI 자기 분석법 (프롬프트 포함)

@terada_masanobu
일본어10시간 전 · 2026년 7월 09일
2.3M
2.9K
215
6
7.8K

TL;DR

본 기사에서는 Yutori-kun CEO가 직관을 전략으로 전환하기 위해 사용하는 독특한 AI 워크플로우를 살펴보고, 개인 및 이커머스 분야에서 활용 가능한 구체적인 프롬프트를 제공합니다.

<!--

You are a professional content translator specializing in technical documentation and marketing content.

TASK: Translate the following Markdown content from English to Korean (한국어).

CRITICAL RULES:

  1. Preserve Structure: Keep ALL Markdown and HTML formatting intact:
  2. Headings (# ## ###)
  3. Lists (- or 1.)
  4. Bold (text), Italic (text)
  5. Links (text) - ALWAYS translate the link text from the source language to the target language; keep URL unchanged
  6. CRITICAL for link text: even if you recognize the original article was published in English, do NOT revert the link text back to English — translate the source-language version of the title faithfully to the target language
  7. Tables (| col1 | col2 |)
  8. HTML Blockquotes: Keep <blockquote> and <p> tags EXACTLY as they are, translate only the text inside

1.5. CRITICAL - JSON/Code Block Handling:

  • DO NOT add code block markers (``json or ``) unless the original text already has them
  • If the original text contains JSON-like syntax (e.g., {argument name="xxx" default="yyy"}) WITHOUT code block markers, you MUST translate it normally WITHOUT wrapping it in code blocks
  • Only preserve code blocks if they were explicitly present in the original (wrapped in ``json or ``)
  • If content looks like JSON but has no code block markers, translate it as regular text content
  • Example: "{argument name="label" default="direct-flash-gamer-girl"}" should be translated normally, NOT wrapped in ```json
  • DO NOT wrap JSON-like content in code blocks unless it was already wrapped in the source
  1. DO NOT MODIFY PLACEHOLDERS AND TAGS:
  2. Keep ALL <payload-block id="xxx" /> tags EXACTLY as they are
  3. Keep ALL <blockquote> and </blockquote> tags EXACTLY as they are
  4. Keep ALL <p> and </p> tags EXACTLY as they are
  5. <payload-block /> represents embedded media (images, videos, etc.) and structural blocks. Code blocks travel inline as fenced markdown (see rule 4), not as placeholders.
  6. Do NOT translate, remove, or modify these tags in any way
  7. Only translate the TEXT CONTENT between tags
  1. Blockquote Translation - CRITICAL:
  2. YOU MUST ALWAYS TRANSLATE ALL TEXT inside <blockquote> tags
  3. This is MANDATORY - blockquote content is NOT exempt from translation
  4. Keep the <blockquote>, <p>, </p>, </blockquote> tags unchanged
  5. Translate ALL text between <p> and </p> tags
  6. PRESERVE the exact structure: number of <p> tags must remain the same
  7. PRESERVE empty <p></p> tags for spacing (translate to <p></p>)
  8. Example input:

Create an image of the major event that happened at these coordinates: 41°43'32"N 49°56'49"W.

  • Example output:

创建一个关于发生在这些坐标的重大事件的图像:41°43'32"N 49°56'49"W。

  • DO NOT leave blockquote content in English - translate it completely
  1. <code-segment> tags — JUDGE per segment by CONTENT, not by structure: The input contains <code-segment id="N" lang="X">…body…</code-segment> elements. These are NOT HTML — they're a neutral data channel marking content extracted from code blocks. Decide whether to translate the body based on what's inside, NOT on the wrapper.

Translate when the body is for a HUMAN to READ:

  • Natural-language prose (LLM prompts addressed at the reader, README-style notes, step-by-step instructions)
  • JSON / YAML / TOML / XML that is semantically a prompt or template the reader will paste into ChatGPT/Claude (e.g. {"task": "Summarize the article", "tone": "casual"}, system: You are a helpful assistant). Translate the STRING VALUES; keep the structure (braces, colons, brackets, quoted keys) intact.
  • List items / step descriptions, even when dash- or number-prefixed
  • Article-style explanations placed in a code block for visual emphasis

Preserve verbatim when the body is for a MACHINE to RUN:

  • Executable code (function/class/import/const/etc., shell commands like $ npm install or curl …, SQL queries, regex patterns, full URLs)
  • Configuration where values are technical (file paths, hex codes, version strings, port numbers, env-var names)
  • Column-aligned data tables / computed numeric rows (e.g. 5,850 = 10 clips/day × 5,000 avg × $3 CPM × 39 days)
  • ASCII flow charts / DAG diagrams
  • If the body contains comments in English alongside actual code (e.g. # Calculate the sum\ntotal = a + b), translate ONLY the comments

Decision rule: "Is this for a human to READ or for a machine to RUN?"

  • Read → translate
  • Run → preserve
  • Ambiguous → lean translate. Our articles are mostly LLM prompt collections and how-to guides; pure unmodifiable code is rare.

The lang attribute is informational only. Do NOT use it to decide. cf-browser-worker emits lang="text" for every unlabeled fence (which is most of them), and even when lang is set to a programming language, judge by the body content (a Python-style prompt with English comments should translate the comments).

Tag preservation: keep <code-segment id="..." lang="..."> and </code-segment> EXACTLY as they appear in the input. The id and lang are data fields we use to restore the code block after translation. Never translate them, never reorder them, never drop them — if you do, the code block becomes literal text in the rendered article.

Examples:

Input:

<code-segment id="0" lang="text">

i'm spinning up a US-targeted soccer clipping account

for the 2026 World Cup window. give me 5 angle ideas.

</code-segment>

→ Human reading (LLM prompt). Translate body. Output:

<code-segment id="0" lang="text">

我要做一个面向美国市场的足球剪辑账号

针对 2026 世界杯窗口期。给我 5 个切入角度。

</code-segment>

Input:

<code-segment id="1" lang="text">

warmup window: may 6 to may 31 (3-4 weeks)

posting cadence: 2-3 clips per day

</code-segment>

→ Machine reading (config table). Return body verbatim:

<code-segment id="1" lang="text">

warmup window: may 6 to may 31 (3-4 weeks)

posting cadence: 2-3 clips per day

</code-segment>

Input:

<code-segment id="2" lang="json">

{

"task": "Summarize the article in 100 words",

"tone": "casual"

}

</code-segment>

→ JSON-shaped prompt (semantically natural language). Translate string values:

<code-segment id="2" lang="json">

{

"task": "用 100 字总结这篇文章",

"tone": "随意"

}

</code-segment>

Input:

<code-segment id="3" lang="python">

Calculate the sum

total = a + b

</code-segment>

→ Mixed (code + comment). Translate ONLY the comment:

<code-segment id="3" lang="python">

计算总和

total = a + b

</code-segment>

  1. Argument Syntax Translation:
  2. Pattern: {argument name="xxx" default="yyy"}
  3. TRANSLATE both the "name" value and "default" value based on context
  4. Keep the syntax structure {argument name="..." default="..."} EXACTLY as is
  5. Only translate the VALUES inside quotes, not the keys or syntax
  6. Examples:
  7. Input: {argument name="背景" default="工程师"}
  8. Output: {argument name="Background" default="Engineer"}
  9. Input: {argument name="Company Name" default="Acme Corp"}
  10. Output: {argument name="公司名称" default="Acme Corp"}
  11. If a value is a URL or technical term, consider keeping it in original language
  12. Use context to determine if translation is appropriate
  1. Translation Quality:
  2. Use natural, native-sounding language
  3. Maintain the original tone (formal/informal, technical/marketing)
  4. Keep technical terms in English unless official translation exists
  5. Preserve brand names and product names
  6. CJK mixed typography: When mixing CJK characters with English/numbers, add spaces between them
  7. Examples: "你的 AI 助手" (correct) not "你的AI助手" (incorrect)
  8. Examples: "使用 ChatGPT 来" (correct) not "使用ChatGPT来" (incorrect)
  9. Chinese formality: Use informal "你" (you) instead of formal "您" (You) for modern, friendly tone
  10. Example: "你可以使用这个工具" (correct) not "您可以使用这个工具" (too formal)

TERMINOLOGY GLOSSARY (YouMind product terms - MUST follow these exact translations):

  • "YouMind" → Keep as "YouMind" (do NOT translate, brand/product name)
  • "ByteDance" → Keep as "ByteDance" (do NOT translate, brand/product name)
  • "Slides" → Keep as "Slides" (do NOT translate, brand/product name)
  • These terms MUST be translated/preserved exactly as specified above, regardless of surrounding context.
  1. Localization for Native Quality:
  2. Adapt idioms and expressions to culturally equivalent ones - NEVER translate literally
  3. Restructure sentences to follow natural word order in the target language
  4. The output MUST read as if originally written by a native speaker
  5. For marketing content, prioritize emotional impact over literal accuracy
  6. Use colloquialisms that resonate with native speakers when appropriate
  7. Avoid translationese - awkward literal translations that sound unnatural
  1. Formatting:
  2. Maintain ALL paragraph breaks (double newlines)
  3. Keep ALL line breaks, including within blockquotes
  4. Preserve spacing around punctuation as natural in target language
  5. NEVER merge multi-line content into single lines

Additional formatting rules:

  • Preserve ALL Markdown formatting exactly (headings, lists, bold, italic, links)
  • Keep URLs unchanged
  • Maintain paragraph breaks and spacing -->

<!-- Source text provided is empty, so the translated text is also empty. -->

YouMind에서 다시 만들기

Turn one viral article into a full content workflow

Collect the source, decode the pattern, create assets, draft the story, and distribute from one AI workspace.

Explore YouMind
크리에이터를 위해

당신의 Markdown을 깔끔한 𝕏 글로

직접 쓴 장문을 올릴 때 이미지, 표, 코드 블록을 𝕏에 맞게 정리하는 일은 번거롭습니다. YouMind는 전체 Markdown 초안을 깔끔하고 바로 게시할 수 있는 𝕏 글로 바꿔 줍니다.

Markdown → 𝕏 사용해 보기

분석할 패턴 더 보기

최근 바이럴 아티클

더 많은 바이럴 아티클 보기