> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kodus.io/llms.txt
> Use this file to discover all available pages before exploring further.

# How to check code against Google Docs specs

> Validate your pull request implementation against specifications written in Google Docs.

Product specs and requirements often live in Google Docs. Kodus can fetch the document content and compare it against your PR diff to verify that the implementation matches the spec.

## How it works

1. **Connect the Google Docs plugin** in your workspace's [Plugins](/how_to_use/en/code_review/plugins) page
2. Make sure the document is accessible to the connected account
3. Comment on your PR:

```
@kody -v business-logic https://docs.google.com/document/d/1abc123/edit
```

4. Kody fetches the document, extracts the requirements, and compares them against the PR diff

## What you get

Kody produces a structured validation report:

* **Findings** with severity: MUST\_FIX, SUGGESTION, or INFO
* **Requirement tracing** — each finding quotes text from the Google Doc
* **Requirements Verified** — what was correctly implemented

## Tips

* Keep specs structured with clear sections and numbered requirements for best results
* You can also paste the spec content inline:

```
@kody -v business-logic
## Requirements
1. Users with role "admin" can delete any comment
2. Users can only edit their own comments within 24 hours
3. Deleted comments show "[removed]" placeholder
```

* Break large documents into sections and validate them individually for more focused feedback

For details, see [Business Logic Validation](/how_to_use/en/code_review/business_logic_validation).
