feat: add AI-powered Vague documentation review automation - #61
Open
mcclowes wants to merge 2 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Add a new module that uses Anthropic AI APIs to periodically review Vague documentation and identify changes needed in Reqon. Components: - Anthropic API client with retry/backoff logic - GitHub API integration to fetch Vague docs and source - Documentation analyzer comparing Vague with Reqon implementation - Reporter with console, JSON, and markdown output formats - CLI command (reqon-ai-review) for manual execution - GitHub Actions workflow for weekly automated reviews Usage: ANTHROPIC_API_KEY=sk-... npm run ai-review ANTHROPIC_API_KEY=sk-... npm run ai-review:save --verbose The workflow runs weekly and creates GitHub issues when changes are detected in Vague that may require Reqon updates.
Add change detection to avoid running expensive AI analysis when Vague repository hasn't changed since the last review. Changes: - Add ReviewStateStore to track last reviewed commit SHA - Add checkForChanges() method to DocumentationAnalyzer - Add --check-only flag (no API key needed) to check for changes - Add --force flag to bypass change detection - Update GitHub Actions workflow to check changes first - Skip review job entirely if no changes (saves API costs) Exit codes: - 0: No changes needed - 1: Changes needed (non-critical) - 2: Critical changes needed - 3: Skipped (no changes since last review)
mcclowes
force-pushed
the
claude/ai-doc-review-automation-6Vl0S
branch
from
January 8, 2026 23:49
4107366 to
7ea8b45
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a new module that uses Anthropic AI APIs to periodically review
Vague documentation and identify changes needed in Reqon.
Components:
Usage:
ANTHROPIC_API_KEY=sk-... npm run ai-review
ANTHROPIC_API_KEY=sk-... npm run ai-review:save --verbose
The workflow runs weekly and creates GitHub issues when changes
are detected in Vague that may require Reqon updates.