get_coding_guide
Retrieve coding guides, conventions, and best practices with a single command. Automatically fetches standards and rules when requested, supporting efficient and consistent coding workflows.
Instructions
IMPORTANT: This tool should be automatically called when users say "가이드", "규칙", "컨벤션", "guide", "rules", "convention", "standards", "best practices" or similar keywords. Get coding guide
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Guide category | |
name | Yes | Guide name to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Guide category",
"type": "string"
},
"name": {
"description": "Guide name to retrieve",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}