agentsclimarketplace

Codeforces api client

Skill a5c-ai/babysitter/library/specializations/algorithms-optimization/skills/codeforces-api-client

Interface with Codeforces API for contest data, problem sets, and submissionsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill codeforces-api-client

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.9 KB, 382 tokens by cl100k_base, as published. Nobody here has run it

Codeforces API Client Skill

Purpose

Interface with the Codeforces API to fetch contest data, problem sets, submissions, and user statistics for competitive programming workflows.

Capabilities

  • Fetch contest problems and metadata
  • Submit solutions and retrieve verdicts
  • Access user standings and rating history
  • Retrieve editorials and problem tags
  • Virtual contest management
  • Fetch recent submissions and status
  • Access problemset by tags and difficulty

Target Processes

  • codeforces-contest
  • progress-tracking
  • skill-gap-analysis
  • upsolving workflows

Integration

Uses the official Codeforces API (https://codeforces.com/apiHelp) with proper rate limiting and authentication when required.

Input Schema

{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": ["getContestProblems", "getUserSubmissions", "getProblemset", "getStandings", "getUserRating"]
    },
    "contestId": { "type": "integer" },
    "handle": { "type": "string" },
    "tags": { "type": "array", "items": { "type": "string" } },
    "count": { "type": "integer", "default": 10 }
  },
  "required": ["action"]
}

Output Schema

{
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "data": { "type": "object" },
    "error": { "type": "string" }
  },
  "required": ["success"]
}

Usage Example

{
  "action": "getContestProblems",
  "contestId": 1900
}

What ships with it: 1 file

752 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.