🎯

slide-creator

🎯Skill

from roasbeef/claude-files

VibeIndex|
What it does

slide-creator skill from roasbeef/claude-files

slide-creator

Installation

Install skill:
npx skills add https://github.com/roasbeef/claude-files --skill slide-creator
7
Last UpdatedJan 24, 2026

Skill Details

SKILL.md

Overview

# Advanced Claude Code Configuration with Task Management System

This repository contains a sophisticated Claude Code setup that extends the base capabilities with specialized sub-agents, custom commands, automated hooks, and a comprehensive task management system. The configuration demonstrates how Claude Code can be transformed from a general-purpose AI assistant into a highly specialized development environment tailored for complex software engineering workflows.

Overview

Claude Code is Anthropic's AI-powered development assistant that runs directly in your terminal. While powerful out of the box, its true potential emerges through customization. This configuration showcases an advanced setup that includes:

  • Task Management System: Lightweight, dependency-aware task tracking
  • Specialized Sub-agents: Deep code analysis with parallel processing
  • Custom Commands: Common workflows and task operations
  • Automated Hooks: Real-time feedback and enhanced reasoning

The architecture leverages Claude Code's ability to spawn parallel sub-agents, each with their own context window and specialized expertise. This allows for complex, multi-threaded analysis while preserving the main conversation context.

Task Management System

A comprehensive task management system enables systematic work tracking across all projects. Tasks are stored as markdown files with YAML frontmatter in project .tasks/ directories.

Features

  • Dependency Management: Automatic blocking/unblocking of tasks
  • Priority-based Selection: Smart task ordering (P0-P3)
  • Size Estimation: XS to XL effort tracking
  • Multi-agent Support: Assignee field for collaboration
  • Shell Integration: Aliases for quick access

Directory Structure

```

project/

└── .tasks/

β”œβ”€β”€ active/ # Current tasks (shortname-uuid.md)

β”œβ”€β”€ archive/ # Completed tasks

└── templates/ # Task templates

```

Quick Start

#### Shell Setup (Already configured in ~/.zshrc)

```bash

# Available aliases:

tasks # List tasks in current project

all-tasks # Find all projects with tasks

task-cd # Navigate to .tasks/active

task-cat # View specific task

task-status # Quick summary

# Scripts available globally:

~/.claude/scripts/list-tasks.sh [dir] # List project tasks

~/.claude/scripts/list-all-tasks.sh [dir] # Find all projects

```

#### Claude Commands

```bash

/task-list # See all tasks with status

/task-next # Pick highest priority task

/task-add # Create new task interactively

/task-view # View task details

/task-status # Update task status

/task-complete # Mark complete & archive

/task-deps # Manage dependencies

```

Task Structure

```yaml

---

id: 01999792-af4f-70fb-9deb-dc96846b3c83 # UUIDv7

shortname: fix-auth-bug

title: Fix authentication bug in login flow

priority: P1 # P0=critical, P1=high, P2=medium, P3=low

size: M # XS=<1hr, S=1-4hr, M=4-8hr, L=1-3d, XL=3+d

status: ready # ready|in_progress|blocked|completed

tags: [security, auth]

blocks: [deploy-prod] # Tasks that depend on this

blocked_by: [update-api] # Tasks this depends on

assignee:

created_at: 2025-01-29T23:24:00Z

updated_at: 2025-01-29T23:24:00Z

---

# Task: Fix authentication bug in login flow

Description

Detailed explanation...

Acceptance Criteria

  • [ ] Bug reproduced
  • [ ] Fix implemented
  • [ ] Tests added

Technical Details

Implementation notes...

Dependencies

Blocks: [deploy-prod]

Blocked By: [update-api]

```

Dependency System

Tasks track two types of dependencies:

  • blocks: Tasks waiting for this one to complete
  • blocked_by: Tasks that must complete before this one

The system automatically:

  • Prevents starting blocked tasks
  • Prioritizes tasks that unblock others
  • Detects circular dependencies
  • Shows dependency graphs with /task-deps graph

Task Sel