atcoder-client
SolidInterface with AtCoder for Japanese competitive programming contests
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
codeforces-api-client
Interface with Codeforces API for contest data, problem sets, and submissions
1,160 Updated today
a5c-ai AI & Automation Solid
leetcode-problem-fetcher
Fetch and parse LeetCode problems with metadata, constraints, examples, hints, difficulty ratings, and related problems. Integrates with LeetCode API for comprehensive problem data retrieval.
1,160 Updated today
a5c-ai AI & Automation Solid
cses-tracker
Track progress through CSES Problem Set with structured learning
1,160 Updated today
a5c-ai AI & Automation Solid
code-template-manager
Manage and generate competitive programming templates
1,160 Updated today
a5c-ai AI & Automation Solid
code-profiler
Profile code performance and identify bottlenecks
1,160 Updated today
a5c-ai