pst-converter
Convert Microsoft Outlook Personal Storage Table (.pst) files into AI-friendly formats (Markdown, JSON, CSV). Use this skill to extract emails, metadata, and attachments from legacy email archives for analysis, context, or migration.
소스 정보
- 저장소
- nweii/convert-psts
- 최근 소스 활동
- 2025년 12월 19일 17:51
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
파일 탐색기
8 개 파일SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- pst-converter
- description
- Convert Microsoft Outlook Personal Storage Table (.pst) files into AI-friendly formats (Markdown, JSON, CSV). Use this skill to extract emails, metadata, and attachments from legacy email archives for analysis, context, or migration.
- allowed-tools
- ["run_terminal_cmd","read_file"]
# PST Converter Skill
## Description
This skill provides a tool to extract and format data from Outlook PST files. It is useful for:
- Reading legacy email archives.
- Converting PST content to Markdown for LLM context.
- Extracting metadata for analysis (CSV/JSON).
## Requirements
- **System**: `libpst` must be installed.
- macOS: `brew install libpst`
- Linux: `sudo apt-get install pst-utils`
- **Python**: Python 3.8+ (Standard library only).
## Instructions
Run the `cli.py` script found in this directory.
### Basic Syntax
```bash
python3 cli.py <path_to_pst_file> [options]
```
### Options
- `-f, --format`: Output format. Choices: `markdown` (default), `json`, `csv`, `both` (md+json), `all`.
- `--full`: Include full email bodies (default is metadata-only).
- `--folders`: Preserve original folder structure.
- `--include-threading`: Include thread ID metadata.
- `-o, --output <dir>`: Specify output directory (default: `./output`).
## Examples
### 1. Quick Summary (Metadata only)
Good for scanning an archive's contents.
```bash
python3 cli.py archive.pst
```
### 2. Prepare for LLM Context (Markdown)
Extracts full content into a readable Markdown format.
```bash
python3 cli.py archive.pst --full -f markdown
```
### 3. Data Analysis (JSON/CSV)
Extract structured data.
```bash
python3 cli.py archive.pst --full -f json
```
## Troubleshooting
- **`readpst` not found**: Install `libpst` via your system package manager.
GitHub에서 보기