Manage and generate competitive programming templates
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill code-template-manager --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Code Template Manager?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-code-template-manager-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: code-template-manager
description: Manage and generate competitive programming templates
allowed-tools:
- Bash
- Read
- Write
- Grep
- Glob
- Edit
graph:
domains: [domain:computer-science]
specializations: [specialization:algorithms-optimization]
skillAreas: [skill-area:dynamic-programming, skill-area:graph-algorithms, skill-area:polyglot-development]
roles: [role:backend-engineer, role:computational-scientist]
workflows: [workflow:competitive-analysis]
---
# Code Template Manager Skill
## Purpose
Manage and generate competitive programming code templates for various algorithms, data structures, and common patterns across multiple languages.
## Capabilities
- Store and retrieve algorithm templates (C++, Python, Java)
- Fast I/O templates for different languages
- Data structure templates (segment tree, DSU, etc.)
- Template customization and versioning
- Generate problem-specific boilerplate
- Maintain personal template library
## Target Processes
- cp-library-creation
- codeforces-contest
- algorithm-implementation
- atcoder-contest
## Template Categories
1. **I/O Templates**: Fast input/output for each language
2. **Data Structures**: Segment tree, Fenwick tree, DSU, Treap, etc.
3. **Graph Algorithms**: DFS, BFS, Dijkstra, Bellman-Ford, etc.
4. **Number Theory**: Modular arithmetic, prime sieve, FFT/NTT
5. **String Algorithms**: KMP, Z-function, Suffix array, Hashing
6. **Geometry**: Point, Line, Polygon primitives
## Input Schema
```json
{
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": ["get", "list", "create", "update", "generateBoilerplate"]
},
"templateName": { "type": "string" },
"language": { "type": "string", "enum": ["cpp", "python", "java"] },
"category": { "type": "string" },
"code": { "type": "string" }
},
"required": ["action"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"template": { "type": "string" },
"templates": { "type": "array" },
"error": { "type": "string" }
},
"required": ["success"]
}
```
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!