---
name: Create Article
slug: create-article
category: Writing
description: Create Article generates an article of a specified length from a given topic. Use it for AI writing, auto-drafting, or generating稿子 when you need a structured article from a theme.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/tools/create_article"
language: Python
stars: 1339
forks: 301
install: "npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/tools/create_article ~/.claude/skills/create_article"
installs_to: ~/.claude/skills/create_article
source_path: skills/tools/create_article/SKILL.md
collection_size: 50
category_size: 1012
collection_url: "https://dirskills.com/collections/CoderWanFeng/python-office"
added: 2026-08-12T04:43:11.465Z
last_synced: 2026-08-12T04:43:11.465Z
canonical_url: "https://dirskills.com/skills/create-article"
---

# Create Article

Create Article generates an article of a specified length from a given topic. Use it for AI writing, auto-drafting, or generating稿子 when you need a structured article from a theme.

**Install:**

```bash
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/tools/create_article ~/.claude/skills/create_article
```

## README

# create_article Skill

> 创建文章

## 功能描述

根据给定的主题，自动创建指定行数的文章。

## 所属分类

`office/skills/tools/create_article/`

## 调用方式

```python
from skills.tools import create_article

create_article(
    theme='人工智能的发展',
    line_num=300
)
```

## 参数说明

| 参数 | 类型 | 必填 | 默认值 | 说明 |
|------|------|------|--------|------|
| `theme` | str | 是 | - | 文章的主题 |
| `line_num` | int | 否 | `200` | 文章的行数 |

## 返回值

`None`

## 使用示例

```python
from skills.tools import create_article
create_article(theme='Python 自动化办公', line_num=500)
```

## 原始函数

`office.api.tools.create_article`
