Professional AI-powered code review. Analyzes code for bugs, security issues, performance problems, and readability. Returns structured feedback.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "string",
"minLength": 1
},
"language": {
"description": "Programming language (e.g. typescript, python, rust)",
"type": "string"
},
"focus": {
"default": "all",
"description": "Review focus area",
"type": "string",
"enum": [
"security",
"performance",
"readability",
"all"
]
}
},
"required": [
"code",
"focus"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://moss.chobon.top/entrypoints/code-review/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"code": "string",
"focus": "security"
}
}
'
AI-powered text translation. Supports all major languages. Auto-detects source language if not specified. Preserves tone and context.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
},
"from": {
"description": "Source language (auto-detect if omitted)",
"type": "string"
},
"to": {
"default": "en",
"description": "Target language code (e.g. en, zh, ja, ko, es, fr, de)",
"type": "string"
}
},
"required": [
"text",
"to"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://moss.chobon.top/entrypoints/translate/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"text": "string",
"to": "<Target language code (e.g. en, zh, ja, ko, es, fr, de)>"
}
}
'
AI-powered code explanation. Breaks down what code does in plain language. Adjustable detail level from beginner-friendly to expert-level analysis.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "string",
"minLength": 1
},
"language": {
"type": "string"
},
"level": {
"default": "intermediate",
"description": "Explanation detail level",
"type": "string",
"enum": [
"beginner",
"intermediate",
"expert"
]
}
},
"required": [
"code",
"level"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://moss.chobon.top/entrypoints/explain-code/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"code": "string",
"level": "beginner"
}
}
'
Health check endpoint. Returns agent status and capabilities.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://moss.chobon.top/entrypoints/ping/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'