🎯

discover-workflow

🎯Skill

from rand/cc-polymath

VibeIndex|
What it does

discover-workflow skill from rand/cc-polymath

πŸ“¦

Part of

rand/cc-polymath(44 items)

discover-workflow

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add rand/cc-polymath
Install PluginInstall plugin from marketplace
/plugin install cc-polymath@cc-polymath
Install ScriptRun install script
bash ~/.claude/plugins/cc-polymath/scripts/verify-install.sh # Verify installation
πŸ“– Extracted from docs: rand/cc-polymath
18Installs
65
-
Last UpdatedNov 25, 2025

Skill Details

SKILL.md

Overview

# Atomic Skills for Claude Code

[![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blue)](https://docs.claude.com/en/docs/claude-code/plugins)

[![Skills](https://img.shields.io/badge/Skills-447-green)](skills/)

[![License](https://img.shields.io/badge/License-MIT-yellow)](LICENSE)

Context-efficient development knowledge via progressive skill discovery

New? Start Here

Install in 30 seconds:

```

/plugin marketplace add rand/cc-polymath

/plugin install cc-polymath@cc-polymath

```

Your first 3 commands:

```bash

/skills # See what's recommended for your project

/discover-frontend # Load React, Next.js, TypeScript skills (example)

bash ~/.claude/plugins/cc-polymath/scripts/verify-install.sh # Verify installation

```

Learn more:

  • πŸ“– [Getting Started Guide](docs/GETTING_STARTED.md) - 5-minute quick start
  • πŸ’¬ [Example Conversations](docs/FIRST_CONVERSATIONS.md) - See it in action
  • πŸ†˜ [Troubleshooting](docs/TROUBLESHOOTING.md) - Common issues & solutions
  • ❓ [FAQ](docs/FAQ.md) - Quick answers

---

This repository solves a tradeoff problem: how to give Claude Code access to comprehensive development knowledge without overwhelming its context window on boot. The solution is atomic, composable skills organized through a multi-tier discovery system.

The Problem: Context vs Coverage

Using the default mechanism with many atomic skills yields a dilemma:

  • Load everything upfront β†’ 25K+ tokens consumed before any real work begins
  • Load nothing β†’ Claude lacks essential patterns and best practices
  • Manual loading β†’ Users must know what exists to ask for it

This creates an challenging tradeoff between comprehensive coverage and context efficiency.

The Solution: Atomic Skills + Progressive Discovery

Atomic Skills (447 total)

Each skill is focused, self-contained, and composable:

  • Average 320 lines - small enough to load quickly
  • Single responsibility - covers one clear topic
  • Production-tested - real patterns from building at scale
  • Cross-referenced - links to related skills for composition

Why atomic matters: Loading 5 focused skills (1.5K tokens) beats loading one monolithic guide (8K tokens) when you only need specific knowledge. Granularity enables precision.

Three-Tier Architecture

Tier 1: Gateway Skills (31 auto-discovered Agent Skills)

Lightweight entry points that activate automatically based on keywords:

  • discover-api β†’ triggers on "REST", "GraphQL", "authentication"
  • discover-database β†’ triggers on "PostgreSQL", "MongoDB", "Redis"
  • discover-zig β†’ triggers on "Zig", "comptime", "allocators"

Each gateway is ~200 lines with quick reference and loading commands.

Tier 2: Category Indexes (30 detailed references)

Full skill listings with descriptions, use cases, and workflows:

  • api/INDEX.md β†’ All 7 API skills with integration patterns
  • database/INDEX.md β†’ All 11 database skills with decision trees
  • Only loaded when browsing or planning work

Tier 3: Individual Skills (on-demand)

Complete implementation guides loaded only when needed:

  • api/rest-api-design.md β†’ Full REST patterns
  • database/postgres-query-optimization.md β†’ EXPLAIN plans, indexes

Why This Works

Context efficiency: 60-84% reduction vs monolithic index

  • Old approach: Load 25K token index on boot
  • New approach: Load 2-5K tokens of relevant gateways as needed
  • Result: More context available for actual code and conversation

No boot overhead: Claude Code starts with zero skills loaded

  • Gateway skills auto-discover based on your prompt keywords
  • Manual loading available when auto-discovery isn't enough
  • System scales to hundreds more skills without boot cost

Discoverability: Users don't need to know what exists

  • Keywords in prompts trigger relevant gateways automatically
  • Gateways show what's available in their domain
  • Progressive loading: gateway β†’ index β†’ specific skill