{"id":47707545,"url":"https://github.com/dbtlr/skald","last_synced_at":"2026-04-02T18:03:41.326Z","repository":{"id":347710858,"uuid":"1194673152","full_name":"dbtlr/skald","owner":"dbtlr","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-29T05:17:10.000Z","size":129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-29T08:15:53.637Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dbtlr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-28T17:04:17.000Z","updated_at":"2026-03-29T05:17:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dbtlr/skald","commit_stats":null,"previous_names":["dbtlr/skald"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/dbtlr/skald","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbtlr%2Fskald","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbtlr%2Fskald/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbtlr%2Fskald/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbtlr%2Fskald/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbtlr","download_url":"https://codeload.github.com/dbtlr/skald/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbtlr%2Fskald/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31312744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-04-02T18:03:20.704Z","updated_at":"2026-04-02T18:03:41.301Z","avatar_url":"https://github.com/dbtlr.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Skald (`sk`)\n\nAI-powered git workflow CLI. Generates commit messages, PR titles, and PR descriptions using AI so you can stay in flow.\n\n## Features\n\n- **Smart commits** — AI-generated commit messages from your staged diff\n- **Interactive carousel** — cycle through multiple message candidates before committing\n- **Commit body** — generate a multi-line description alongside the title with `--body`\n- **PR generation** — AI-generated PR titles and descriptions from your branch diff and commit history\n- **Context injection** — pass hints via `--context`, `--context-file`, or interactively\n- **Prompt templates** — 4 built-in Tera templates, fully customizable with `sk config eject`\n- **Config \u0026 aliases** — layered YAML config (global + project), composable flag shortcuts\n- **Doctor** — environment, config, provider, and maintenance checks with `--fix` and `--offline`\n- **Multi-provider** — Claude, Codex, Gemini, OpenCode, and Copilot CLI support\n- **Multi-platform** — GitHub and GitLab support with `sk pr` / `sk mr`\n- **Shell completions** — bash, zsh, and fish\n\n## Install\n\n### Install script (recommended)\n\n```sh\ncurl -fsSL https://raw.githubusercontent.com/dbtlr/skald/main/scripts/install.sh | bash\n```\n\n### From crates.io\n\n```sh\ncargo install skald-cli\n```\n\n### GitHub Releases\n\nPre-built binaries for Linux, macOS, and Windows are available on the [Releases page](https://github.com/dbtlr/skald/releases). Download the archive for your platform and extract the `sk` binary.\n\n## Quick Start\n\n```sh\n# Generate a commit message interactively (carousel of candidates)\nsk commit\n\n# Auto-accept the top candidate — no prompts\nsk commit -y\n\n# Include a multi-line body in the commit\nsk commit -y --body\n\n# Preview generated messages without committing\nsk commit --dry-run\n\n# Give the AI extra context about your change\nsk commit -y --context \"refactored auth to use JWT\"\n\n# Preview a PR title and description without creating anything\nsk pr --dry-run\n\n# Auto-create a PR on GitHub (or update if one exists)\nsk pr -y\n\n# Push the branch and open a draft PR in one step\nsk pr -y -d --push\n\n# Validate your environment (includes provider connectivity)\nsk doctor\n\n# Skip network checks\nsk doctor --offline\n\n# Check for updates and self-upgrade\nsk upgrade\n\n# See what would happen without actually upgrading\nsk upgrade --dry-run\n```\n\n## Shell Completions\n\n```sh\nsk completions zsh  \u003e\u003e ~/.zfunc/_sk\nsk completions bash \u003e\u003e ~/.local/share/bash-completion/completions/sk\nsk completions fish \u003e  ~/.config/fish/completions/sk.fish\n```\n\n## Configuration\n\nSkald uses layered YAML config: global (`~/.config/skald/config.yaml`) merged with project (`.skaldrc.yaml`). Initialize with `sk config init`.\n\n```yaml\nprovider: claude\nlanguage: English\ncommit:\n  num_candidates: 3\naliases:\n  ci: \"commit -n 5\"\n  ca: \"commit -y -a\"\n  fix: \"commit -y -a --context 'bug fix'\"\n```\n\nRun `sk aliases` to see active aliases and their sources.\n\n## Documentation\n\n- [Getting Started](docs/getting-started.md) — install, first run, basic usage\n- [CLI Reference](docs/cli-reference.md) — commands, flags, output formats\n- [Configuration](docs/configuration.md) — config files, schema, merge rules\n- [Aliases](docs/aliases.md) — composable flag shortcuts\n- [Prompts](docs/prompts.md) — template system, customization, eject workflow\n- [Commit](docs/commit.md) — commit message generation, modes, and options\n- [PR](docs/pr.md) — PR title/description generation and creation\n- [Platforms](docs/platforms.md) — GitHub setup and platform configuration\n- [Providers](docs/providers.md) — supported AI providers, configuration, and CLI overrides\n- [Doctor](docs/doctor.md) — environment validation, auto-fix, diagnostics\n- [Integrations](docs/integrations.md) — worktrunk, lazygit, fugitive, git hooks\n\n## License\n\nMIT — see [LICENSE](LICENSE) for details.\n\n---\n\nBuilt by [Drew Butler](https://github.com/dbtlr).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbtlr%2Fskald","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbtlr%2Fskald","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbtlr%2Fskald/lists"}