atcoder-client

Solid

Interface with AtCoder for Japanese competitive programming contests

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
63
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# AtCoder Client Skill ## Purpose Interface with AtCoder platform for accessing Japanese competitive programming contests, problems, and submissions. ## Capabilities - Fetch contest problems with translations - Submit solutions and track results - Access AtCoder Problems difficulty ratings - Virtual contest participation - Retrieve user submission history - Access editorial content ## Target Processes - atcoder-contest - progress-tracking - skill-gap-analysis ## Integration Uses AtCoder web interface and AtCoder Problems API for difficulty ratings and problem metadata. ## Input Schema ```json { "type": "object", "properties": { "action": { "type": "string", "enum": ["getContestProblems", "getProblem", "getSubmissions", "getDifficulty", "getUserStats"] }, "contestId": { "type": "string" }, "problemId": { "type": "string" }, "username": { "type": "string" } }, "required": ["action"] } ``` ## Output Schema ```json { "type": "object", "properties": { "success": { "type": "boolean" }, "data": { "type": "object" }, "error": { "type": "string" } }, "required": ["success"] } ``` ## Usage Example ```javascript { "action": "getContestProblems", "contestId": "abc300" } ```

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills