{"id":25650052,"url":"https://github.com/minibikini/fish_functions","last_synced_at":"2026-04-14T00:04:07.950Z","repository":{"id":277067621,"uuid":"931220675","full_name":"minibikini/fish_functions","owner":"minibikini","description":"A collection of Fish shell functions","archived":false,"fork":false,"pushed_at":"2025-03-31T20:00:45.000Z","size":45,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-31T21:21:21.755Z","etag":null,"topics":["ai","cli","fish","fish-shell","git","git-commit","github","github-cli","llm"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/minibikini.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-11T23:04:08.000Z","updated_at":"2025-03-31T20:00:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"447a7ddb-59fb-4901-ad1d-3ea6de908f48","html_url":"https://github.com/minibikini/fish_functions","commit_stats":null,"previous_names":["minibikini/fish_functions"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/minibikini/fish_functions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minibikini%2Ffish_functions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minibikini%2Ffish_functions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minibikini%2Ffish_functions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minibikini%2Ffish_functions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minibikini","download_url":"https://codeload.github.com/minibikini/fish_functions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minibikini%2Ffish_functions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264506246,"owners_count":23619003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","cli","fish","fish-shell","git","git-commit","github","github-cli","llm"],"created_at":"2025-02-23T14:37:42.255Z","updated_at":"2026-04-14T00:04:07.921Z","avatar_url":"https://github.com/minibikini.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fish_functions\n\nMy personal fish function collection.\n\n## Installation\n\n1. Clone or download this repository to your preferred location\n2. Add the repository path to your fish function path:\n\n   ```fish\n   # Add to your ~/.config/fish/config.fish\n   set -a fish_function_path /path/to/this/repository\n   ```\n\n3. Reload your fish shell or run:\n\n   ```fish\n   source ~/.config/fish/config.fish\n   ```\n\n## Available Functions\n\n### `aicommit`\n\nGenerates AI-powered commit messages from staged changes with optional staging and pushing.\n\n\u003cimg width=\"605\" alt=\"Screenshot 2025-03-09 at 17 54 12\" src=\"https://github.com/user-attachments/assets/6fc4ae57-f034-46ae-8f30-cac6c856691d\" /\u003e\n\n**Requirements:**\n\n- [`gh`](https://cli.github.com/) with models support\n- `gh-commit-msg` function (included in this collection)\n\n**Usage:**\n\n```fish\naicommit [flags]\n```\n\n**Flags:**\n\n- `-d, --dry-run`: Show what would happen without making actual changes\n- `-a, --all`: Stage all changes (including untracked files) before committing\n- `-p, --push`: Push changes to remote after successful commit\n\n**Features:**\n\n- Interactive workflow for reviewing and approving AI-generated commit messages\n- Options to edit, regenerate, or cancel commit messages\n- Ability to stage all changes and push in a single command\n- Dry run mode for safety\n\n---\n\n### `gh-commit-msg`\n\nGenerate Git commit messages using GitHub Models.\n\n**Requirements:**\n\n- [`gh`](https://cli.github.com/) with models support\n\n**Usage:**\n\n```fish\ngh-commit-msg [flags]\n```\n\n**Flags:**\n\n- `-p, --prompt-file`: Optional path to a custom prompt file\n\n**Features:**\n\n- Analyzes staged changes in a git repository\n- Generates concise, well-structured commit messages\n- Supports custom prompts via command-line flag or `commit-prompt.md` file\n- Uses GitHub Models (GPT-4o) for generating high-quality commit messages\n\n---\n\n### `ghce` (GitHub Copilot Explain)\n\nA wrapper around `gh copilot explain` to explain commands in natural language.\n\n**Requirements:**\n\n- [`gh`](https://cli.github.com/) with Copilot extension\n\n**Usage:**\n\n```fish\nghce [flags] \u003ccommand\u003e\n```\n\n**Flags:**\n\n- `-d, --debug`: Enable debugging\n- `-h, --help`: Display help usage\n- `--hostname`: The GitHub host to use for authentication\n\n---\n\n### `ghcs` (GitHub Copilot Suggest)\n\nA wrapper around `gh copilot suggest` to get command suggestions based on natural language descriptions.\n\n**Requirements:**\n\n- [`gh`](https://cli.github.com/) with Copilot extension\n\n**Usage:**\n\n```fish\nghcs [flags] \u003cprompt\u003e\n```\n\n**Flags:**\n\n- `-d, --debug`: Enable debugging\n- `-h, --help`: Display help usage\n- `--hostname`: The GitHub host to use for authentication\n- `-t, --target`: Target for suggestion (shell, gh, git; default: \"shell\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminibikini%2Ffish_functions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminibikini%2Ffish_functions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminibikini%2Ffish_functions/lists"}