{"id":46638150,"url":"https://github.com/slice-soft/keel","last_synced_at":"2026-04-20T23:06:37.015Z","repository":{"id":341073122,"uuid":"1168151853","full_name":"slice-soft/keel","owner":"slice-soft","description":"Keel CLI — modular scaffolding and automation for building Go services","archived":false,"fork":false,"pushed_at":"2026-03-21T01:05:07.000Z","size":223,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-21T15:53:55.547Z","etag":null,"topics":["cli","go","keel","scaffolding","slicesoft"],"latest_commit_sha":null,"homepage":"https://docs.keel-go.dev/en/cli/overview/","language":"Go","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/slice-soft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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-02-27T04:13:03.000Z","updated_at":"2026-03-21T01:04:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/slice-soft/keel","commit_stats":null,"previous_names":["slice-soft/keel"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/slice-soft/keel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slice-soft%2Fkeel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slice-soft%2Fkeel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slice-soft%2Fkeel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slice-soft%2Fkeel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slice-soft","download_url":"https://codeload.github.com/slice-soft/keel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slice-soft%2Fkeel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32069442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["cli","go","keel","scaffolding","slicesoft"],"created_at":"2026-03-08T02:12:46.415Z","updated_at":"2026-04-20T23:06:37.004Z","avatar_url":"https://github.com/slice-soft.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://cdn.slicesoft.dev/boat.svg\" width=\"400\" /\u003e\n\n# Keel\n\nKeel is a Go framework for building REST APIs with modular \narchitecture, automatic OpenAPI, and built-in validation.\n\n[![CI](https://github.com/slice-soft/ss-keel-core/actions/workflows/ci.yml/badge.svg)](https://github.com/slice-soft/ss-keel-core/actions)\n![Go](https://img.shields.io/badge/Go-1.25+-00ADD8?logo=go\u0026logoColor=white)\n[![Go Report Card](https://goreportcard.com/badge/github.com/slice-soft/ss-keel-core)](https://goreportcard.com/report/github.com/slice-soft/ss-keel-core)\n[![Go Reference](https://pkg.go.dev/badge/github.com/slice-soft/ss-keel-core.svg)](https://pkg.go.dev/github.com/slice-soft/ss-keel-core)\n![License](https://img.shields.io/badge/License-MIT-green)\n![Made in Colombia](https://img.shields.io/badge/Made%20in-Colombia-FCD116?labelColor=003893)\n\n\n## Features\n\n- 🚀 **Quick Project Scaffolding** - Create new projects with best practices built-in\n- 🧩 **Module Generation** - Generate controllers, services, repositories, and more\n- 🔄 **Live Reload** - Built-in development server with hot reload\n- ⚡ **Fast \u0026 Lightweight** - Written in Go, optimized for performance\n- 📦 **Auto-updates** - Stay up-to-date with the latest features\n\n## Installation\n\n```bash\n# Homebrew (recommended)\nbrew tap slice-soft/tap\nbrew install slice-soft/tap/keel\n\n# Or with Go install\ngo install github.com/slice-soft/keel@latest\n```\n\n## Quick Start\n\n### Create a new project\n\n```bash\nkeel new my-app\ncd my-app\n```\n\n### Generate a module\n\n```bash\nkeel generate module users\n```\n\nThis creates:\n- `users/module.go` - Module definition\n- `users/controller.go` - HTTP handlers\n- `users/service.go` - Business logic\n- `users/repository.go` - Data access layer\n\n### Run development server\n\n```bash\nkeel run\n```\n\n## Commands\n\n### `keel new \u003cproject-name\u003e`\n\nCreate a new Keel project with the complete structure:\n\n```bash\nkeel new my-api\n```\n\n### `keel generate [type] [name]`\n\nGenerate different components:\n\n```bash\n# Generate a complete module\nkeel generate module posts\n\n# Generate individual components\nkeel generate controller posts\nkeel generate service posts\nkeel generate repository posts\nkeel generate middleware auth\nkeel generate guard admin\nkeel generate dto create-user\nkeel generate crud products\n```\n\n### `keel run`\n\nStart the development server with live reload:\n\n```bash\nkeel run\n```\n\n### `keel upgrade`\n\nUpgrade Keel CLI to the latest version:\n\n```bash\nkeel upgrade\n```\n\n### `keel version`\n\nShow the installed version:\n\n```bash\nkeel version\n```\n\n## Project Structure\n\n```\nmy-app/\n├── main.go           # Application entry point\n├── go.mod            # Go module definition\n├── .env              # Environment variables\n├── air.toml          # Live reload configuration\n└── modules/\n    └── users/\n        ├── module.go      # Module registration\n        ├── controller.go  # HTTP handlers\n        ├── service.go     # Business logic\n        └── repository.go  # Data layer\n```\n\n## Configuration\n\nKeel projects use a `keel.toml` file for configuration:\n\n```toml\n[app]\nname = \"my-app\"\nversion = \"0.1.0\"\n\n[server]\nport = 8080\nhost = \"localhost\"\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for setup and repository-specific rules.\nThe base workflow, commit conventions, and community standards live in [ss-community](https://github.com/slice-soft/ss-community/blob/main/CONTRIBUTING.md).\n\n## Community\n\n| Document | |\n|---|---|\n| [CONTRIBUTING.md](https://github.com/slice-soft/ss-community/blob/main/CONTRIBUTING.md) | Workflow, commit conventions, and PR guidelines |\n| [GOVERNANCE.md](https://github.com/slice-soft/ss-community/blob/main/GOVERNANCE.md) | Decision-making, roles, and release process |\n| [CODE_OF_CONDUCT.md](https://github.com/slice-soft/ss-community/blob/main/CODE_OF_CONDUCT.md) | Community standards |\n| [VERSIONING.md](https://github.com/slice-soft/ss-community/blob/main/VERSIONING.md) | SemVer policy and breaking changes |\n| [SECURITY.md](https://github.com/slice-soft/ss-community/blob/main/SECURITY.md) | How to report vulnerabilities |\n| [MAINTAINERS.md](https://github.com/slice-soft/ss-community/blob/main/MAINTAINERS.md) | Active maintainers |\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n\n## Links\n\n- Website: [keel-go.dev](https://keel-go.dev)\n- GitHub: [github.com/slice-soft/ss-keel-cli](https://github.com/slice-soft/ss-keel-cli)\n- Documentation: [docs.keel-go.dev](https://docs.keel-go.dev)\n\n---\n\nMade by [SliceSoft](https://slicesoft.dev) — Colombia 💙\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslice-soft%2Fkeel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslice-soft%2Fkeel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslice-soft%2Fkeel/lists"}