Skip to main content
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 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
  1. 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.