← Back to list

api-usage
by felipepimentel
⭐ 0🍴 0📅 Jan 21, 2026
SKILL.md
name: api-usage description: How to use the OpenAI-compatible API server tags: [api, rest, openai, integration]
OpenAI API Usage Skill
The kor-plugin-openai-api exposes KOR agents via an OpenAI-compatible REST API.
Starting the Server
kor serve --port 8080
API Endpoints
Chat Completions
POST /v1/chat/completions
Request body:
{
"model": "kor-supervisor",
"messages": [
{"role": "user", "content": "Hello, KOR!"}
]
}
List Models
GET /v1/models
Lists available agents as "models".
Integration
Works with any OpenAI SDK:
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8080/v1")
response = client.chat.completions.create(
model="kor-supervisor",
messages=[{"role": "user", "content": "Hello!"}]
)
Use Cases
- IDE integrations (Cursor, Continue, etc.)
- Custom applications via REST
- Testing and development
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon