aoc — community claude-skill-registry, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Code Analysis Agents needing advanced problem-solving capabilities with Test-Driven Development (TDD) and correctness-first approach. The most comprehensive Claude Code skills registry | Web Search: https://skills-registry-web.vercel.app

majiayu000 majiayu000
[0]
[0]
Updated: 2/20/2026

Agent Capability Analysis

The aoc skill by majiayu000 is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Code Analysis Agents needing advanced problem-solving capabilities with Test-Driven Development (TDD) and correctness-first approach.

Core Value

Empowers agents to solve Advent of Code puzzles using a language-agnostic approach with TDD, parsing input into data structures, and implementing minimal code to pass tests, all while utilizing correctness-first principles and adapting solutions for Part 2 challenges.

Capabilities Granted for aoc

Automating Advent of Code puzzle solutions with TDD
Generating data structures from puzzle input
Debugging puzzle solutions using a correctness-first approach

! Prerequisites & Limits

  • Requires understanding of TDD and correctness-first principles
  • Language-agnostic, but may require additional setup for certain languages
  • Limited to Advent of Code puzzle solving
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

aoc

Install aoc, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Advent of Code Solver

Language-agnostic problem-solving with TDD and correctness-first approach.

Workflow

1. READ      → Study problem + examples (examples are your spec)
2. PARSE     → Extract data structures from input
3. TEST      → Write tests from example input/output
4. IMPLEMENT → Minimal code to pass
5. RUN       → Execute on real input
6. ADAPT     → Refactor for Part 2

Solution Architecture

parse(input) → data structure
part1(data)  → answer
part2(data)  → answer

Parse once. Solve both parts. Test each function independently.

Algorithm Selection

ScenarioAlgorithm
Unweighted shortest pathBFS
Path existence / exhaustiveDFS
Weighted shortest pathDijkstra
Weighted + good heuristicA*
"After N iterations..." (huge N)Cycle detection
"Find minimum X such that..."Binary search
"Count ways..." / "Min/max..."Dynamic programming
Connected regionsFlood fill

Deep dive: See algorithms.md

Input Patterns

FormatApproach
Numbers in textRegex -?\d+
Grid of chars2D array or dict by coords
Blank-line groupsSplit on \n\n first
Key-value pairsParse into map/dict
Instructions/opcodesPattern match each line

Grids: Use (row, col) with row↓. Sparse dict for infinite/sparse grids. Directions: UP=(-1,0), DOWN=(1,0), LEFT=(0,-1), RIGHT=(0,1)

Deep dive: See parsing.md

Part 2 Patterns

  1. Scale up → Optimize algorithm
  2. Add dimensions → 2D → 3D/4D
  3. Many iterations → Find cycle, skip ahead
  4. Reverse question → "Find X" → "Given X, find Y"
  5. Add constraints → New rules or edge cases

Debugging

  • Print intermediate state at each step
  • Compare with example walkthrough
  • Add assertions for every assumption
  • Test parsing separately from logic
  • Binary search on input size to isolate failures

Complexity Targets

Input SizeTarget
n ≤ 20O(2^n) OK
n ≤ 500O(n³) OK
n ≤ 10,000O(n²) OK
n ≤ 1,000,000O(n log n)
n > 1,000,000O(n) or O(log n)

Research Tools

# gh search code for algorithm implementations
gh search code "heapq.heappush" --language=python   # Dijkstra/priority queue
gh search code "collections.deque" --language=python # BFS patterns
gh search code "fn dijkstra" --language=rust

References

  • algorithms.md - Graph traversal, DP, cycle detection, search
  • parsing.md - Input formats, grids, coordinates, hex grids
  • reference.md - Data structures, optimization, anti-patterns

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is aoc?

Perfect for Code Analysis Agents needing advanced problem-solving capabilities with Test-Driven Development (TDD) and correctness-first approach. The most comprehensive Claude Code skills registry | Web Search: https://skills-registry-web.vercel.app

How do I install aoc?

Run the command: npx killer-skills add majiayu000/claude-skill-registry/aoc. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for aoc?

Key use cases include: Automating Advent of Code puzzle solutions with TDD, Generating data structures from puzzle input, Debugging puzzle solutions using a correctness-first approach.

Which IDEs are compatible with aoc?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for aoc?

Requires understanding of TDD and correctness-first principles. Language-agnostic, but may require additional setup for certain languages. Limited to Advent of Code puzzle solving.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add majiayu000/claude-skill-registry/aoc. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use aoc immediately in the current project.

Related Skills

Looking for an alternative to aoc or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI