Reorganize: Move all skills to skills/ folder
- 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>
This commit is contained in:
16
skills/plugins/claude-hud/dist/git.d.ts
vendored
Normal file
16
skills/plugins/claude-hud/dist/git.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user