md2cv 1.1.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.ja.md +69 -1
- package/README.md +77 -11
- package/dist/cli/index.d.ts +17 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +140 -34
- package/dist/cli/index.js.map +1 -1
- package/dist/generator/common.d.ts +86 -0
- package/dist/generator/common.d.ts.map +1 -0
- package/dist/generator/common.js +326 -0
- package/dist/generator/common.js.map +1 -0
- package/dist/generator/index.d.ts +39 -12
- package/dist/generator/index.d.ts.map +1 -1
- package/dist/generator/index.js +65 -41
- package/dist/generator/index.js.map +1 -1
- package/dist/generator/resume_en.d.ts +4 -15
- package/dist/generator/resume_en.d.ts.map +1 -1
- package/dist/generator/resume_en.js +23 -319
- package/dist/generator/resume_en.js.map +1 -1
- package/dist/generator/resume_ja.d.ts +4 -15
- package/dist/generator/resume_ja.d.ts.map +1 -1
- package/dist/generator/resume_ja.js +18 -260
- package/dist/generator/resume_ja.js.map +1 -1
- package/dist/generator/rirekisho/components.d.ts.map +1 -1
- package/dist/generator/rirekisho/components.js +1 -1
- package/dist/generator/rirekisho/components.js.map +1 -1
- package/dist/generator/rirekisho/index.js.map +1 -1
- package/dist/generator/rirekisho/layout.d.ts.map +1 -1
- package/dist/generator/rirekisho/layout.js +16 -7
- package/dist/generator/rirekisho/layout.js.map +1 -1
- package/dist/generator/rirekisho/styles.d.ts.map +1 -1
- package/dist/generator/rirekisho/styles.js +9 -14
- package/dist/generator/rirekisho/styles.js.map +1 -1
- package/dist/generator/rirekisho/types.d.ts +2 -2
- package/dist/generator/rirekisho/types.d.ts.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/parser/index.d.ts.map +1 -1
- package/dist/parser/index.js +224 -107
- package/dist/parser/index.js.map +1 -1
- package/dist/parser/lsp.d.ts +58 -0
- package/dist/parser/lsp.d.ts.map +1 -0
- package/dist/parser/lsp.js +265 -0
- package/dist/parser/lsp.js.map +1 -0
- package/dist/template/definitions/en.d.ts +17 -0
- package/dist/template/definitions/en.d.ts.map +1 -0
- package/dist/template/definitions/en.js +204 -0
- package/dist/template/definitions/en.js.map +1 -0
- package/dist/template/definitions/index.d.ts +6 -0
- package/dist/template/definitions/index.d.ts.map +1 -0
- package/dist/template/definitions/index.js +6 -0
- package/dist/template/definitions/index.js.map +1 -0
- package/dist/template/definitions/ja.d.ts +17 -0
- package/dist/template/definitions/ja.d.ts.map +1 -0
- package/dist/template/definitions/ja.js +243 -0
- package/dist/template/definitions/ja.js.map +1 -0
- package/dist/template/generator.d.ts +61 -0
- package/dist/template/generator.d.ts.map +1 -0
- package/dist/template/generator.js +219 -0
- package/dist/template/generator.js.map +1 -0
- package/dist/template/index.d.ts +6 -0
- package/dist/template/index.d.ts.map +1 -0
- package/dist/template/index.js +6 -0
- package/dist/template/index.js.map +1 -0
- package/dist/types/config.d.ts +126 -15
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/config.js +94 -1
- package/dist/types/config.js.map +1 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/position.d.ts +42 -0
- package/dist/types/position.d.ts.map +1 -0
- package/dist/types/position.js +32 -0
- package/dist/types/position.js.map +1 -0
- package/dist/types/result.d.ts.map +1 -1
- package/dist/types/result.js.map +1 -1
- package/dist/types/sections.d.ts +39 -24
- package/dist/types/sections.d.ts.map +1 -1
- package/dist/types/sections.js +30 -2
- package/dist/types/sections.js.map +1 -1
- package/dist/types/template.d.ts +68 -0
- package/dist/types/template.d.ts.map +1 -0
- package/dist/types/template.js +12 -0
- package/dist/types/template.js.map +1 -0
- package/dist/validator/index.d.ts.map +1 -1
- package/dist/validator/index.js +1 -2
- package/dist/validator/index.js.map +1 -1
- package/examples/example-cv-ja.md +1 -1
- package/package.json +53 -5
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English template definitions
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* English frontmatter field templates
|
|
6
|
+
*/
|
|
7
|
+
export const EN_FRONTMATTER_FIELDS = [
|
|
8
|
+
{
|
|
9
|
+
key: 'name',
|
|
10
|
+
example: 'John Doe',
|
|
11
|
+
description: 'Your full name as it should appear on the CV',
|
|
12
|
+
required: true,
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
key: 'email_address',
|
|
16
|
+
example: 'john.doe@example.com',
|
|
17
|
+
description: 'Your primary email address for professional contact',
|
|
18
|
+
required: true,
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
key: 'phone_number',
|
|
22
|
+
example: '+1-555-123-4567',
|
|
23
|
+
description: 'Your phone number with country code',
|
|
24
|
+
required: true,
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
key: 'home_address',
|
|
28
|
+
example: 'San Francisco, CA',
|
|
29
|
+
description: 'Your location (city, state/country) - full address not recommended for privacy',
|
|
30
|
+
required: false,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: 'linkedin',
|
|
34
|
+
example: 'https://linkedin.com/in/johndoe',
|
|
35
|
+
description: 'Your LinkedIn profile URL for professional networking',
|
|
36
|
+
required: false,
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'github',
|
|
40
|
+
example: 'https://github.com/johndoe',
|
|
41
|
+
description: 'Your GitHub profile URL to showcase your code',
|
|
42
|
+
required: false,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
key: 'website',
|
|
46
|
+
example: 'https://johndoe.dev',
|
|
47
|
+
description: 'Your personal website or portfolio URL',
|
|
48
|
+
required: false,
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
/**
|
|
52
|
+
* English section templates
|
|
53
|
+
*/
|
|
54
|
+
export const EN_SECTIONS = [
|
|
55
|
+
{
|
|
56
|
+
id: 'summary',
|
|
57
|
+
title: 'Summary',
|
|
58
|
+
description: 'A brief professional summary (2-4 sentences) highlighting your key qualifications, years of experience, and career objectives. This is the first thing recruiters read, so make it compelling and tailored to your target role.',
|
|
59
|
+
usage: 'cv',
|
|
60
|
+
content: `Write a compelling summary of your professional background, key skills, and what you bring to potential employers.
|
|
61
|
+
Focus on your unique value proposition and career highlights.
|
|
62
|
+
|
|
63
|
+
Example:
|
|
64
|
+
Experienced software engineer with 8+ years of expertise in building scalable web applications.
|
|
65
|
+
Passionate about clean code, mentoring junior developers, and delivering high-quality solutions.`,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
id: 'experience',
|
|
69
|
+
title: 'Experience',
|
|
70
|
+
description: 'Your work history with companies, roles, dates, and achievements. List in reverse chronological order (most recent first). Use action verbs and quantify achievements where possible (e.g., "Increased sales by 25%", "Reduced load time by 40%").',
|
|
71
|
+
usage: 'both',
|
|
72
|
+
content: `\`\`\`resume:experience
|
|
73
|
+
- company: Company Name
|
|
74
|
+
location: City, Country
|
|
75
|
+
roles:
|
|
76
|
+
- title: Job Title
|
|
77
|
+
team: Team Name (optional)
|
|
78
|
+
start: 2022-01
|
|
79
|
+
end: present
|
|
80
|
+
summary:
|
|
81
|
+
- Brief description of your role and responsibilities
|
|
82
|
+
highlights:
|
|
83
|
+
- Key achievement with measurable impact (e.g., "Reduced deployment time by 50%")
|
|
84
|
+
- Another significant accomplishment
|
|
85
|
+
- Quantifiable result (e.g., "Managed team of 5 engineers")
|
|
86
|
+
projects:
|
|
87
|
+
- name: Project Name (optional)
|
|
88
|
+
start: 2022-06
|
|
89
|
+
end: 2023-01
|
|
90
|
+
bullets:
|
|
91
|
+
- Project contribution or outcome
|
|
92
|
+
\`\`\``,
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
id: 'education',
|
|
96
|
+
title: 'Education',
|
|
97
|
+
description: 'Your educational background including degrees, institutions, graduation dates, and relevant details. Include GPA if above 3.5, relevant coursework, honors, or thesis topics if applicable.',
|
|
98
|
+
usage: 'both',
|
|
99
|
+
content: `\`\`\`resume:education
|
|
100
|
+
- school: University Name
|
|
101
|
+
degree: Bachelor of Science in Computer Science
|
|
102
|
+
location: City, Country
|
|
103
|
+
start: 2014-09
|
|
104
|
+
end: 2018-06
|
|
105
|
+
details:
|
|
106
|
+
- GPA: 3.8/4.0 (include if above 3.5)
|
|
107
|
+
- Relevant coursework: Data Structures, Algorithms, Machine Learning
|
|
108
|
+
- Honors: Dean's List, Summa Cum Laude
|
|
109
|
+
\`\`\``,
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
id: 'skills',
|
|
113
|
+
title: 'Skills',
|
|
114
|
+
description: 'Your technical and professional skills organized by category. Be specific and honest about your proficiency levels. Include programming languages, frameworks, tools, and soft skills relevant to your target role.',
|
|
115
|
+
usage: 'both',
|
|
116
|
+
content: `\`\`\`resume:skills
|
|
117
|
+
categories:
|
|
118
|
+
- category: Programming Languages
|
|
119
|
+
items: [JavaScript, TypeScript, Python, Go]
|
|
120
|
+
- category: Frameworks & Libraries
|
|
121
|
+
items: [React, Node.js, Django, Express]
|
|
122
|
+
- category: Tools & Platforms
|
|
123
|
+
items: [AWS, Docker, Kubernetes, Git, CI/CD]
|
|
124
|
+
- category: Databases
|
|
125
|
+
items: [PostgreSQL, MongoDB, Redis]
|
|
126
|
+
\`\`\``,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
id: 'certifications',
|
|
130
|
+
title: 'Certifications',
|
|
131
|
+
description: 'Professional certifications and licenses you have obtained. Include the certification name, issuing organization, date obtained, and expiration date if applicable. Prioritize certifications relevant to your target role.',
|
|
132
|
+
usage: 'both',
|
|
133
|
+
content: `\`\`\`resume:certifications
|
|
134
|
+
- name: AWS Solutions Architect Professional
|
|
135
|
+
issuer: Amazon Web Services
|
|
136
|
+
date: 2023-06
|
|
137
|
+
url: https://aws.amazon.com/certification/ (optional)
|
|
138
|
+
- name: Certified Kubernetes Administrator
|
|
139
|
+
issuer: CNCF
|
|
140
|
+
date: 2022-11
|
|
141
|
+
\`\`\``,
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
id: 'languages',
|
|
145
|
+
title: 'Languages',
|
|
146
|
+
description: 'Languages you speak and your proficiency level. Use standard proficiency levels: Native, Fluent, Professional working proficiency, Limited working proficiency, Elementary. Include certifications like TOEFL, IELTS, JLPT if applicable.',
|
|
147
|
+
usage: 'cv',
|
|
148
|
+
content: `\`\`\`resume:languages
|
|
149
|
+
- language: English
|
|
150
|
+
level: Native
|
|
151
|
+
- language: Spanish
|
|
152
|
+
level: Professional working proficiency
|
|
153
|
+
- language: Japanese
|
|
154
|
+
level: Conversational (JLPT N2)
|
|
155
|
+
\`\`\``,
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
id: 'competencies',
|
|
159
|
+
title: 'Core Competencies',
|
|
160
|
+
description: 'Key strengths and competencies that set you apart. Focus on transferable skills and leadership qualities. Provide brief descriptions with concrete examples of how you have demonstrated each competency.',
|
|
161
|
+
usage: 'both',
|
|
162
|
+
content: `\`\`\`resume:competencies
|
|
163
|
+
- header: Technical Leadership
|
|
164
|
+
description: Led cross-functional teams of 10+ engineers, delivering projects on time and within budget.
|
|
165
|
+
- header: Problem Solving
|
|
166
|
+
description: Strong analytical skills with a track record of solving complex technical challenges.
|
|
167
|
+
- header: Communication
|
|
168
|
+
description: Excellent written and verbal communication skills, experienced in stakeholder management.
|
|
169
|
+
\`\`\``,
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
id: 'motivation',
|
|
173
|
+
title: 'Motivation',
|
|
174
|
+
description: 'Your motivation for applying to this position (rirekisho format only). Explain why you are interested in the company/role, what attracts you to the opportunity, and how your background makes you a good fit.',
|
|
175
|
+
usage: 'rirekisho',
|
|
176
|
+
content: `Write your motivation for applying to this specific position or company.
|
|
177
|
+
Explain why you are interested and what you hope to contribute.
|
|
178
|
+
|
|
179
|
+
Tips:
|
|
180
|
+
- Research the company and mention specific aspects that attract you
|
|
181
|
+
- Connect your experience and skills to the role requirements
|
|
182
|
+
- Show enthusiasm while remaining professional`,
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
id: 'notes',
|
|
186
|
+
title: 'Notes',
|
|
187
|
+
description: 'Additional notes such as availability, salary expectations, work preferences, or special requests (rirekisho format only). Be clear and professional about any constraints or preferences.',
|
|
188
|
+
usage: 'rirekisho',
|
|
189
|
+
content: `Add any additional information such as:
|
|
190
|
+
- Earliest start date: Available immediately / After 2 weeks notice
|
|
191
|
+
- Preferred work location: Remote / Hybrid / On-site
|
|
192
|
+
- Work authorization status if relevant
|
|
193
|
+
- Other relevant notes for the employer`,
|
|
194
|
+
},
|
|
195
|
+
];
|
|
196
|
+
/**
|
|
197
|
+
* Complete English template definition
|
|
198
|
+
*/
|
|
199
|
+
export const EN_TEMPLATE = {
|
|
200
|
+
language: 'en',
|
|
201
|
+
frontmatterFields: EN_FRONTMATTER_FIELDS,
|
|
202
|
+
sections: EN_SECTIONS,
|
|
203
|
+
};
|
|
204
|
+
//# sourceMappingURL=en.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.js","sourceRoot":"","sources":["../../../src/template/definitions/en.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/template/definitions/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,qBAAqB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/template/definitions/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,qBAAqB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Japanese template definitions
|
|
3
|
+
*/
|
|
4
|
+
import type { FrontmatterFieldTemplate, SectionTemplate, TemplateDefinition } from '../../types/template.js';
|
|
5
|
+
/**
|
|
6
|
+
* Japanese frontmatter field templates
|
|
7
|
+
*/
|
|
8
|
+
export declare const JA_FRONTMATTER_FIELDS: readonly FrontmatterFieldTemplate[];
|
|
9
|
+
/**
|
|
10
|
+
* Japanese section templates
|
|
11
|
+
*/
|
|
12
|
+
export declare const JA_SECTIONS: readonly SectionTemplate[];
|
|
13
|
+
/**
|
|
14
|
+
* Complete Japanese template definition
|
|
15
|
+
*/
|
|
16
|
+
export declare const JA_TEMPLATE: TemplateDefinition;
|
|
17
|
+
//# sourceMappingURL=ja.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/template/definitions/ja.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EACV,wBAAwB,EACxB,eAAe,EACf,kBAAkB,EACnB,MAAM,yBAAyB,CAAC;AAEjC;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,SAAS,wBAAwB,EAyE3D,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,SAAS,eAAe,EA+JxC,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,kBAIhB,CAAC"}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Japanese template definitions
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Japanese frontmatter field templates
|
|
6
|
+
*/
|
|
7
|
+
export const JA_FRONTMATTER_FIELDS = [
|
|
8
|
+
{
|
|
9
|
+
key: 'name',
|
|
10
|
+
example: '山田 太郎',
|
|
11
|
+
description: '氏名(漢字)- 履歴書に表示される正式な氏名',
|
|
12
|
+
required: true,
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
key: 'name_furigana',
|
|
16
|
+
example: 'ヤマダ タロウ',
|
|
17
|
+
description: '氏名(フリガナ)- カタカナで記載。履歴書形式で使用',
|
|
18
|
+
required: false,
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
key: 'email_address',
|
|
22
|
+
example: 'taro.yamada@example.com',
|
|
23
|
+
description: 'メールアドレス - 連絡可能なメールアドレス',
|
|
24
|
+
required: true,
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
key: 'phone_number',
|
|
28
|
+
example: '090-1234-5678',
|
|
29
|
+
description: '電話番号 - 連絡可能な電話番号(携帯推奨)',
|
|
30
|
+
required: true,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: 'post_code',
|
|
34
|
+
example: '100-0001',
|
|
35
|
+
description: '郵便番号 - ハイフン付きで記載',
|
|
36
|
+
required: false,
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'home_address',
|
|
40
|
+
example: '東京都千代田区千代田1-1-1',
|
|
41
|
+
description: '現住所 - 都道府県から番地まで記載',
|
|
42
|
+
required: false,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
key: 'home_address_furigana',
|
|
46
|
+
example: 'とうきょうとちよだくちよだ',
|
|
47
|
+
description: '現住所(ふりがな)- ひらがなで記載。履歴書形式で使用',
|
|
48
|
+
required: false,
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
key: 'dob',
|
|
52
|
+
example: '1990-04-15',
|
|
53
|
+
description: '生年月日(YYYY-MM-DD形式)- 履歴書形式で年齢計算に使用',
|
|
54
|
+
required: false,
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
key: 'gender',
|
|
58
|
+
example: 'male',
|
|
59
|
+
description: '性別(male/female/other)- 任意記載。履歴書形式で使用',
|
|
60
|
+
required: false,
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
key: 'linkedin',
|
|
64
|
+
example: 'https://linkedin.com/in/taroyamada',
|
|
65
|
+
description: 'LinkedIn プロフィール URL - 職務経歴書で使用',
|
|
66
|
+
required: false,
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: 'github',
|
|
70
|
+
example: 'https://github.com/taroyamada',
|
|
71
|
+
description: 'GitHub プロフィール URL - エンジニア向け',
|
|
72
|
+
required: false,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
key: 'website',
|
|
76
|
+
example: 'https://taroyamada.dev',
|
|
77
|
+
description: '個人サイト・ポートフォリオ URL',
|
|
78
|
+
required: false,
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
/**
|
|
82
|
+
* Japanese section templates
|
|
83
|
+
*/
|
|
84
|
+
export const JA_SECTIONS = [
|
|
85
|
+
{
|
|
86
|
+
id: 'summary',
|
|
87
|
+
title: '職務要約',
|
|
88
|
+
description: 'これまでのキャリアの概要と強みを簡潔にまとめます(2〜4文程度)。採用担当者が最初に読む部分なので、自分の価値を端的に伝えることが重要です。経験年数、専門分野、主な実績を含めましょう。',
|
|
89
|
+
usage: 'cv',
|
|
90
|
+
content: `これまでの職務経験の概要、主な実績、得意分野などを記載してください。
|
|
91
|
+
採用担当者に自分の価値を伝える重要なセクションです。
|
|
92
|
+
|
|
93
|
+
例:
|
|
94
|
+
Webアプリケーション開発に8年以上従事し、大規模システムの設計・開発をリードしてきました。
|
|
95
|
+
チームマネジメントと技術的な課題解決を得意とし、品質の高いソリューションの提供に注力しています。`,
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
id: 'experience',
|
|
99
|
+
title: '職歴',
|
|
100
|
+
description: '勤務先、役職、業務内容、実績を記載します。新しい職歴から順に記載(逆時系列)。具体的な数値や成果を含めると効果的です(例:「売上を25%向上」「処理時間を40%短縮」)。',
|
|
101
|
+
usage: 'both',
|
|
102
|
+
content: `\`\`\`resume:experience
|
|
103
|
+
- company: 株式会社サンプル
|
|
104
|
+
location: 東京都
|
|
105
|
+
roles:
|
|
106
|
+
- title: シニアエンジニア
|
|
107
|
+
team: プラットフォーム開発部
|
|
108
|
+
start: 2020-04
|
|
109
|
+
end: present
|
|
110
|
+
summary:
|
|
111
|
+
- バックエンドシステムの設計・開発を担当
|
|
112
|
+
highlights:
|
|
113
|
+
- マイクロサービスアーキテクチャへの移行をリード(チーム10名)
|
|
114
|
+
- API レスポンス時間を 40% 改善
|
|
115
|
+
- 新人エンジニア 5 名の育成・メンタリングを担当
|
|
116
|
+
projects:
|
|
117
|
+
- name: 決済システム刷新プロジェクト
|
|
118
|
+
start: 2021-04
|
|
119
|
+
end: 2022-03
|
|
120
|
+
bullets:
|
|
121
|
+
- 決済処理の高速化を実現(処理時間50%短縮)
|
|
122
|
+
- 障害発生率を 80% 削減
|
|
123
|
+
\`\`\``,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
id: 'education',
|
|
127
|
+
title: '学歴',
|
|
128
|
+
description: '学校名、学部・学科、卒業年月を記載します。新しい学歴から順に記載。GPA(3.5以上の場合)、卒業論文のテーマ、関連する受賞歴なども記載可能です。',
|
|
129
|
+
usage: 'both',
|
|
130
|
+
content: `\`\`\`resume:education
|
|
131
|
+
- school: 東京大学
|
|
132
|
+
degree: 工学部 情報工学科
|
|
133
|
+
location: 東京都
|
|
134
|
+
start: 2010-04
|
|
135
|
+
end: 2014-03
|
|
136
|
+
details:
|
|
137
|
+
- GPA: 3.8/4.0(3.5以上の場合は記載推奨)
|
|
138
|
+
- 卒業論文: 分散システムにおける効率的なデータ同期手法の研究
|
|
139
|
+
- 学部長賞受賞
|
|
140
|
+
\`\`\``,
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
id: 'skills',
|
|
144
|
+
title: 'スキル',
|
|
145
|
+
description: '技術スキルや業務スキルをカテゴリ別に記載します。応募する職種に関連するスキルを優先的に記載。習熟度を正直に記載し、実務経験のあるものを中心にリストアップしましょう。',
|
|
146
|
+
usage: 'both',
|
|
147
|
+
content: `\`\`\`resume:skills
|
|
148
|
+
categories:
|
|
149
|
+
- category: プログラミング言語
|
|
150
|
+
items: [TypeScript, Python, Go, Java]
|
|
151
|
+
- category: フレームワーク
|
|
152
|
+
items: [React, Node.js, Spring Boot, Django]
|
|
153
|
+
- category: インフラ・ツール
|
|
154
|
+
items: [AWS, Docker, Kubernetes, Terraform, CI/CD]
|
|
155
|
+
- category: データベース
|
|
156
|
+
items: [PostgreSQL, MySQL, MongoDB, Redis]
|
|
157
|
+
\`\`\``,
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
id: 'certifications',
|
|
161
|
+
title: '免許・資格',
|
|
162
|
+
description: '取得した資格や免許を記載します。取得日の新しいものから順に記載。応募職種に関連する資格を優先的に記載しましょう。有効期限がある資格は更新状況も確認してください。',
|
|
163
|
+
usage: 'both',
|
|
164
|
+
content: `\`\`\`resume:certifications
|
|
165
|
+
- name: AWS ソリューションアーキテクト プロフェッショナル
|
|
166
|
+
issuer: Amazon Web Services
|
|
167
|
+
date: 2023-06
|
|
168
|
+
- name: 基本情報技術者
|
|
169
|
+
issuer: IPA(情報処理推進機構)
|
|
170
|
+
date: 2015-04
|
|
171
|
+
- name: TOEIC 900点
|
|
172
|
+
issuer: ETS
|
|
173
|
+
date: 2022-01
|
|
174
|
+
- name: 普通自動車第一種運転免許
|
|
175
|
+
issuer: 公安委員会
|
|
176
|
+
date: 2010-08
|
|
177
|
+
\`\`\``,
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
id: 'languages',
|
|
181
|
+
title: '語学',
|
|
182
|
+
description: '語学力とレベルを記載します。ネイティブ、ビジネスレベル、日常会話レベルなどの表現を使用。TOEIC、TOEFL、IELTS、日本語能力試験(JLPT)などのスコアがあれば併記しましょう。',
|
|
183
|
+
usage: 'cv',
|
|
184
|
+
content: `\`\`\`resume:languages
|
|
185
|
+
- language: 日本語
|
|
186
|
+
level: ネイティブ
|
|
187
|
+
- language: 英語
|
|
188
|
+
level: ビジネスレベル(TOEIC 900点)
|
|
189
|
+
- language: 中国語
|
|
190
|
+
level: 日常会話レベル(HSK 4級)
|
|
191
|
+
\`\`\``,
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
id: 'competencies',
|
|
195
|
+
title: '自己PR',
|
|
196
|
+
description: '自分の強みや特徴をアピールします。具体的なエピソードや実績を交えて記載すると説得力が増します。応募職種で求められる能力と自分の強みを結びつけて記載しましょう。',
|
|
197
|
+
usage: 'both',
|
|
198
|
+
content: `\`\`\`resume:competencies
|
|
199
|
+
- header: 技術リーダーシップ
|
|
200
|
+
description: 10名以上のエンジニアチームをリードし、複数のプロジェクトを成功に導いた経験があります。メンバーの成長支援と技術的な意思決定の両面でチームに貢献してきました。
|
|
201
|
+
- header: 問題解決力
|
|
202
|
+
description: 複雑な技術課題に対して、論理的なアプローチで解決策を見出すことが得意です。本番環境での障害対応経験も豊富で、迅速な原因特定と対策実施ができます。
|
|
203
|
+
- header: コミュニケーション力
|
|
204
|
+
description: 技術者・非技術者問わず、分かりやすく説明し、円滑なプロジェクト推進を実現します。顧客折衝やステークホルダーとの調整経験も豊富です。
|
|
205
|
+
\`\`\``,
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
id: 'motivation',
|
|
209
|
+
title: '志望動機',
|
|
210
|
+
description: '応募先企業・職種への志望理由を記載します(履歴書形式のみ)。企業研究を行い、なぜその企業・職種に興味を持ったのか、自分のスキルや経験がどのように貢献できるかを具体的に記載しましょう。',
|
|
211
|
+
usage: 'rirekisho',
|
|
212
|
+
content: `貴社を志望した理由、入社後に実現したいこと、
|
|
213
|
+
自分のスキルや経験がどのように貢献できるかを記載してください。
|
|
214
|
+
|
|
215
|
+
ポイント:
|
|
216
|
+
- 企業研究を行い、具体的な魅力を挙げる
|
|
217
|
+
- 自分の経験・スキルと応募職種の関連性を示す
|
|
218
|
+
- 入社後のビジョンや貢献したいことを明確に
|
|
219
|
+
- 熱意を持ちつつも、具体的かつ論理的に記載`,
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
id: 'notes',
|
|
223
|
+
title: '本人希望記入欄',
|
|
224
|
+
description: '勤務条件や特記事項を記載します(履歴書形式のみ)。特に希望がない場合は「貴社規定に従います」と記載するのが一般的です。希望がある場合は明確かつ簡潔に記載しましょう。',
|
|
225
|
+
usage: 'rirekisho',
|
|
226
|
+
content: `特に希望がない場合は「貴社規定に従います」と記載。
|
|
227
|
+
希望がある場合は以下のような内容を記載:
|
|
228
|
+
|
|
229
|
+
- 希望勤務地:東京本社 / リモートワーク希望
|
|
230
|
+
- 入社可能日:即日 / 現職の引き継ぎ後(約1ヶ月後)
|
|
231
|
+
- 勤務形態:フルタイム / 時短勤務希望
|
|
232
|
+
- その他特記事項`,
|
|
233
|
+
},
|
|
234
|
+
];
|
|
235
|
+
/**
|
|
236
|
+
* Complete Japanese template definition
|
|
237
|
+
*/
|
|
238
|
+
export const JA_TEMPLATE = {
|
|
239
|
+
language: 'ja',
|
|
240
|
+
frontmatterFields: JA_FRONTMATTER_FIELDS,
|
|
241
|
+
sections: JA_SECTIONS,
|
|
242
|
+
};
|
|
243
|
+
//# sourceMappingURL=ja.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.js","sourceRoot":"","sources":["../../../src/template/definitions/ja.ts"],"names":[],"mappings":"AAAA;;GAEG;AAQH;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAwC;IACxE;QACE,GAAG,EAAE,MAAM;QACX,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;KACf;IACD;QACE,GAAG,EAAE,eAAe;QACpB,OAAO,EAAE,SAAS;QAClB,WAAW,EAAE,4BAA4B;QACzC,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,eAAe;QACpB,OAAO,EAAE,yBAAyB;QAClC,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;KACf;IACD;QACE,GAAG,EAAE,cAAc;QACnB,OAAO,EAAE,eAAe;QACxB,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;KACf;IACD;QACE,GAAG,EAAE,WAAW;QAChB,OAAO,EAAE,UAAU;QACnB,WAAW,EAAE,kBAAkB;QAC/B,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,cAAc;QACnB,OAAO,EAAE,iBAAiB;QAC1B,WAAW,EAAE,oBAAoB;QACjC,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,uBAAuB;QAC5B,OAAO,EAAE,eAAe;QACxB,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,KAAK;QACV,OAAO,EAAE,YAAY;QACrB,WAAW,EAAE,mCAAmC;QAChD,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,QAAQ;QACb,OAAO,EAAE,MAAM;QACf,WAAW,EAAE,sCAAsC;QACnD,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,UAAU;QACf,OAAO,EAAE,oCAAoC;QAC7C,WAAW,EAAE,gCAAgC;QAC7C,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,QAAQ;QACb,OAAO,EAAE,+BAA+B;QACxC,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,KAAK;KAChB;IACD;QACE,GAAG,EAAE,SAAS;QACd,OAAO,EAAE,wBAAwB;QACjC,WAAW,EAAE,mBAAmB;QAChC,QAAQ,EAAE,KAAK;KAChB;CACO,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAA+B;IACrD;QACE,EAAE,EAAE,SAAS;QACb,KAAK,EAAE,MAAM;QACb,WAAW,EACT,8FAA8F;QAChG,KAAK,EAAE,IAAI;QACX,OAAO,EAAE;;;;;iDAKoC;KAC9C;IACD;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,IAAI;QACX,WAAW,EACT,uFAAuF;QACzF,KAAK,EAAE,MAAM;QACb,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;OAqBN;KACJ;IACD;QACE,EAAE,EAAE,WAAW;QACf,KAAK,EAAE,IAAI;QACX,WAAW,EACT,2EAA2E;QAC7E,KAAK,EAAE,MAAM;QACb,OAAO,EAAE;;;;;;;;;;OAUN;KACJ;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,KAAK,EAAE,KAAK;QACZ,WAAW,EACT,oFAAoF;QACtF,KAAK,EAAE,MAAM;QACb,OAAO,EAAE;;;;;;;;;;OAUN;KACJ;IACD;QACE,EAAE,EAAE,gBAAgB;QACpB,KAAK,EAAE,OAAO;QACd,WAAW,EACT,kFAAkF;QACpF,KAAK,EAAE,MAAM;QACb,OAAO,EAAE;;;;;;;;;;;;;OAaN;KACJ;IACD;QACE,EAAE,EAAE,WAAW;QACf,KAAK,EAAE,IAAI;QACX,WAAW,EACT,+FAA+F;QACjG,KAAK,EAAE,IAAI;QACX,OAAO,EAAE;;;;;;;OAON;KACJ;IACD;QACE,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,MAAM;QACb,WAAW,EACT,iFAAiF;QACnF,KAAK,EAAE,MAAM;QACb,OAAO,EAAE;;;;;;;OAON;KACJ;IACD;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,MAAM;QACb,WAAW,EACT,6FAA6F;QAC/F,KAAK,EAAE,WAAW;QAClB,OAAO,EAAE;;;;;;;uBAOU;KACpB;IACD;QACE,EAAE,EAAE,OAAO;QACX,KAAK,EAAE,SAAS;QAChB,WAAW,EACT,oFAAoF;QACtF,KAAK,EAAE,WAAW;QAClB,OAAO,EAAE;;;;;;UAMH;KACP;CACO,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAAuB;IAC7C,QAAQ,EAAE,IAAI;IACd,iBAAiB,EAAE,qBAAqB;IACxC,QAAQ,EAAE,WAAW;CACb,CAAC"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Template generator module
|
|
3
|
+
* Generates markdown templates for CV/rirekisho
|
|
4
|
+
*/
|
|
5
|
+
import type { OutputFormat } from '../types/config.js';
|
|
6
|
+
import type { FrontmatterFieldTemplate, SectionInfo, SectionTemplate, TemplateDefinition, TemplateInfo, TemplateLanguage, TemplateOptions } from '../types/template.js';
|
|
7
|
+
/**
|
|
8
|
+
* Get template definition for a language
|
|
9
|
+
*/
|
|
10
|
+
export declare function getTemplateDefinition(language: TemplateLanguage): TemplateDefinition;
|
|
11
|
+
/**
|
|
12
|
+
* Get information about available templates
|
|
13
|
+
*/
|
|
14
|
+
export declare function getTemplateInfo(language: TemplateLanguage): TemplateInfo;
|
|
15
|
+
/**
|
|
16
|
+
* Get all available template infos
|
|
17
|
+
*/
|
|
18
|
+
export declare function getAllTemplateInfos(): TemplateInfo[];
|
|
19
|
+
/**
|
|
20
|
+
* Get section info for a specific language and format
|
|
21
|
+
*/
|
|
22
|
+
export declare function getSectionInfos(language: TemplateLanguage, format: OutputFormat): SectionInfo[];
|
|
23
|
+
/**
|
|
24
|
+
* Format section list for display
|
|
25
|
+
*/
|
|
26
|
+
export declare function formatSectionList(language: TemplateLanguage, format: OutputFormat): string;
|
|
27
|
+
/**
|
|
28
|
+
* Format template list for display
|
|
29
|
+
*/
|
|
30
|
+
export declare function formatTemplateList(): string;
|
|
31
|
+
/**
|
|
32
|
+
* Filter sections based on output format
|
|
33
|
+
*/
|
|
34
|
+
export declare function filterSectionsForFormat(sections: readonly SectionTemplate[], format: OutputFormat): SectionTemplate[];
|
|
35
|
+
/**
|
|
36
|
+
* Generate frontmatter field descriptions as HTML comment block
|
|
37
|
+
* This is placed before the frontmatter to avoid YAML parsing issues
|
|
38
|
+
*/
|
|
39
|
+
export declare function generateFrontmatterDescription(fields: readonly FrontmatterFieldTemplate[], language: TemplateLanguage): string;
|
|
40
|
+
/**
|
|
41
|
+
* Generate frontmatter block
|
|
42
|
+
* Note: Comments are NOT included inside YAML frontmatter to avoid parsing issues
|
|
43
|
+
*/
|
|
44
|
+
export declare function generateFrontmatter(fields: readonly FrontmatterFieldTemplate[], _includeComments: boolean, _language: TemplateLanguage): string;
|
|
45
|
+
/**
|
|
46
|
+
* Generate section block
|
|
47
|
+
*/
|
|
48
|
+
export declare function generateSection(section: SectionTemplate, includeComments: boolean, _language: TemplateLanguage): string;
|
|
49
|
+
/**
|
|
50
|
+
* Generate complete markdown template
|
|
51
|
+
*/
|
|
52
|
+
export declare function generateTemplate(options: TemplateOptions): string;
|
|
53
|
+
/**
|
|
54
|
+
* Get available template languages
|
|
55
|
+
*/
|
|
56
|
+
export declare function getAvailableLanguages(): TemplateLanguage[];
|
|
57
|
+
/**
|
|
58
|
+
* Validate template language
|
|
59
|
+
*/
|
|
60
|
+
export declare function isValidLanguage(lang: string): lang is TemplateLanguage;
|
|
61
|
+
//# sourceMappingURL=generator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../src/template/generator.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EACV,wBAAwB,EACxB,WAAW,EACX,eAAe,EACf,kBAAkB,EAClB,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,sBAAsB,CAAC;AAY9B;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,gBAAgB,GACzB,kBAAkB,CAQpB;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,gBAAgB,GAAG,YAAY,CASxE;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,YAAY,EAAE,CAEpD;AAED;;GAEG;AACH,wBAAgB,eAAe,CAC7B,QAAQ,EAAE,gBAAgB,EAC1B,MAAM,EAAE,YAAY,GACnB,WAAW,EAAE,CASf;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAC/B,QAAQ,EAAE,gBAAgB,EAC1B,MAAM,EAAE,YAAY,GACnB,MAAM,CA8BR;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,MAAM,CAgB3C;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CACrC,QAAQ,EAAE,SAAS,eAAe,EAAE,EACpC,MAAM,EAAE,YAAY,GACnB,eAAe,EAAE,CAKnB;AAED;;;GAGG;AACH,wBAAgB,8BAA8B,CAC5C,MAAM,EAAE,SAAS,wBAAwB,EAAE,EAC3C,QAAQ,EAAE,gBAAgB,GACzB,MAAM,CAiBR;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,SAAS,wBAAwB,EAAE,EAC3C,gBAAgB,EAAE,OAAO,EACzB,SAAS,EAAE,gBAAgB,GAC1B,MAAM,CASR;AAED;;GAEG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,eAAe,EACxB,eAAe,EAAE,OAAO,EACxB,SAAS,EAAE,gBAAgB,GAC1B,MAAM,CAiBR;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,eAAe,GAAG,MAAM,CAkEjE;AAED;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,gBAAgB,EAAE,CAE1D;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,IAAI,gBAAgB,CAEtE"}
|