vibe-tools
Version:
CLI tools for AI agents
16 lines (15 loc) • 452 B
TypeScript
import type { CommandOptions } from '../../types';
export interface GithubOptions extends CommandOptions {
repo?: string;
fromGithub?: string;
reviewOnly?: boolean;
discussionOnly?: boolean;
metadataOnly?: boolean;
noLinks?: boolean;
hideResolved?: boolean;
}
export interface RepoContext {
owner: string;
repo: string;
}
export declare function getRepoContext(options?: GithubOptions): Promise<RepoContext | null>;