# Skill 096

> A comprehensive skill that focuses on managing various document types, including creation, editing, and organization of files. This skill is designed for handling all types of document management tasks effectively.

- Skill: `legendtkl/skill-096` (Agent Skill)
- Install (CLI): `npx skillmds@latest add legendtkl/skill-096`
- Raw SKILL.md: https://api.skillmd.com/api/skills/legendtkl/skill-096/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: Proprietary. LICENSE.txt has complete terms
- Author: legendtkl (https://skillmd.com/u/legendtkl)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/legendtkl/skill-096

---


# Document Manager

## Overview

The Document Manager skill provides a versatile solution for managing a wide range of document types. Whether you need to create, edit, or organize documents, this skill covers all aspects of document management.

## Key Features
- **Create Documents**: Generate new documents in various formats.
- **Edit Content**: Modify existing documents with ease.
- **Organize Files**: Sort and manage documents in an efficient manner.

## Document Creation
To create new documents, you can utilize various libraries depending on the file format required. For example, use `docx` for Word documents or `pdf-lib` for PDF documents.

### Sample Code for Document Creation
```javascript
const { Document, Packer, Paragraph, TextRun } = require('docx');

const doc = new Document();

doc.addSection({
    properties: {},
    children: [
        new Paragraph({
            children: [
                new TextRun('Hello World!'),
                new TextRun({ text: 'This is a new document.', break: 1 }),
            ],
        }),
    ],
});

Packer.toBuffer(doc).then((buffer) => {
    fs.writeFileSync('NewDocument.docx', buffer);
});
```

## Document Editing
Editing documents can be as simple as loading a document, making changes, and saving it back. The exact implementation will depend on the document type and library used.

## Organizing Files
For organizing files, consider using file management libraries that allow you to sort, rename, and delete files based on your requirements.

## Conclusion
The Document Manager skill offers a broad and flexible approach to document management, providing users with the tools they need to handle all types of documents effectively.
