UNPKG

@bobmatnyc/ai-code-review

Version:

A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter

27 lines (26 loc) 824 B
/** * @fileoverview Command to sync PROJECT.md with GitHub Projects. * * This module provides a command-line interface for syncing PROJECT.md content * with GitHub Projects. It supports both directions: from PROJECT.md to GitHub * Projects and from GitHub Projects to PROJECT.md. */ /** * Command options */ interface SyncGitHubProjectsOptions { direction?: 'to-github' | 'from-github'; projectPath?: string; descriptionOnly?: boolean; } /** * Sync PROJECT.md with GitHub Projects * @param options Command options */ export declare function syncGitHubProjects(options?: SyncGitHubProjectsOptions): Promise<void>; /** * Command line handler for sync-github-projects command * @param args Command line arguments */ export declare function handleSyncGitHubProjectsCommand(): Promise<void>; export {};