- Created skills/ directory - Moved 272 skills to skills/ subfolder - Kept agents/ at root level - Kept installation scripts and docs at root level Repository structure: - skills/ - All 272 skills from skills.sh - agents/ - Agent definitions - *.sh, *.ps1 - Installation scripts - README.md, etc. - Documentation Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
443 B
TypeScript
16 lines
443 B
TypeScript
export interface FileStats {
|
|
modified: number;
|
|
added: number;
|
|
deleted: number;
|
|
untracked: number;
|
|
}
|
|
export interface GitStatus {
|
|
branch: string;
|
|
isDirty: boolean;
|
|
ahead: number;
|
|
behind: number;
|
|
fileStats?: FileStats;
|
|
}
|
|
export declare function getGitBranch(cwd?: string): Promise<string | null>;
|
|
export declare function getGitStatus(cwd?: string): Promise<GitStatus | null>;
|
|
//# sourceMappingURL=git.d.ts.map
|