# google-docs > Manage Google Docs - create documents, read/write content, formatting, export - Author: Min Khant - Repository: minkhant1996/openclaw-google-skills - Version: 20260203185915 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-08 - Source: https://github.com/minkhant1996/openclaw-google-skills - Web: https://mule.run/skillshub/@@minkhant1996/openclaw-google-skills~google-docs:20260203185915 --- --- name: google-docs description: "Manage Google Docs - create documents, read/write content, formatting, export" metadata: { "openclaw": { "emoji": "📝", "requires": { "bins": ["gdocs"] } } } --- # Google Docs Skill Use the `gdocs` command for ALL document-related tasks. ## Commands ### List & Create ```bash gdocs list # List documents gdocs create "Title" # Create new gdocs read # Read content gdocs search "query" # Search docs ``` ### Edit ```bash gdocs append --text "Text" # Add text gdocs insert --text "Text" --index 1 gdocs replace --find "old" --replace "new" ``` ### Structure ```bash gdocs heading --text "Title" --level 1 gdocs bullets --items "Item1,Item2,Item3" gdocs table --rows 3 --cols 3 ``` ### Export ```bash gdocs export --format pdf --output file.pdf gdocs export --format docx --output file.docx ``` For full help: `gdocs help`