Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Maeil Mail Contents

ASecurity

> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.

81 stars
0 votes
0 copies
0 views
Added 9/19/2026
developmentjavascriptpythongojavabashreactnextjsnodespringgit

Works with

cliapi

Security Analysis

A92/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add reason-machines/trending-skills --skill maeil-mail-contents --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Maeil Mail Contents?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Maeil Mail Contents
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/reason-machines-maeil-mail-contents/badge)](https://www.skillsdirectory.com/skills/reason-machines-maeil-mail-contents)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
```markdown
---
name: maeil-mail-contents
description: Archive of daily technical interview Q&A content (Frontend & Backend) from the maeil-mail.kr service
triggers:
  - browse maeil mail interview questions
  - find frontend interview content
  - search backend interview archive
  - use maeil mail contents
  - access technical interview questions
  - explore maeil mail fe be questions
  - find korean tech interview content
  - load maeil mail archive
---

# maeil-mail-contents

> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.

## What This Project Is

`maeil-mail-contents` is a static content archive repository preserving all technical interview Q&A content originally published by [maeil-mail.kr](https://maeil-mail.kr) — a daily email service that delivered frontend (FE) and backend (BE) interview questions to subscribers. After the service shut down, this repository was created to keep the content publicly accessible.

The repository contains:
- **Frontend (FE)** interview questions and answers
- **Backend (BE)** interview questions and answers
- Content organized by topic/category in markdown or structured files

---

## Repository Structure

```
maeil-mail-contents/
├── fe/          # Frontend interview content
├── be/          # Backend interview content
└── README.md
```

Each content item typically follows a pattern like:

```
fe/
  javascript/
    closure.md
    promise.md
    event-loop.md
  react/
    virtual-dom.md
    hooks.md
  css/
    box-model.md
be/
  java/
    jvm.md
  spring/
    ioc-di.md
  database/
    index.md
    transaction.md
```

---

## How to Use This Archive

### Clone the Repository

```bash
git clone https://github.com/maeil-mail/maeil-mail-contents.git
cd maeil-mail-contents
```

### Browse Content Locally

Since the content is markdown-based, you can read it directly or render it:

```bash
# List all FE topics
ls fe/

# List all BE topics
ls be/

# Read a specific question
cat fe/javascript/closure.md
```

### Search Across All Content

```bash
# Search by keyword across all content
grep -r "클로저" .

# Search in FE only
grep -r "Promise" fe/

# Search in BE only
grep -r "트랜잭션" be/

# Case-insensitive search
grep -ri "virtual dom" fe/
```

---

## Integrating Content Into Your Own App

### Reading Markdown Files (Node.js)

```js
import fs from 'fs';
import path from 'path';

// Read a specific interview question
function readContent(category, topic, filename) {
  const filePath = path.join(process.cwd(), category, topic, filename);
  return fs.readFileSync(filePath, 'utf-8');
}

const content = readContent('fe', 'javascript', 'closure.md');
console.log(content);
```

### Listing All Questions by Category (Node.js)

```js
import fs from 'fs';
import path from 'path';

function getAllQuestions(category) {
  const categoryPath = path.join(process.cwd(), category);
  const topics = fs.readdirSync(categoryPath, { withFileTypes: true })
    .filter(dirent => dirent.isDirectory())
    .map(dirent => dirent.name);

  const questions = [];

  for (const topic of topics) {
    const topicPath = path.join(categoryPath, topic);
    const files = fs.readdirSync(topicPath)
      .filter(file => file.endsWith('.md'));

    for (const file of files) {
      questions.push({
        category,
        topic,
        filename: file,
        path: path.join(topicPath, file),
      });
    }
  }

  return questions;
}

const feQuestions = getAllQuestions('fe');
const beQuestions = getAllQuestions('be');

console.log(`FE Questions: ${feQuestions.length}`);
console.log(`BE Questions: ${beQuestions.length}`);
```

### Parsing Markdown Content (Node.js + gray-matter)

```bash
npm install gray-matter marked
```

```js
import fs from 'fs';
import matter from 'gray-matter';
import { marked } from 'marked';

function parseQuestion(filePath) {
  const raw = fs.readFileSync(filePath, 'utf-8');
  const { data: frontmatter, content } = matter(raw);

  return {
    meta: frontmatter,         // title, tags, difficulty, etc.
    rawMarkdown: content,
    html: marked(content),     // rendered HTML
  };
}

const question = parseQuestion('fe/javascript/closure.md');
console.log(question.meta);
console.log(question.html);
```

---

## Building a Simple Q&A Viewer (Next.js Example)

```bash
npx create-next-app@latest my-interview-app
cd my-interview-app

# Copy the contents archive into your project
cp -r ../maeil-mail-contents/fe ./content/fe
cp -r ../maeil-mail-contents/be ./content/be

npm install gray-matter
```

```js
// lib/questions.js
import fs from 'fs';
import path from 'path';
import matter from 'gray-matter';

const contentDir = path.join(process.cwd(), 'content');

export function getQuestionSlugs(category) {
  const dir = path.join(contentDir, category);
  const topics = fs.readdirSync(dir);
  const slugs = [];

  for (const topic of topics) {
    const topicPath = path.join(dir, topic);
    if (!fs.statSync(topicPath).isDirectory()) continue;
    const files = fs.readdirSync(topicPath).filter(f => f.endsWith('.md'));
    for (const file of files) {
      slugs.push({ category, topic, slug: file.replace('.md', '') });
    }
  }

  return slugs;
}

export function getQuestion(category, topic, slug) {
  const filePath = path.join(contentDir, category, topic, `${slug}.md`);
  const raw = fs.readFileSync(filePath, 'utf-8');
  const { data, content } = matter(raw);
  return { meta: data, content };
}
```

```jsx
// app/[category]/[topic]/[slug]/page.jsx
import { getQuestion, getQuestionSlugs } from '@/lib/questions';

export async function generateStaticParams() {
  const fe = getQuestionSlugs('fe');
  const be = getQuestionSlugs('be');
  return [...fe, ...be];
}

export default function QuestionPage({ params }) {
  const { category, topic, slug } = params;
  const { meta, content } = getQuestion(category, topic, slug);

  return (
    <main>
      <h1>{meta.title || slug}</h1>
      <p>Category: {category.toUpperCase()} / {topic}</p>
      <article dangerouslySetInnerHTML={{ __html: content }} />
    </main>
  );
}
```

---

## Python: Bulk Processing Content

```python
import os
import glob

def load_all_questions(base_dir='.', category='fe'):
    pattern = os.path.join(base_dir, category, '**', '*.md')
    files = glob.glob(pattern, recursive=True)
    questions = []

    for filepath in files:
        with open(filepath, 'r', encoding='utf-8') as f:
            content = f.read()

        parts = filepath.replace(base_dir, '').strip('/').split('/')
        questions.append({
            'category': parts[0],
            'topic': parts[1] if len(parts) > 2 else 'general',
            'filename': parts[-1],
            'content': content,
        })

    return questions

fe_questions = load_all_questions(category='fe')
be_questions = load_all_questions(category='be')

print(f"Loaded {len(fe_questions)} FE questions")
print(f"Loaded {len(be_questions)} BE questions")
```

### Search Questions by Keyword (Python)

```python
def search_questions(questions, keyword):
    keyword_lower = keyword.lower()
    return [
        q for q in questions
        if keyword_lower in q['content'].lower()
        or keyword_lower in q['filename'].lower()
    ]

results = search_questions(fe_questions, 'closure')
for r in results:
    print(f"[{r['category']}] {r['topic']} / {r['filename']}")
```

---

## Common Patterns

### Random Daily Question (CLI Script)

```js
// scripts/daily-question.js
import fs from 'fs';
import path from 'path';

function randomQuestion(category) {
  const dir = path.join(process.cwd(), category);
  const allFiles = [];

  for (const topic of fs.readdirSync(dir)) {
    const topicPath = path.join(dir, topic);
    if (!fs.statSync(topicPath).isDirectory()) continue;
    for (const file of fs.readdirSync(topicPath)) {
      if (file.endsWith('.md')) {
        allFiles.push(path.join(topicPath, file));
      }
    }
  }

  const picked = allFiles[Math.floor(Math.random() * allFiles.length)];
  return fs.readFileSync(picked, 'utf-8');
}

const category = process.argv[2] || 'fe';
console.log(randomQuestion(category));
```

```bash
node scripts/daily-question.js fe
node scripts/daily-question.js be
```

---

## Troubleshooting

| Problem | Solution |
|---|---|
| Files not found | Ensure you cloned the full repo including subfolders (`git clone --recurse-submodules`) |
| Korean text garbled | Open files with UTF-8 encoding explicitly (`utf-8` in Node.js / Python) |
| Empty directory listings | Check that `fe/` and `be/` directories exist at root level |
| Markdown not rendering | Install a markdown parser like `marked` (JS) or `markdown` (Python) |
| Search returns no results | Try Korean keywords — content is written in Korean |

### Verify Clone Is Complete

```bash
# Should show fe/ and be/ directories
ls maeil-mail-contents/

# Count total markdown files
find maeil-mail-contents/ -name "*.md" | wc -l
```

---

## Key Facts for AI Agents

- **Primary language**: Markdown (content), no executable code in the repo itself
- **Content language**: Korean (한국어)
- **Categories**: `fe` (Frontend), `be` (Backend)
- **Purpose**: Static archive — read-only reference material
- **License**: Not specified — treat as reference/educational use
- **No build step required** — clone and read directly
- **Stars**: 311 (growing rapidly at ~103/day), indicating high community value
```

Attribution

reason-machinesreason-machines
View sourceMore from reason-machines →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →