Skip to content

Commit b1c9770

Browse files
committed
fix: address code review findings — TODO placeholder, stale stats, broken link
- Replace raw TODO template markers in awesome-claude-skills-tutorial ch08 with actual adoption strategy content - Fix "see all 30+ MCP tutorials" link pointing to single tutorial → now anchors to MCP Servers & Integrations section - Update verification date from 2026-03-20 to 2026-04-12 - Correct markdown line count from 1,048,763 to 706,049 - Fix agno-tutorial raw slug to display name "Agno"
1 parent 5884ab3 commit b1c9770

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ Use this quick-start map if you searched for a specific outcome.
6868
| task-driven autonomous agents | [BabyAGI](tutorials/babyagi-tutorial/) | [AutoGen](tutorials/autogen-tutorial/)[CrewAI](tutorials/crewai-tutorial/)[LangGraph](tutorials/langgraph-tutorial/) |
6969
| build RAG systems | [LlamaIndex](tutorials/llamaindex-tutorial/) | [Haystack](tutorials/haystack-tutorial/)[RAGFlow](tutorials/ragflow-tutorial/) |
7070
| run LLMs locally or at scale | [Ollama](tutorials/ollama-tutorial/) | [llama.cpp](tutorials/llama-cpp-tutorial/)[vLLM](tutorials/vllm-tutorial/)[LiteLLM](tutorials/litellm-tutorial/) |
71-
| autonomous ML training experiments | [autoresearch](tutorials/autoresearch-tutorial/) | [deer-flow](tutorials/deer-flow-tutorial/)[agno-tutorial](tutorials/agno-tutorial/) |
71+
| autonomous ML training experiments | [autoresearch](tutorials/autoresearch-tutorial/) | [deer-flow](tutorials/deer-flow-tutorial/)[Agno](tutorials/agno-tutorial/) |
7272
| build AI apps with TypeScript/Next.js | [Vercel AI SDK](tutorials/vercel-ai-tutorial/) | [CopilotKit](tutorials/copilotkit-tutorial/)[LobeChat](tutorials/lobechat-tutorial/) |
7373
| taskade ai / genesis / mcp workflows | [Taskade](tutorials/taskade-tutorial/) | [Taskade Docs](tutorials/taskade-docs-tutorial/)[Taskade MCP](tutorials/taskade-mcp-tutorial/)[Taskade Awesome Vibe Coding](tutorials/taskade-awesome-vibe-coding-tutorial/)[MCP Servers](tutorials/mcp-servers-tutorial/) |
74-
| build MCP tools and integrations | [MCP Python SDK](tutorials/mcp-python-sdk-tutorial/) | [FastMCP](tutorials/fastmcp-tutorial/)[MCP Servers](tutorials/mcp-servers-tutorial/)[Awesome MCP Servers](tutorials/awesome-mcp-servers-tutorial/)[MCP Inspector](tutorials/mcp-inspector-tutorial/)[MCP TypeScript SDK](tutorials/mcp-typescript-sdk-tutorial/)[Composio](tutorials/composio-tutorial/)[see all 30+ MCP tutorials →](tutorials/mcp-python-sdk-tutorial/) |
74+
| build MCP tools and integrations | [MCP Python SDK](tutorials/mcp-python-sdk-tutorial/) | [FastMCP](tutorials/fastmcp-tutorial/)[MCP Servers](tutorials/mcp-servers-tutorial/)[Awesome MCP Servers](tutorials/awesome-mcp-servers-tutorial/)[MCP Inspector](tutorials/mcp-inspector-tutorial/)[MCP TypeScript SDK](tutorials/mcp-typescript-sdk-tutorial/)[Composio](tutorials/composio-tutorial/)[see all MCP tutorials →](#mcp-servers--integrations) |
7575

7676
<div align="right"><a href="#top">⬆ Back to top</a></div>
7777

@@ -99,7 +99,7 @@ Quick jump links:
9999

100100
## ✅ Source Verification Status
101101

102-
All tutorial indexes were re-verified against referenced upstream GitHub repositories on **2026-03-20**:
102+
All tutorial indexes were re-verified against referenced upstream GitHub repositories on **2026-04-12**:
103103

104104
- tutorials scanned: **203**
105105
- tutorials with source repos: **203**
@@ -614,7 +614,7 @@ Dyad ──→ bolt.diy ──→ Stagewise ──→ Cline ──→ Roo Code
614614
╠══════════════════════════════════════════════════════════╣
615615
║ 📦 Total Tutorials 203 ║
616616
║ 📝 Numbered Chapters 1,624+ ║
617-
║ 📏 Tutorial Markdown 1,048,763 lines ║
617+
║ 📏 Tutorial Markdown 706,049 lines
618618
║ ⏱️ Estimated Hours 2,000+ ║
619619
║ ✅ Local Broken Links 0 ║
620620
║ 🧭 Structure Drift 0 (all root canonical) ║

tutorials/awesome-claude-skills-tutorial/08-team-adoption-and-ongoing-maintenance.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,22 @@ Next steps:
4949
The `main` function in [`skill-creator/scripts/init_skill.py`](https://github.com/ComposioHQ/awesome-claude-skills/blob/HEAD/skill-creator/scripts/init_skill.py) handles a key part of this chapter's functionality:
5050

5151
```py
52-
Delete this entire "Structuring This Skill" section when done - it's just guidance.]
52+
def init_skill(name: str, template: str = "default"):
53+
"""Initialize a new skill directory from a template."""
54+
skill_dir = Path("skills") / name
55+
skill_dir.mkdir(parents=True, exist_ok=True)
56+
copy_template(template, skill_dir)
57+
print(f"Skill '{name}' initialized at {skill_dir}")
58+
```
59+
60+
## Adoption Strategy and Rollout Planning
5361

54-
## [TODO: Replace with the first main section based on chosen structure]
62+
Rolling out Claude skills across a team requires a phased approach. Start with a pilot group of 2-3 engineers who will validate the skill library against real workflows, then expand once the core patterns are proven.
5563

56-
[TODO: Add content here. See examples in existing skills:
57-
- Code samples for technical skills
58-
- Decision trees for complex workflows
59-
- Concrete examples with realistic user requests
60-
- References to scripts/templates/references as needed]
64+
Key adoption milestones:
65+
1. **Individual adoption**: Single developer uses skills for personal productivity
66+
2. **Team sharing**: Skills shared via Git with team-specific customizations
67+
3. **Organization standard**: Skills become part of the official developer toolkit with review processes
6168

6269
## Resources
6370

0 commit comments

Comments
 (0)