소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 3월 1일 00:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill backend명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
| name | backend |
| description | API, database, server logic, webhooks. Auto-use for any API/DB work. |
| version | 3.0.0 |
| allowed-tools | ["Read","Edit","Write","Bash","Grep","Glob"] |
Auto-use when: API, route, endpoint, database, Supabase, schema, migration, webhook, server action
Works with: frontend for UI, security for auth patterns
export async function POST(request: Request) {
// 1. AUTH (required)
const { userId } = await auth()
if (!userId) return Response.json({ error: 'Unauthorized' }, { status: 401 })
// 2. VALIDATION (required)
const body = await request.json()
const result = Schema.safeParse(body)
if (!result.success) {
return Response.json({ error: 'Invalid', details: result.error.flatten() }, { status: 400 })
}
// 3. OWNERSHIP (if accessing resource)
const resource = await db.findUnique({ where: { id: result.data.id } })
if (resource?.userId !== userId) {
return Response.json({ error: 'Not found' }, { status: 404 })
}
// 4. EXECUTE with try/catch
try {
const data = await db.create({ data: result.data })
return Response.json(data, { status: 201 })
} catch (error) {
console.error('Error:', error)
return Response.json({ error: 'Failed' }, { status: 500 })
}
}
'use server'
import { auth } from '@/lib/auth'
import { db } from '@/lib/db'
import { revalidatePath } from 'next/cache'
import { z } from 'zod'
const Schema = z.object({
title: z.string().min(1).max(200),
})
export async function createPost(input: unknown) {
const { userId } = await auth()
if (!userId) return { error: 'Unauthorized' }
const result = Schema.safeParse(input)
if (!result.success) return { error: 'Invalid', details: result.error.flatten() }
try {
const post = await db.post.create({
data: { ...result., : userId }
})
()
{ : post }
} (error) {
.(, error)
{ : }
}
}
// N+1 Prevention - ALWAYS use includes
const posts = await db.post.findMany({
include: { author: true } // NOT separate query
})
// Pagination - ALWAYS paginate lists
const posts = await db.post.findMany({
skip: (page - 1) * limit,
take: limit,
orderBy: { createdAt: 'desc' }
})
// Correct types
// IDs: BIGINT (not INT)
// Timestamps: TIMESTAMPTZ (not TIMESTAMP)
// Money: DECIMAL (not FLOAT)
export async function POST(request: Request) {
const body = await request.text()
const signature = headers().get('stripe-signature')!
// 1. Verify signature
let event
try {
event = stripe.webhooks.constructEvent(body, signature, secret)
} catch {
return new Response('Invalid signature', { status: 400 })
}
// 2. Idempotency check
const exists = await db.webhookEvent.findUnique({ where: { eventId: event.id } })
if (exists) return new Response('Already processed')
// 3. Process
switch (event.type) {
case 'checkout.session.completed':
await handleCheckout(event.data.object)
break
}
// 4. Mark processed
await db..({ : { : event. } })
()
}
app/api/users/route.ts -> GET /api/users, POST /api/users
app/api/users/[id]/route.ts -> GET/PATCH/DELETE /api/users/:id
Form submission, mutations -> Server Action (preferred)
External API access needed -> API Route
Webhooks -> API Route
// RLS handles authorization automatically
const { data } = await supabase
.from('posts')
.select('*') // Only returns user's posts due to RLS
[] Auth check at start
[] Zod validation on all input
[] Ownership check on resource access
[] Generic errors to client
[] Detailed errors to logs
[] No secrets in code
[] Webhook signature verification
| If You See | Fix |
|---|---|
No await auth() | Add auth check |
Schema.parse(body) without try | Use safeParse |
| No ownership check | Add authorization |
return { error: error.message } | Generic error |
db.query(\...${input}`)` | Use parameterized |
| No pagination | Add pagination |