Track progress through CSES Problem Set with structured learning
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill cses-tracker --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cses Tracker?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-cses-tracker)More formats (shields.io, HTML) on the badges page.
---
name: cses-tracker
description: Track progress through CSES Problem Set with structured learning
allowed-tools:
- WebFetch
- Bash
- Read
- Write
- Grep
- Glob
graph:
domains: [domain:computer-science]
specializations: [specialization:algorithms-optimization]
skillAreas: [skill-area:dynamic-programming, skill-area:graph-algorithms]
roles: [role:backend-engineer, role:computational-scientist]
---
# CSES Tracker Skill
## Purpose
Track progress through the CSES Problem Set with structured learning paths mapped to the Competitive Programmer's Handbook.
## Capabilities
- Track solved problems by category
- Suggest next problems based on difficulty progression
- Generate progress reports
- Map problems to CP Handbook chapters
- Identify knowledge gaps based on unsolved problems
- Create personalized learning paths
## Target Processes
- cses-learning-path
- skill-gap-analysis
- topic-mastery-certification
- progress-tracking
## Integration
Interfaces with CSES platform (https://cses.fi) and maps problems to the Competitive Programmer's Handbook by Antti Laaksonen.
## Input Schema
```json
{
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": ["getProgress", "suggestNext", "getByCategory", "mapToHandbook", "generateReport"]
},
"category": { "type": "string" },
"solvedProblems": { "type": "array", "items": { "type": "string" } },
"targetCategory": { "type": "string" }
},
"required": ["action"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"progress": { "type": "object" },
"suggestions": { "type": "array" },
"report": { "type": "string" }
},
"required": ["success"]
}
```
## CSES Categories
- Introductory Problems
- Sorting and Searching
- Dynamic Programming
- Graph Algorithms
- Range Queries
- Tree Algorithms
- Mathematics
- String Algorithms
- Geometry
- Advanced Techniques
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!