← スキル一覧に戻る

translate-extract
by gjohnsx
⭐ 0🍴 0📅 2026年1月19日
SKILL.md
name: translate-extract description: Extract all Fitzgerald quotes from the metaphor analysis essay with chapter references. Use as the first step in the translation pipeline.
/translate-extract
Extract all Fitzgerald quotes from the metaphor analysis essay with chapter references.
Purpose
Create a structured registry of all direct Fitzgerald quotes used in analysis.md, enabling accurate lookup of official translations in the subsequent pipeline phase.
Input
mip-analysis/essay/analysis.md— Main essay containing embedded Fitzgerald quotes
Output
translations/quote-registry.json— Structured quote registry
Output Format
{
"metadata": {
"source_file": "mip-analysis/essay/analysis.md",
"extraction_date": "YYYY-MM-DD",
"quote_count": <number>
},
"quotes": [
{
"id": "Q001",
"text": "exact quote text",
"chapter": 1,
"citation": "(Fitzgerald, Ch. 1)",
"context": "surrounding sentence or phrase for disambiguation",
"section": "essay section where quote appears"
}
]
}
Extraction Rules
- Identify quotes: Look for text in double quotes followed by
(Fitzgerald, Ch. X) - Preserve exact text: Include all punctuation, ellipses, and formatting
- Record chapter: Parse the chapter number from the citation
- Capture context: Include 10-20 words before the quote for disambiguation
- Note section: Record which essay section (Introduction, DESIRE IS LIGHT, etc.)
Execution Steps
- Read
mip-analysis/essay/analysis.md - Parse all Fitzgerald quotes using pattern:
"[^"]+" \(Fitzgerald, Ch\. \d\) - For each quote:
- Extract exact text (including internal punctuation)
- Parse chapter number
- Capture surrounding context
- Identify essay section
- Generate sequential IDs (Q001, Q002, ...)
- Write structured JSON to
translations/quote-registry.json
Verification
After extraction, report:
- Total quote count
- Distribution by chapter
- Any quotes with ambiguous chapter references
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です