# encoredev

> Open-source publisher. Listings imported from github.com/encoredev — credited to the original author with their license.

- **Listings:** 28
- **Total installs:** 0
- **Profile:** https://agentstack.voostack.com/s/encoredev
- **Website:** https://github.com/encoredev

## Published listings

- [Encore Api](https://agentstack.voostack.com/l/skill-encoredev-skills-api) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-api`
  Define typed API endpoints in Encore.ts using `api(...)` from `encore.dev/api`. Covers typed request/response interfaces, path/query/header/cookie params, request validation, and `APIError`. For raw endpoints (`api.raw()`) and inbound webhooks, use `encore-webhook` instead.
- [Encore Bucket](https://agentstack.voostack.com/l/skill-encoredev-skills-bucket) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-bucket`
  Store unstructured files in Encore.ts using `Bucket` from `encore.dev/storage/objects` — uploads, images, documents, blobs.
- [Encore Getting Started](https://agentstack.voostack.com/l/skill-encoredev-skills-getting-started) — Skill · Free — `agentstack add skill-encoredev-skills-getting-started`
  Bootstrap a brand-new Encore.ts project from zero. Only for first-time CLI install and `encore app create` — not for architecture or feature questions.
- [Encore Cron](https://agentstack.voostack.com/l/skill-encoredev-skills-cron) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-cron`
  >-
- [Encore Go Database](https://agentstack.voostack.com/l/skill-encoredev-skills-go-database) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-database`
  Work with PostgreSQL in Encore Go using `sqldb.NewDatabase` from `encore.dev/storage/sqldb` — schema migrations and SQL queries.
- [Encore Webhook](https://agentstack.voostack.com/l/skill-encoredev-skills-webhook) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-webhook`
  Receive inbound webhooks from external services (Stripe, GitHub, Slack, Twilio, etc.) using `api.raw(...)` from `encore.dev/api`. The right skill any time the user names a third-party provider that POSTs events to a URL you own.
- [Encore Go Webhook](https://agentstack.voostack.com/l/skill-encoredev-skills-go-webhook) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-webhook`
  Receive inbound webhooks from external services (Stripe, GitHub, Slack, Twilio, etc.) in Encore Go using `//encore:api raw`. The right skill any time the user names a third-party provider that POSTs events to a URL you own.
- [Encore Go Service](https://agentstack.voostack.com/l/skill-encoredev-skills-go-service) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-service`
  Plan how to split an Encore Go application into services and lay out its directory structure. Architecture and decomposition, not first-time CLI install (that's `encore-go-getting-started`).
- [Encore Go Bucket](https://agentstack.voostack.com/l/skill-encoredev-skills-go-bucket) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-bucket`
  Store unstructured files in Encore Go using `objects.NewBucket` from `encore.dev/storage/objects` — uploads, images, documents, blobs.
- [Encore Frontend](https://agentstack.voostack.com/l/skill-encoredev-skills-frontend) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-frontend`
  Connect a frontend application (React, Next.js, Vue, Svelte, etc.) to an Encore.ts backend.
- [Encore Service](https://agentstack.voostack.com/l/skill-encoredev-skills-service) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-service`
  Plan how to split an Encore.ts application into services and lay out its directory structure. Architecture and decomposition, not first-time CLI install (that's `encore-getting-started`).
- [Encore Auth](https://agentstack.voostack.com/l/skill-encoredev-skills-auth) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-auth`
  >-
- [Encore Testing](https://agentstack.voostack.com/l/skill-encoredev-skills-testing) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-testing`
  Write or run automated tests for Encore.ts code with `encore test` and vitest/jest. Covers isolated per-test databases, calling handlers directly, and `describe`/`it`/`expect`.
- [Encore Cache](https://agentstack.voostack.com/l/skill-encoredev-skills-cache) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-cache`
  Cache data in Redis from Encore.ts using `CacheCluster` and typed keyspaces from `encore.dev/storage/cache`. Type-safe key/value access with TTLs, atomic increments, and per-keyspace data shapes.
- [Encore Pubsub](https://agentstack.voostack.com/l/skill-encoredev-skills-pubsub) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-pubsub`
  Asynchronous messaging in Encore.ts via `Topic` and `Subscription` from `encore.dev/pubsub` — broadcast events, decouple producers from consumers, and run background handlers.
- [Encore Code Review](https://agentstack.voostack.com/l/skill-encoredev-skills-code-review) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-code-review`
  Review existing Encore.ts code for best practices and common anti-patterns.
- [Encore Go Code Review](https://agentstack.voostack.com/l/skill-encoredev-skills-go-code-review) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-code-review`
  Review existing Encore Go code for best practices and common anti-patterns.
- [Encore Go Cache](https://agentstack.voostack.com/l/skill-encoredev-skills-go-cache) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-cache`
  Cache data in Redis from Encore Go using `cache.NewCluster` and typed keyspaces from `encore.dev/storage/cache`. Type-safe key/value access with TTLs, atomic increments, and per-keyspace data shapes.
- [Encore Secret](https://agentstack.voostack.com/l/skill-encoredev-skills-secret) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-secret`
  Manage API keys, credentials, and other secrets in Encore.ts using `secret(...)` from `encore.dev/config`.
- [Encore Go Auth](https://agentstack.voostack.com/l/skill-encoredev-skills-go-auth) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-auth`
  Protect Encore Go endpoints with authentication and authorize callers. Covers `auth.AuthHandler`, `auth.UserID`, the `Authorization` header, and `//encore:api auth`.
- [Encore Go Cron](https://agentstack.voostack.com/l/skill-encoredev-skills-go-cron) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-cron`
  >-
- [Encore Go Getting Started](https://agentstack.voostack.com/l/skill-encoredev-skills-go-getting-started) — Skill · Free — `agentstack add skill-encoredev-skills-go-getting-started`
  Bootstrap a brand-new Encore Go project from zero. Only for first-time CLI install and `encore app create` — not for architecture or feature questions.
- [Encore Database](https://agentstack.voostack.com/l/skill-encoredev-skills-database) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-database`
  Work with PostgreSQL in Encore.ts using `SQLDatabase` from `encore.dev/storage/sqldb` — schema migrations and SQL queries.
- [Encore Go Testing](https://agentstack.voostack.com/l/skill-encoredev-skills-go-testing) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-testing`
  Write or run automated tests for Encore Go code with `encore test` and the standard library `testing` package. Covers isolated per-test databases, calling handlers directly, and `*testing.T` patterns.
- [Encore Go Api](https://agentstack.voostack.com/l/skill-encoredev-skills-go-api) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-api`
  Define typed API endpoints in Encore Go using `//encore:api` annotations. Covers typed request/response structs, path/query/header/cookie params, and error returns. For raw endpoints (`//encore:api raw`) and inbound webhooks, use `encore-go-webhook` instead.
- [Encore Go Pubsub](https://agentstack.voostack.com/l/skill-encoredev-skills-go-pubsub) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-pubsub`
  Asynchronous messaging in Encore Go via `pubsub.NewTopic` and `pubsub.NewSubscription` from `encore.dev/pubsub` — broadcast events, decouple producers from consumers, and run background handlers.
- [Encore Go Secret](https://agentstack.voostack.com/l/skill-encoredev-skills-go-secret) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-go-secret`
  Manage API keys, credentials, and other secrets in Encore Go using a package-level `secrets` struct.
- [Encore Migrate](https://agentstack.voostack.com/l/skill-encoredev-skills-migrate) — Skill · Free · security-reviewed — `agentstack add skill-encoredev-skills-migrate`
  Migrate an existing backend application to Encore. Supports any source framework, targets Encore.ts or Encore Go. Drives a structured DISCOVER → PLAN → MIGRATE workflow with `migration-plan.md` tracking.

---
Seller on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Install any with `agentstack add <slug>`.
