Skip to content

For the complete documentation index, see llms.txt.

Google Drive as a Context Source for Documentation Suggestions

Promptless can now read your Google Drive as a read-only context source. Connect Drive on the Integrations page. Promptless searches your files when generating documentation suggestions. Google Docs are read as Markdown, Sheets as CSV, and Slides as plain text.

A lot of product knowledge lives in Google Drive, including specs, design decisions, onboarding guides, and internal runbooks. For teams where Drive is the primary working surface, this content was not visible to Promptless. A Google Doc might describe exactly how the product was supposed to work. Promptless could not read it before generating documentation suggestions for a PR.

The result was suggestions that reflected the code change alone, missing context that existed elsewhere in the organization.

When Drive is connected, Promptless searches your files as part of its normal context-gathering process. It reads file content and uses what it finds to inform suggestions. The agent skips files it cannot read as text, such as images, PDFs, and binary exports.

By default, access covers your entire connected Drive. Add drive_ids or folder_ids to the google_drive context source entry in your promptless.yaml to narrow this. Use this to point Promptless at a specific shared drive, such as one for your product team. You can also point it at a single folder, such as one containing your current-quarter specs. This keeps Promptless from seeing unrelated personal files.

The integration card on the Integrations page shows which Google account authorized the connection. Check it to confirm whose access the agent inherits before going live.

Promptless connects with read-only scopes and never modifies your Drive.

This feature helps teams where Google Workspace is the default writing surface for product knowledge. Your spec documents, feature briefs, or API decision records may live in Google Docs, not a wiki or a repo. Promptless closes the gap between what it knows and what your organization has written down.

This also helps if you maintain a shared Drive folder with evergreen reference content. Examples include style decisions, terminology lists, and architecture notes. Once connected, Promptless can pull from that material when generating suggestions instead of reasoning from scratch.

  1. Go to the Integrations page in the Promptless dashboard.
  2. Connect Google Drive. Authorize with the Google account that has access to the files you want Promptless to read.
  3. Promptless adds an unscoped google_drive context source entry to your promptless.yaml automatically.

To scope access to specific drives or folders, edit the entry in your configuration:

context_sources:
- type: google_drive
drive_ids:
- 0AExampleDriveIdUk9PVA
folder_ids:
- 1BExampleFolderIdXyZ

Leave drive_ids and folder_ids empty, or omit them, to allow access to everything the connected account can read.