소스 정보
- 저장소
- ffsshhttiikk/opencode-agents-skills
- 최근 소스 활동
- 2026년 2월 28일 22:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill rest-api명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | rest-api |
| description | REST API design best practices and patterns |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"api-design"} |
When designing or implementing REST APIs.
Resources: /users, /users/{id}, /users/{id}/posts
Collections: /posts, /posts?status=published
Actions as sub-resources: /users/{id}/activate, /users/{id}/deactivate
HTTP Methods:
GET - Retrieve resource(s)
POST - Create resource(s)
PUT - Replace resource
PATCH - Partial update
DELETE - Remove resource
Status Codes:
200 OK - Success
201 Created - Resource created
204 No Content - Success, no body
400 Bad Request - Invalid input
401 Unauthorized - Authentication required
403 Forbidden - Authenticated but not authorized
404 Not Found - Resource doesn't exist
409 Conflict - Resource state conflict
422 Unprocessable Entity - Validation errors
429 Too Many Requests - Rate limiting
500 Internal Server Error - Server error
{
"data": {
"id": "123",
"type": "user",
"attributes": {
"email": "user@example.com",
"name": "John Doe",
"createdAt": "2024-01-15T10:30:00Z"
},
"relationships": {
"posts": {
"links": {
"related": "/users/123/posts"
}
}
},
"links": {
"self": "/users/123"
}
},
"meta": {
"copyright"
{
"errors": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": 422,
"code": "VALIDATION_ERROR",
"title": "Validation failed",
"detail": "The 'email' field must be a valid email address",
"source": {
"pointer": "/data/attributes/email"
},
"meta": {
"field": "email",
"value": "invalid-email"
}
}
]
}
{
"data": [
{
"id": "1",
"type": "user",
"attributes": { "name": "User 1" }
},
{
"id": "2",
"type": "user",
"attributes": { "name": "User 2" }
}
],
"links": {
"self": "/api/v1/users?page[number]=1&page[size]=10",
"first": "/api/v1/users?page[number]=1&page[size]=10",
"last": "/api/v1/users?page[number]=10&page[size]=10",
"next"
Filtering: ?status=published&author=123
Sorting: ?sort=-createdAt,title
Pagination: ?page[number]=2&page[size]=20
Fields: ?fields[user]=email,name
Including: ?include=posts,posts.comments
Sparse Fields: ?fields[user]=id,name&fields[post]=id,title
Search: ?search=keyword
URL: /api/v1/users
Header: Accept: application/vnd.api+json; version=1
/users not /user