{"id":47595959,"url":"https://github.com/encoredev/skills","last_synced_at":"2026-04-01T18:05:18.916Z","repository":{"id":332112137,"uuid":"1130284824","full_name":"encoredev/skills","owner":"encoredev","description":"Agent Skills for development with Encore.","archived":false,"fork":false,"pushed_at":"2026-03-16T19:50:33.000Z","size":176,"stargazers_count":18,"open_issues_count":1,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-16T23:17:24.987Z","etag":null,"topics":["claude-code","skills"],"latest_commit_sha":null,"homepage":"https://encore.dev","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/encoredev.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-08T09:37:57.000Z","updated_at":"2026-03-16T15:20:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/encoredev/skills","commit_stats":null,"previous_names":["encoredev/skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/encoredev/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encoredev%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encoredev%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encoredev%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encoredev%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/encoredev","download_url":"https://codeload.github.com/encoredev/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encoredev%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290742,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: 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":["claude-code","skills"],"created_at":"2026-04-01T18:04:45.854Z","updated_at":"2026-04-01T18:05:18.905Z","avatar_url":"https://github.com/encoredev.png","language":null,"funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# Encore Skills\n\nAgent skills for building backend applications with [Encore](https://encore.dev), the backend framework for Go and TypeScript.\n\n## What These Skills Do\n\nEncore is a backend framework with built-in infrastructure. You declare what you need (databases, Pub/Sub, cron jobs, etc.) in code, and Encore understands how to run it.\n\nThese skills help AI agents use Encore's declarative patterns correctly:\n\n- **Declarative infrastructure** - define resources in code\n- **Type-safe APIs** - request/response validation built-in\n- **Service-to-service calls** - automatic type safety across service boundaries\n- **Built-in observability** - tracing, metrics, and logging out of the box\n\n### How Infrastructure Works\n\n- **Local development** (`encore run`) - Encore provisions Docker containers automatically (Postgres, Redis, etc.)\n- **Production deployment** - Either use [Encore Cloud](https://encore.dev/cloud) to provision in your AWS/GCP account, or self-host using the generated infrastructure configuration\n\n## Installation\n\n```bash\nnpx add-skill encoredev/skills\n```\n\nWorks with Cursor, Claude Code, Codex, OpenCode, and 10+ other agents.\n\n```bash\n# List available skills\nnpx add-skill encoredev/skills --list\n\n# Install specific skills\nnpx add-skill encoredev/skills --skill encore-getting-started --skill encore-api\n\n# Install to specific agents\nnpx add-skill encoredev/skills -a cursor -a claude-code\n\n# Global installation\nnpx add-skill encoredev/skills -g\n```\n\n### Claude Code Marketplace\n\nIf you prefer to use Claude Code directly:\n\n```bash\nclaude plugin marketplace add encoredev/skills\nclaude plugin install encore-skills@encore-skills\n```\n\n### Manual Installation\n\nCopy the `SKILL.md` files from `encore/` to your agent's skills directory.\n\n## Available Skills\n\n### TypeScript\n\n| Skill | Description |\n|-------|-------------|\n| `encore-getting-started` | Get started with Encore.ts |\n| `encore-api` | Create type-safe API endpoints |\n| `encore-auth` | Implement authentication |\n| `encore-infrastructure` | Declare databases, Pub/Sub, cron jobs, secrets |\n| `encore-service` | Structure and organize services |\n| `encore-database` | Database queries, migrations, ORM integration |\n| `encore-testing` | Test APIs with Vitest |\n| `encore-frontend` | Connect React/Next.js apps |\n| `encore-code-review` | Review code for best practices |\n| `encore-migrate` | Migrate existing backends to Encore |\n\n### Go\n\n| Skill | Description |\n|-------|-------------|\n| `encore-go-getting-started` | Get started with Encore Go |\n| `encore-go-api` | Create API endpoints |\n| `encore-go-auth` | Implement authentication |\n| `encore-go-infrastructure` | Declare infrastructure |\n| `encore-go-service` | Structure services |\n| `encore-go-database` | Database queries and migrations |\n| `encore-go-testing` | Test APIs and services |\n| `encore-go-code-review` | Review code for best practices |\n\n## References\n\n- [Encore.ts Documentation](https://encore.dev/docs)\n- [Encore GitHub](https://github.com/encoredev/encore)\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fencoredev%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fencoredev%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fencoredev%2Fskills/lists"}