vibe-tools
Version:
CLI tools for AI agents
11 lines (10 loc) • 317 B
TypeScript
import type { CommandOptions } from '../../types';
export interface GithubOptions extends CommandOptions {
repo?: string;
fromGithub?: string;
}
export interface RepoContext {
owner: string;
repo: string;
}
export declare function getRepoContext(options?: GithubOptions): Promise<RepoContext | null>;