Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问clear审计未展示

word-document-creatorWord 文档创建者

Agent Skill

word-document-creator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,510

周安装

531

GitHub Stars

公开资料未说明

下载量

3,097
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:word-document-creator(Word 文档创建者)
来源仓库:https://github.com/eddiebe147/claude-settings
仓库路径:skills/word-document-creator
安装命令:
npx skills add eddiebe147/claude-settings --skill "word-document-creator"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add eddiebe147/claude-settings --skill "word-document-creator"

简介

word-document-creator 用于创建和管理 Word 文档,支持多种模板格式。

  • 适合在 Codex、Claude、Cursor 等平台中生成结构化的办公文档。
  • 通过 npx skills add eddiebe147/claude-settings --skill "word-document-creator" 安装。
  • 需确认文件写入权限,避免覆盖重要文档或触发意外网络请求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
Word Document Creator
slug
word-document-creator
description
Generate Microsoft Word .docx files with formatting, tables, images, and styles
category
document-creation
complexity
complex
version
1.0.0
author
ID8Labs
triggers
tags

Word Document Creator

The Word Document Creator skill provides comprehensive capabilities for generating Microsoft Word (.docx) documents programmatically. It handles formatting, styles, tables, images, headers, footers, and complex layouts using the docx library for Node.js. This skill is essential for automated document generation, report creation, and template-based workflows.

Create everything from simple letters to complex reports with tables, charts, images, and custom styling. The skill supports both creation from scratch and template-based generation with variable replacement.

Core Workflows

Workflow 1: Create Formatted Document from Scratch

Purpose: Build a Word document with headings, paragraphs, lists, and formatting

Steps:

  1. Import docx library and create Document instance
  2. Define styles for headings, body text, lists
  3. Add sections with headers and footers
  4. Create paragraphs with formatting (bold, italic, color, alignment)
  5. Add numbered and bulleted lists
  6. Insert tables with formatting
  7. Export to .docx file

Implementation:

const { Document, Packer, Paragraph, TextRun, HeadingLevel, AlignmentType } = require('docx');
const fs = require('fs');

async function createDocument(outputPath) {
  const doc = new Document({
    sections: [{
      properties: {},
      headers: {
        default: new Header({
          children: [new Paragraph({ text: "Company Name", alignment: AlignmentType.RIGHT })]
        })
      },
      children: [
        new Paragraph({
          text: "Business Proposal",
          heading: HeadingLevel.HEADING_1,
          alignment: AlignmentType.CENTER
        }),
        new Paragraph({
          children: [
            new TextRun({ text: "Prepared for: ", bold: true }),
            new TextRun("Client Name")
          ]
        }),
        new Paragraph({
          text: "Executive Summary",
          heading: HeadingLevel.HEADING_2
        }),
        new Paragraph({
          text: "This proposal outlines the scope, timeline, and budget for the project...",
          alignment: AlignmentType.JUSTIFIED
        })
      ]
    }]
  });

  const buffer = await Packer.toBuffer(doc);
  fs.writeFileSync(outputPath, buffer);
}

Workflow 2: Generate Document from Template

Purpose: Use a template Word file and replace placeholders with actual data

Steps:

  1. Load template .docx file using pizzip and docxtemplater
  2. Define data object with replacement values
  3. Set data to template
  4. Render template with substitutions
  5. Handle loops for repeated sections (tables, lists)
  6. Handle images and conditional sections
  7. Export final document

Implementation:

const Docxtemplater = require('docxtemplater');
const PizZip = require('pizzip');
const fs = require('fs');

function generateFromTemplate(templatePath, data, outputPath) {
  const content = fs.readFileSync(templatePath, 'binary');
  const zip = new PizZip(content);

  const doc = new Docxtemplater(zip, {
    paragraphLoop: true,
    linebreaks: true
  });

  // Data object with placeholder values
  doc.setData({
    clientName: data.clientName,
    projectName: data.projectName,
    date: new Date().toLocaleDateString(),
    items: data.items, // Array for looping
    total: data.total
  });

  doc.render();

  const buf = doc.getZip().generate({
    type: 'nodebuffer',
    compression: 'DEFLATE'
  });

  fs.writeFileSync(outputPath, buf);
}

// Template placeholders: {clientName}, {projectName}, etc.
// Loop syntax: {#items}{name} - {price}{/items}

Workflow 3: Create Document with Tables and Images

Purpose: Build complex documents containing data tables and embedded images

Steps:

  1. Create Document instance
  2. Define table with rows and columns
  3. Set cell formatting (borders, shading, alignment)
  4. Add table headers with bold styling
  5. Populate data rows
  6. Insert images with sizing and positioning
  7. Add captions to images
  8. Export document

Implementation:

const { Document, Packer, Paragraph, Table, TableRow, TableCell, Media } = require('docx');
const fs = require('fs');

async function createTableDocument(data, imagePath, outputPath) {
  const image = Media.addImage(doc, fs.readFileSync(imagePath), 300, 200);

  const doc = new Document({
    sections: [{
      children: [
        new Paragraph({ text: "Sales Report Q4 2025", heading: HeadingLevel.HEADING_1 }),
        new Table({
          rows: [
            // Header row
            new TableRow({
              children: [
                new TableCell({ children: [new Paragraph({ text: "Month", bold: true })] }),
                new TableCell({ children: [new Paragraph({ text: "Revenue", bold: true })] }),
                new TableCell({ children: [new Paragraph({ text: "Growth", bold: true })] })
              ]
            }),
            // Data rows
            ...data.map(row => new TableRow({
              children: [
                new TableCell({ children: [new Paragraph(row.month)] }),
                new TableCell({ children: [new Paragraph(row.revenue)] }),
                new TableCell({ children: [new Paragraph(row.growth)] })
              ]
            }))
          ]
        }),
        new Paragraph({ text: "" }), // Spacing
        new Paragraph({ text: "Revenue Trend Chart", heading: HeadingLevel.HEADING_2 }),
        new Paragraph({ children: [image] }),
        new Paragraph({ text: "Figure 1: Quarterly Revenue Trend", italics: true })
      ]
    }]
  });

  const buffer = await Packer.toBuffer(doc);
  fs.writeFileSync(outputPath, buffer);
}

Workflow 4: Batch Generate Documents

Purpose: Create multiple personalized documents from a data source

Steps:

  1. Load data source (JSON, CSV, database)
  2. Load document template
  3. For each record:

- Create new document instance - Populate with record data - Apply formatting - Save with unique filename

  1. Track success/failure for each document
  2. Generate summary report

Workflow 5: Add Advanced Formatting

Purpose: Apply styles, fonts, colors, spacing, and page layout

Steps:

  1. Define custom styles in document
  2. Create style hierarchy (heading levels, body, captions)
  3. Set font families, sizes, colors
  4. Configure paragraph spacing and indentation
  5. Set page margins and orientation
  6. Add page numbers and section breaks
  7. Apply themes and color schemes

Implementation:

const doc = new Document({
  styles: {
    paragraphStyles: [
      {
        id: "CustomHeading",
        name: "Custom Heading",
        basedOn: "Heading1",
        next: "Normal",
        run: {
          size: 32,
          bold: true,
          color: "2E74B5",
          font: "Calibri"
        },
        paragraph: {
          spacing: { before: 240, after: 120 }
        }
      }
    ]
  },
  sections: [{
    properties: {
      page: {
        margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 } // 1440 = 1 inch
      }
    },
    children: [
      new Paragraph({ text: "Styled Heading", style: "CustomHeading" })
    ]
  }]
});

Quick Reference

ActionCommand/Trigger
Create new document"create word document [name]"
From template"generate docx from template [file]"
Add table"add table with [rows] rows to [doc]"
Insert image"insert [image] into word doc"
Batch generate"create word docs for each [data]"
Apply style"format word doc with [style]"
Add header/footer"add header [text] to document"
Create TOC"generate table of contents"

Best Practices

  • Styles Over Direct Formatting: Define and use styles for consistency and easy updates
  • Templates: Use templates for repeated document types (contracts, reports, letters)
  • Page Layout: Set margins, orientation, and page size early in document creation
  • Tables: Use table styles for professional appearance and easy maintenance
  • Images: Compress images before embedding; use appropriate resolution (150-300 DPI)
  • Headers/Footers: Keep them simple and consistent across sections
  • File Size: Monitor document size; avoid embedding high-resolution images unnecessarily
  • Compatibility: Test documents in different Word versions if targeting broad audience
  • Data Validation: Validate input data before template substitution to avoid errors
  • Error Handling: Gracefully handle missing template placeholders
  • Version Control: Use template versioning for document types that evolve
  • Accessibility: Use proper heading hierarchy and alt text for images

Common Patterns

Meeting Minutes:

const doc = new Document({
  sections: [{
    children: [
      new Paragraph({ text: "Meeting Minutes", heading: HeadingLevel.HEADING_1 }),
      new Paragraph({ text: `Date: ${date}` }),
      new Paragraph({ text: `Attendees: ${attendees.join(', ')}` }),
      new Paragraph({ text: "Agenda", heading: HeadingLevel.HEADING_2 }),
      // ... agenda items
      new Paragraph({ text: "Action Items", heading: HeadingLevel.HEADING_2 }),
      // ... action items table
    ]
  }]
});

Mail Merge:

// Template: Dear {firstName} {lastName}, ...
contacts.forEach(contact => {
  generateFromTemplate('letter-template.docx', contact, `letter-${contact.id}.docx`);
});

Dependencies

Install required packages:

npm install docx docxtemplater pizzip

Optional for advanced features:

npm install docx-templates # Alternative templating
npm install officegen      # Legacy support

Error Handling

  • Template Errors: Validate template structure before processing
  • Missing Data: Provide default values for optional template fields
  • Image Loading: Check image file existence before embedding
  • File Permissions: Handle write permission errors gracefully
  • Memory Issues: For large documents, consider streaming if supported
  • Encoding: Ensure proper UTF-8 encoding for international characters

Performance Tips

  • Reuse style definitions across multiple documents
  • Pre-load templates for batch operations
  • Use streaming for very large documents
  • Compress images before embedding
  • Batch file system operations
  • Cache compiled templates when possible

Advanced Features

Table of Contents:

new TableOfContents("Table of Contents", {
  hyperlink: true,
  headingStyleRange: "1-3"
});

Conditional Sections:

// In template: {#showSection}Content{/showSection}
doc.setData({ showSection: condition ? {...} : false });

Custom Numbering:

new Paragraph({
  text: "Numbered item",
  numbering: {
    reference: "custom-numbering",
    level: 0
  }
});

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

24.77%
按下载量换算767

OpenCode

22.17%
按下载量换算687

Gemini CLI

17.28%
按下载量换算535

Antigravity

13.73%
按下载量换算425

Cursor

7.64%
按下载量换算237

windsurf

3.58%
按下载量换算111

安全审计

暂无安全审计结果可展示。

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills