# Create Article

> 根据给定主题自动生成指定行数的文章。当用户提到 AI 写作、自动写文章、生成稿子、AI 写稿时使用。

- Skill: `coderwanfeng/create-article` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add coderwanfeng/create-article`
- Raw SKILL.md: https://api.skillmd.com/api/skills/coderwanfeng/create-article/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: coderwanfeng (https://skillmd.com/u/coderwanfeng)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/coderwanfeng/create-article

---


# 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`

