# Shiiman Google:docs

> Google Docs ドキュメントを新規作成・更新する。「ドキュメント作成」「Docs 作成」「新しいドキュメント」「ドキュメント更新」「Docs 更新」「ドキュメントに追加」「ドキュメントを編集」などで起動。

- Skill: `shiiman/shiiman-google-docs` (Agent Skill)
- Install (CLI): `npx skillmds@latest add shiiman/shiiman-google-docs`
- Raw SKILL.md: https://api.skillmd.com/api/skills/shiiman/shiiman-google-docs/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: shiiman (https://skillmd.com/u/shiiman)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/shiiman/shiiman-google-docs

---


# Docs Editor

Google Docs ドキュメントの新規作成・テキスト追加を行います。

## Help

`$ARGUMENTS` に `--help` が含まれる場合、以下を表示して終了:

```text
/shiiman-google:docs - Docs Editor

概要:
  Google Docs ドキュメントの新規作成・テキスト追加を行います。

使用方法:
  /shiiman-google:docs [オプション]

オプション:
  --help  このヘルプを表示
```

## ワークフロー

### 新規作成

```bash
python ${CLAUDE_PLUGIN_ROOT}/scripts/google_docs.py create \
  --name "ドキュメント名" \
  --folder-id "フォルダID" \
  --content "初期テキスト"
```

| オプション    | 必須 | 説明             |
| ------------- | ---- | ---------------- |
| `--name`      | Yes  | ドキュメント名   |
| `--folder-id` | No   | 保存先フォルダID |
| `--content`   | No   | 初期テキスト     |

### テキスト追加

```bash
python ${CLAUDE_PLUGIN_ROOT}/scripts/google_docs.py update \
  --doc-id "ドキュメントID" \
  --content "追加テキスト" \
  --append
```

| オプション  | 必須 | 説明                             |
| ----------- | ---- | -------------------------------- |
| `--doc-id`  | Yes  | ドキュメントID                   |
| `--content` | Yes  | 追加テキスト                     |
| `--append`  | No   | 末尾に追加（省略時は先頭に挿入） |

