Skip to content

Commit d78eda2

Browse files
committed
docs: Update skill counts and Wave 12 Phase 2 completion status
- Update total skill count from 350+ to 447 - Update Rust/PyO3 skills from 17 to 19 (add collections/iterators and modules/functions) - Add DSPy-PyO3 integration highlights (7 skills, 46 examples) - Update WAVE12_PHASE2_FINAL_STATUS.md to reflect 100% completion - Add all DSPy skill documentation and resources - Fix outdated skill filenames in Rust INDEX
1 parent f89da84 commit d78eda2

40 files changed

Lines changed: 19041 additions & 87 deletions

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Atomic Skills for Claude Code
22

33
[![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blue)](https://docs.claude.com/en/docs/claude-code/plugins)
4-
[![Skills](https://img.shields.io/badge/Skills-350+-green)](skills/)
4+
[![Skills](https://img.shields.io/badge/Skills-447-green)](skills/)
55
[![License](https://img.shields.io/badge/License-MIT-yellow)](LICENSE)
66

77
**Context-efficient development knowledge via progressive skill discovery**
@@ -21,7 +21,7 @@ This creates an challenging tradeoff between comprehensive coverage and context
2121

2222
## The Solution: Atomic Skills + Progressive Discovery
2323

24-
### Atomic Skills (350+ total)
24+
### Atomic Skills (447 total)
2525
Each skill is **focused, self-contained, and composable**:
2626
- Average 320 lines - small enough to load quickly
2727
- Single responsibility - covers one clear topic
@@ -102,6 +102,12 @@ Complete implementation guides loaded only when needed:
102102
- **HuggingFace**: Hub, Transformers, Datasets, Spaces, AutoTrain (5 skills)
103103
- **Fine-tuning**: Unsloth, LoRA/PEFT, dataset prep (3 skills)
104104

105+
**Rust & PyO3** (19 skills):
106+
- **DSPy-PyO3 Integration**: RAG pipelines, agents, async streaming, production deployment, optimization (7 skills with 36 production examples)
107+
- **Performance**: GIL management, parallel execution, data science, collections/iterators (6 skills)
108+
- **Web**: Axum frameworks, streaming responses, IPC, gRPC (2 skills)
109+
- **Production**: Packaging, testing, debugging, modules/functions/errors (4 skills with 20 examples)
110+
105111
**Information Retrieval** (5 skills):
106112
- Search fundamentals (TF-IDF, BM25, Elasticsearch)
107113
- Vector search (dense retrieval, embeddings)
@@ -157,7 +163,7 @@ Complete implementation guides loaded only when needed:
157163
/plugin install https://github.com/rand/cc-polymath
158164
```
159165

160-
That's it! All 350+ skills and the `/skills` command are immediately available.
166+
That's it! All 447 skills and the `/skills` command are immediately available.
161167

162168
**For local development or testing**:
163169
```bash
@@ -289,6 +295,7 @@ cat skills/database/redpanda-streaming.md
289295
├── networking/ # SSH, mTLS, VPN, NAT traversal (5)
290296
├── tui/ # Terminal UI: Bubble Tea, Ratatui (5)
291297
├── zig/ # Zig systems programming (6)
298+
├── rust/ # Rust & PyO3: DSPy integration, performance, production (19)
292299
├── workflow/ # Beads task management (4)
293300
├── data/ # ETL, streaming, batch (5)
294301
├── deployment/ # Heroku, Netlify (6)
@@ -323,6 +330,7 @@ cat skills/database/redpanda-streaming.md
323330
| **Database** | Postgres, Mongo, Redis, Redpanda, Iceberg | 11 | discover-database |
324331
| **Caching** | Redis, HTTP, CDN, Service Workers | 7 | discover-caching |
325332
| **ML/AI** | DSPy, HuggingFace, Arize, GraphRAG | 33 | discover-ml |
333+
| **Rust/PyO3** | DSPy integration, RAG, agents, async, production | 19 | N/A |
326334
| **IR** | Elasticsearch, Vector DBs, Ranking | 5 | discover-ir |
327335
| **Systems** | WebAssembly, eBPF | 8 | discover-wasm, discover-ebpf |
328336
| **Collaboration** | GitHub, PRD, RFC | 17 | discover-collaboration, discover-product, discover-engineering |
@@ -516,4 +524,4 @@ Feel free to fork and adapt for your own use. Pull requests welcome.
516524

517525
---
518526

519-
**350+ atomic skills****41 gateway Agent Skills****35+ categories****100% CI-validated**
527+
**447 atomic skills****41 gateway Agent Skills****35+ categories****100% CI-validated**

skills/ml/INDEX.md

Lines changed: 82 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Category Overview
44

5-
**Total Skills**: 25
5+
**Total Skills**: 33
66
**Category**: ml
77

88
## Skills in This Category
@@ -37,6 +37,26 @@ cat skills/ml/diffusion-model-basics.md
3737

3838
---
3939

40+
### dspy-advanced-patterns.md
41+
**Description**: Advanced DSPy patterns including typed predictors with Pydantic, streaming responses, batching strategies, prompt versioning, context management, and dynamic signatures
42+
43+
**Load this skill**:
44+
```bash
45+
cat skills/ml/dspy-advanced-patterns.md
46+
```
47+
48+
---
49+
50+
### dspy-agents.md
51+
**Description**: Building ReAct agents with tool use, memory, error recovery, streaming, and state machine patterns
52+
53+
**Load this skill**:
54+
```bash
55+
cat skills/ml/dspy-agents.md
56+
```
57+
58+
---
59+
4060
### dspy-assertions.md
4161
**Description**: Adding constraints and validation to DSPy programs with assertions and suggestions
4262

@@ -47,6 +67,26 @@ cat skills/ml/dspy-assertions.md
4767

4868
---
4969

70+
### dspy-compilation.md
71+
**Description**: Advanced DSPy compilation strategies including custom compilers, multi-stage compilation, caching, incremental compilation, and visualization
72+
73+
**Load this skill**:
74+
```bash
75+
cat skills/ml/dspy-compilation.md
76+
```
77+
78+
---
79+
80+
### dspy-debugging.md
81+
**Description**: Debugging DSPy programs with output inspection, prompt inspection, execution tracing, profiling, and interactive debugging
82+
83+
**Load this skill**:
84+
```bash
85+
cat skills/ml/dspy-debugging.md
86+
```
87+
88+
---
89+
5090
### dspy-evaluation.md
5191
**Description**: Evaluating DSPy programs with metrics, Evaluate class, and performance analysis
5292

@@ -57,6 +97,16 @@ cat skills/ml/dspy-evaluation.md
5797

5898
---
5999

100+
### dspy-integrations.md
101+
**Description**: Integrating DSPy with LangChain, LlamaIndex, FastAPI, Gradio, MLflow, databases, Streamlit, and MCP/A2A protocols
102+
103+
**Load this skill**:
104+
```bash
105+
cat skills/ml/dspy-integrations.md
106+
```
107+
108+
---
109+
60110
### dspy-modules.md
61111
**Description**: Building composable prediction modules with Predict, ChainOfThought, ReAct, and custom modules
62112

@@ -67,6 +117,16 @@ cat skills/ml/dspy-modules.md
67117

68118
---
69119

120+
### dspy-multi-agent.md
121+
**Description**: Multi-agent systems with hierarchical, peer-to-peer, pipeline, and GEPA-optimized architectures for coordinated AI systems
122+
123+
**Load this skill**:
124+
```bash
125+
cat skills/ml/dspy-multi-agent.md
126+
```
127+
128+
---
129+
70130
### dspy-optimizers.md
71131
**Description**: Optimizing DSPy programs with teleprompters, BootstrapFewShot, MIPROv2, and compilation
72132

@@ -77,6 +137,16 @@ cat skills/ml/dspy-optimizers.md
77137

78138
---
79139

140+
### dspy-production.md
141+
**Description**: Production deployment patterns including Modal serverless, caching strategies, circuit breakers, monitoring with Prometheus, A/B testing, and blue-green deployments
142+
143+
**Load this skill**:
144+
```bash
145+
cat skills/ml/dspy-production.md
146+
```
147+
148+
---
149+
80150
### dspy-rag.md
81151
**Description**: Building Retrieval-Augmented Generation pipelines with DSPy and vector databases
82152

@@ -107,6 +177,16 @@ cat skills/ml/dspy-signatures.md
107177

108178
---
109179

180+
### dspy-testing.md
181+
**Description**: Testing DSPy programs with unit tests, mocking, integration tests, property-based testing with Hypothesis, and performance testing
182+
183+
**Load this skill**:
184+
```bash
185+
cat skills/ml/dspy-testing.md
186+
```
187+
188+
---
189+
110190
### graph-rag.md
111191
**Description**: Graph-based retrieval-augmented generation with entity extraction, community detection, and multihop reasoning
112192

@@ -267,7 +347,7 @@ ls skills/ml/*.md
267347
cat skills/ml/custom-llm-evaluation.md
268348
cat skills/ml/diffusion-finetuning.md
269349
cat skills/ml/diffusion-model-basics.md
270-
# ... and 22 more
350+
# ... and 30 more
271351
```
272352

273353
## Related Categories

0 commit comments

Comments
 (0)