You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PLUGIN.md
+24-26Lines changed: 24 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,23 @@
1
1
# cc-polymath Claude Code Plugin
2
2
3
-
**Version:**2.0.0
3
+
**Version:**3.1.0
4
4
**Type:** Skills & Commands Plugin
5
5
**Author:** rand
6
6
**License:** MIT
7
7
8
8
## Overview
9
9
10
-
cc-polymath is a comprehensive Claude Code plugin that provides 400 atomic, production-ready skills across 31+ domains, plus context-aware skill discovery commands and specialized subagents. It uses a gateway-based progressive loading architecture to minimize context usage while maximizing skill availability.
10
+
cc-polymath is a comprehensive Claude Code plugin that provides 410+ atomic, production-ready skills across 33+ domains, plus context-aware skill discovery commands and specialized subagents. It uses a gateway-based progressive loading architecture to minimize context usage while maximizing skill availability.
- Gateway-based approach: ~200-1,500 lines per session
123
121
-**98-99% context reduction**
124
122
@@ -171,10 +169,10 @@ These commands complement the auto-discovery system by providing explicit invoca
171
169
172
170
## Specialized Subagents
173
171
174
-
cc-polymath includes three specialized subagents that leverage the skills library for focused workflows:
172
+
cc-polymath includes four specialized subagents that leverage the skills library for focused workflows:
175
173
176
174
### `skill-navigator`
177
-
**Purpose:** Expert guide for navigating the 400-skill library
175
+
**Purpose:** Expert guide for navigating the 410+ skill library
178
176
179
177
**Use when:**
180
178
- Users need help finding relevant skills
@@ -220,7 +218,7 @@ Leverages language-specific skills and can implement solutions in the best-fit l
220
218
221
219
## Skill Categories
222
220
223
-
### Available Categories (31 total)
221
+
### Available Categories (33+ total)
224
222
225
223
| Category | Skills | Description |
226
224
|----------|--------|-------------|
@@ -247,7 +245,7 @@ Leverages language-specific skills and can implement solutions in the best-fit l
247
245
{
248
246
"name": "cc-polymath",
249
247
"version": "2.0.0",
250
-
"description": "400 atomic, production-ready skills with gateway-based progressive loading for Claude Code. 31+ domains including API design, databases, ML, diagrams (Mermaid), mathematics, testing, infrastructure, cryptography, protocols, and more. Context-efficient three-tier architecture with auto-discovery gateways.",
248
+
"description": "410+ atomic, production-ready skills with gateway-based progressive loading for Claude Code. 33+ domains including API design, databases, ML, diagrams (Mermaid), mathematics, testing, infrastructure, cryptography, protocols, MCP, agentic workflows, and more. Context-efficient three-tier architecture with auto-discovery gateways.",
251
249
"author": {
252
250
"name": "rand"
253
251
},
@@ -274,7 +272,7 @@ Leverages language-specific skills and can implement solutions in the best-fit l
description: Generate spec-compliant skills for the cc-polymath library. Takes a topic/domain and produces a well-structured SKILL.md with proper frontmatter, progressive loading, and atomic design.
4
+
tools: Read, Write, Edit, Glob, Grep
5
+
---
6
+
7
+
# Skill Creator
8
+
9
+
Generate new skills for the cc-polymath library that follow the Agent Skills spec and cc-polymath conventions.
10
+
11
+
## Process
12
+
13
+
### 1. Understand the Request
14
+
- What domain/topic does the skill cover?
15
+
- Is this a gateway skill, INDEX, or leaf skill?
16
+
- Which existing category does it belong to (or is it a new category)?
17
+
18
+
### 2. Check Existing Skills
19
+
- Read `skills/README.md` for the master catalog
20
+
- Check if a similar skill already exists using Grep
0 commit comments