What problem does it solve? Adding new rows to a Google Sheets spreadsheet normally requires opening the web UI or writing API integration code. This Skill lets you append one or many rows directly from the command line using the gws CLI, making it easy to log data, record entries, or feed spreadsheets from scripts and AI workflows. ## Core Features & Use Cases - Single-row append: Pass comma-separated values with --values for quick one-line inserts. - Bulk multi-row insert: Pass a JSON array of rows with --json-values to append multiple records in one call. - Targeted tab selection: Use --range in A1 notation (e.g. 'Sheet2!A1') to append to a specific sheet tab instead of the default first sheet. - Use Case: After processing daily sales data, append each day's totals as a new row in a tracking spreadsheet with gws sheets +append --spreadsheet ID --values '2024-06-01,1520.50,42'. ## Quick Start Ask the AI to append a row of values to your Google Sheets spreadsheet by providing the spreadsheet ID and the comma-separated values to add.