Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

skills

skills에는 encoredev에서 수집한 skills 28개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
28
Stars
26
업데이트
2026-05-15
Forks
5
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

encore-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.

2026-05-15
encore-auth
정보 보안 분석가

Protect Encore.ts endpoints with authentication and authorize callers. Covers `authHandler`, `Gateway`, `getAuthData`, and `auth: true`.

2026-05-15
encore-bucket
소프트웨어 개발자

Store unstructured files in Encore.ts using `Bucket` from `encore.dev/storage/objects` — uploads, images, documents, blobs.

2026-05-15
encore-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.

2026-05-15
encore-code-review
소프트웨어 개발자

Review existing Encore.ts code for best practices and common anti-patterns.

2026-05-15
encore-cron
소프트웨어 개발자

Schedule periodic / recurring work in Encore.ts using `CronJob` from `encore.dev/cron`. Covers `every: "1h"` interval syntax and `schedule: "0 9 * * 1"` cron expressions.

2026-05-15
encore-database
데이터베이스 관리자

Work with PostgreSQL in Encore.ts using `SQLDatabase` from `encore.dev/storage/sqldb` — schema migrations and SQL queries.

2026-05-15
encore-frontend
웹 개발자

Connect a frontend application (React, Next.js, Vue, Svelte, etc.) to an Encore.ts backend.

2026-05-15
encore-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.

2026-05-15
encore-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.

2026-05-15
encore-go-auth
소프트웨어 개발자

Protect Encore Go endpoints with authentication and authorize callers. Covers `auth.AuthHandler`, `auth.UserID`, the `Authorization` header, and `//encore:api auth`.

2026-05-15
encore-go-bucket
소프트웨어 개발자

Store unstructured files in Encore Go using `objects.NewBucket` from `encore.dev/storage/objects` — uploads, images, documents, blobs.

2026-05-15
encore-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.

2026-05-15
encore-go-code-review
소프트웨어 개발자

Review existing Encore Go code for best practices and common anti-patterns.

2026-05-15
encore-go-cron
소프트웨어 개발자

Schedule periodic / recurring work in Encore Go using `cron.NewJob` from `encore.dev/cron`. Covers `Every: "1h"` interval syntax and `Schedule: "0 9 * * 1"` cron expressions.

2026-05-15
encore-go-database
데이터베이스 관리자

Work with PostgreSQL in Encore Go using `sqldb.NewDatabase` from `encore.dev/storage/sqldb` — schema migrations and SQL queries.

2026-05-15
encore-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.

2026-05-15
encore-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.

2026-05-15
encore-go-secret
정보 보안 분석가

Manage API keys, credentials, and other secrets in Encore Go using a package-level `secrets` struct.

2026-05-15
encore-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`).

2026-05-15
encore-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.

2026-05-15
encore-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.

2026-05-15
encore-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.

2026-05-15
encore-pubsub
소프트웨어 개발자

Asynchronous messaging in Encore.ts via `Topic` and `Subscription` from `encore.dev/pubsub` — broadcast events, decouple producers from consumers, and run background handlers.

2026-05-15
encore-secret
정보 보안 분석가

Manage API keys, credentials, and other secrets in Encore.ts using `secret(...)` from `encore.dev/config`.

2026-05-15
encore-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`).

2026-05-15
encore-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`.

2026-05-15
encore-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.

2026-05-15