60 Curated Skills, Workflows & Open-Source Projects: The Ultimate Claude Advanced List

marsbitОпубликовано 2026-03-30Обновлено 2026-03-30

Введение

This comprehensive guide curates 60 essential AI tools, frameworks, and resources to help developers, creators, and builders move from using AI to constructing robust AI systems. The list is organized into nine key categories: AI Programming Agents & IDEs (e.g., Claude Code, Cursor), Agent Frameworks (e.g., OpenClaw, LangGraph), MCP Services & Tool Integrations (e.g., Tavily, Context7), Claude Skills (e.g., PDF Processing, Frontend Design), Local AI & Model Runners (e.g., Ollama, Open WebUI), Workflow & Automation (e.g., n8n, Langflow), Search, Data & RAG (e.g., GPT Researcher, Chroma), API & Infrastructure (e.g., FastAPI, Portkey Gateway), and Learning Resources (e.g., Awesome Agents, PromptingGuide). The author emphasizes a structured approach, recommending specific starting toolkits based on the user's role—developer, creator, product builder, or learner—to avoid overload and build practical, production-ready workflows.

Abstract: Suitable for developers, content creators, product builders, and beginners.

Editor's Note: If you've been following AI recently, it's easy to get the illusion: there are more and more tools, but fewer and fewer that you can actually use.

For most people, the difficulty is not whether there are tools, but which tools are worth using and where to start.

This list is based on practical testing and systematically sorts the current AI tool ecosystem, filtering out 60 tools and categorizing them by different levels and usage scenarios: from coding and development tools, to agent frameworks and tool integration, to workflow automation, data processing and infrastructure, and finally extending to learning resources and continuous update paths.

Overall, it outlines a clear path from "Using AI" to "Building AI systems," providing different entry paths for developers, content creators, product builders, and beginners, helping readers find a suitable entry point in the complex tool ecosystem.

In an era of constant tool iteration, such a structured overview is perhaps more meaningful than single-point recommendations. It provides not answers, but a more efficient way to understand and use AI.

The original text is below:

I spent over 100 hours testing various AI tools so you don't have to step on the pitfalls yourself.

Bookmark this first :)

By 2026, the AI tool ecosystem has reached a level of "information overload": new frameworks every week, new agents every day, new projects topping GitHub's trending list every morning.

Most of it is just hype. Some are indeed useful. A very few will truly change how you work.

I've filtered out the noise for you.

The 60 tools below are those I've personally tested and filtered out as currently worth paying attention to—organized by category, along with the scenarios they are truly good at.

Suggest you bookmark it; you'll likely come back to use it repeatedly.

Part 1: AI Programming Agent & IDE

These types of tools allow AI to help you write code, review code, and even manage the entire development process.
The key point: these are ones that can actually run in real workflows, not just stay in demos.

1. Claude Code
A command-line programming agent launched by Anthropic. Can read files, write code, run tests, and operate directly in your local environment.
If you want to maintain full control in AI-assisted development, this is currently the "gold standard".
https://docs.anthropic.com/en/docs/claude-code

2. Cursor
An AI-first code editor built on VS Code. Supports inline completion, conversation with the codebase, and multi-file editing.
Suitable for developers who want to seamlessly integrate AI into existing development workflows.
https://www.cursor.com

3. Codex CLI
A terminal programming agent launched by OpenAI. Give instructions in natural language, it will read the codebase, generate and execute code.
Very strong in multi-step task implementation.
https://github.com/openai/codex

4. Windsurf
An AI programming IDE launched by Codeium. Its Cascade agent supports multi-file editing, deep understanding of the codebase, and an "immersive coding flow".
Growing fast.
https://codeium.com/windsurf

5. Superpowers
A collection of 20+ practical skills built for Claude Code, including TDD, debugging, pipelines from planning to execution, etc.
Over 96k stars on GitHub. If you use Claude Code, it is recommended to install this first.
https://github.com/obra/superpowers

6. Spec Kit (GitHub)
A "Specification-Driven Development" tool: write the specification first, then have the AI generate the code. Forces you to think clearly before starting. Over 50k stars on GitHub.
https://github.com/github/spec-kit

7. Aider
An AI pair programming tool in the terminal, supports any LLM.
Especially strong in handling existing codebases. Over 30k stars on GitHub.
https://github.com/paul-gauthier/aider

Part 2: Agent Frameworks

Used to build automated systems that can "think-act-iterate".

8. OpenClaw
A phenomenal open-source AI agent. Supports long-running operation, multi-channel (WhatsApp / Telegram / Discord), and can even write its own skills.
Over 210k stars on GitHub, currently one of the easiest entry points for personal AI agents.
https://github.com/openclaw/openclaw

9. LangGraph
Uses "graph structures" to orchestrate multiple agents: supports branching logic, human-in-the-loop, and persistent state.
https://github.com/langchain-ai/langgraph

10. CrewAI
A multi-agent collaboration framework where each agent has a role, goal, and "persona".
Suitable for simulating team collaboration processes.
https://github.com/crewAIInc/crewAI

11. AutoGPT
A veteran fully automated agent framework, suitable for long-running tasks.
Much more mature compared to early versions.
https://github.com/Significant-Gravitas/AutoGPT

12. Dify
An open-source LLM application building platform that integrates workflow, RAG, agents, and model management.
Also friendly to non-developers.
https://github.com/langgenius/dify

13. OWL
A multi-agent collaboration framework, leading in GAIA benchmark performance.
Represents cutting-edge research moving towards practical use.
https://github.com/camel-ai/owl

14. CopilotKit
Allows embedding AI copilots directly into React applications.
Not just improving development efficiency, but making AI part of the product.
https://github.com/CopilotKit/CopilotKit

15. pydantic-ai
A type-safe agent framework based on Pydantic.
Suitable for Python developers who want structured, verifiable outputs.
https://github.com/pydantic/pydantic-ai

Part 3: MCP Services & Tool Integration

MCP (Model Context Protocol) allows AI to truly 'connect to the world'. Skills teach it *how* to do things, MCP gives it *the permission to do* them.

16. Tavily
A search engine designed specifically for AI agents, not blue links, but structured data that can be used directly by LLMs.
Offers four tools: search, extract, crawl, and maps; can be integrated with MCP in one minute.
https://github.com/tavily-ai/tavily-mcp

17. Context7
Injects the latest library documentation into the LLM's context.
No more "hallucinated APIs" or outdated methods.
Add a line "use context7" in the prompt to automatically pull the latest docs.
https://github.com/upstash/context7

18. Task Master AI
Your AI project manager. Input a PRD, it breaks it down into tasks with dependencies.
Then executed step-by-step by Claude, turning a chaotic development process into an orderly pipeline.
https://github.com/eyaltoledano/claude-task-master

19. MCP Playwright
Provides browser automation capabilities for LLMs.
Can control a real browser with natural language: testing, scraping, interaction can all be done.
https://github.com/executeautomation/mcp-playwright

20. fastmcp
Quickly build MCP services with minimal Python code.
One of the fastest paths to create custom tool integrations for Claude and other models.
https://github.com/jlowin/fastmcp

21. markdownify-mcp
Converts various formats like PDF, images, audio, etc., into Markdown.
Allows any document to enter the AI workflow.
https://github.com/zcaceres/markdownify-mcp

22. MCPHub
Manages multiple MCP services via HTTP.
A single panel to uniformly manage all tool connections.
https://github.com/samanhappy/mcphub

Part 4: Claude Skills (Curated)

Skills can inject "professional workflow capabilities" into Claude. The community currently has 80k+ skills; the ones below are truly worth installing.

23. PDF Processing (Official)
Supports reading PDFs, extracting tables, filling forms, merging and splitting files.
For knowledge workers, one of the most practical skills.
https://github.com/anthropics/skills/tree/main/skills/pdf

24. Frontend Design (Official)
Used to build truly usable design systems, including bold typography and production-ready UI.
Can break away from the common "AI-generated" design style. Over 277k+ installations.
https://github.com/anthropics/skills/tree/main/skills/frontend-design

25. Skill Creator (Official)
A "meta-skill". Describe your workflow in natural language, generate a complete SKILL.md within 5 minutes.
No need to write configuration to create new skills.
https://github.com/anthropics/skills/tree/main/skills/skill-creator

26. Marketing Skills (Corey Haines)
Covers 20+ skills including CRO, copywriting, SEO, email automation, growth strategies, etc.
Equivalent to "modularizing" the capabilities of an entire marketing team.
https://github.com/coreyhaines31/marketingskills

27. Claude SEO
Provides full-site audits, structured data validation, keyword analysis, and other functions.
12 sub-skills in total, covering the complete SEO workflow.
https://github.com/AgriciDaniel/claude-seo

28. Obsidian Skills
Developed by the Obsidian CEO. Supports automatic tagging, automatic linking, and deep integration with the knowledge base (vault).
If you use Obsidian, this is basically a must-install.
https://github.com/kepano/obsidian-skills

29. Context Optimization
Used to reduce token costs and improve KV cache efficiency.
Can significantly reduce API usage costs. GitHub 13,900+ stars.
https://github.com/muratcankoylan/agent-skills-for-context-engineering

30. Deep Research Skill
8-stage research process + automatic continuation mechanism.
Suitable for scenarios where Claude needs to do "deep research" rather than shallow summaries.
https://github.com/199-biotechnologies/claude-deep-research-skill

Part 5: Local AI & Model Running

Run models on local devices: higher privacy, faster response, no API cost.

31. Ollama
Run open-source large models locally with one command. Supports Llama, Mistral, Gemma, etc.
The fastest path from zero to local AI.
https://github.com/ollama/ollama

32. Open WebUI
A self-hosted ChatGPT-like interface. Simple, fast, fully functional.
Used with Ollama, can build a completely private AI system.
https://github.com/open-webui/open-webui

33. LlamaFile
Packages the entire large model into a single executable file.
No dependencies, download and run, extremely simple.
https://github.com/Mozilla-Ocho/llamafile

34. Unsloth
Increases model fine-tuning speed by 2x, while reducing memory usage by 70%.
If you need to train your own model, this is a great starting point.
https://github.com/unslothai/unsloth

35. vLLM
High-throughput inference engine, performance is 2–4x faster than traditional solutions.
Currently one of the mainstream choices for open-source model production deployment.
https://github.com/vllm-project/vllm

Part 6: Workflow & Automation

Integrate AI into your existing tools and processes.

36. n8n
Open-source workflow automation tool, supports 400+ integrations and AI nodes, can be self-hosted.
Currently one of the strongest visual AI automation builders.
https://github.com/n8n-io/n8n

37. Langflow
Build agent workflows by dragging and dropping. Over 140k stars on GitHub.
No need to write code to build complex agent pipelines.
https://github.com/langflow-ai/langflow

38. Huginn
Self-hosted web agents for monitoring, alerts, and data collection.
Emphasizes privacy-first, all automation runs on your own server.
https://极速赛车开奖结果记录

39. DSPy
Uses "programs" rather than "prompts" to drive models.
A framework originating from Stanford research, suitable for scenarios requiring higher stability.
https://github.com/stanfordnlp/dspy

40. Temporal
A "persistent workflow engine" for long-running tasks.
When your automation processes need to handle crashes, retries, timeouts, etc., this is the standard solution.<极速赛车开奖结果记录>

41. GPT Researcher
Automated research agent that can generate structured reports.
Input a topic, output a complete analysis with source citations.
https://github.com/assafelovic/gpt-researcher

42. Firecrawl
Converts any website into a data format suitable for LLMs.
A crawler tool designed specifically for AI pipelines.
https://github.com/mendableai/firecrawl

43. Vanna AI
Natural language to SQL.
Ask questions in English, directly generates database query statements.
Suitable for those who don't want to write SQL but need to use data.
https://github.com/vanna-ai/vanna

44. Instructor
Uses Pydantic models to make any LLM output structured JSON.
Supports 15+ providers including OpenAI, Anthropic, Google, etc.
The practical choice for many production-level AI engineers.
https://python.useinstructor.com

45. Chroma
Open-source vector database.
One of the simplest ways to add semantic search and long-term memory to AI applications.
https://github.com/chroma-core/chroma

46. dlt
Data pipeline tool for LLMs, can connect to 5000+ data sources.
Helps you import various data into AI workflows.
https://github.com/d极速赛车开奖结果记录

47. ExtractThinker
An "ORM" for document intelligence.
Can extract structured data from any type of document.
https://github.com/enoch3712/ExtractThinker

Part 8: API & Infrastructure

The "underlying pipelines" that make everything run in a production environment.

48. FastAPI
Python web framework for deploying AI applications.
Extremely well-documented, with built-in Pydantic data validation.
https://github.com/tiangolo/fastapi

49. Portkey Gateway
Access 250+ LLMs through one API.
Switch models without changing code.
https://github.com/Portkey-AI/gateway

50. OmniRoute
API proxy supporting 44+ AI providers.
Provides load balancing, failover, and cost optimization.
https://github.com/diegosouzapw/OmniRoute

51. lmnr
Used to track and evaluate agent behavior.
Can clearly see what the agent is doing and measure whether its performance meets standards.
https://github.com/lmnr-ai/lmnr

极速赛车开奖结果记录
Turns your codebase into a "persistent knowledge graph".
Allows Claude to remember the entire project structure across sessions.
https://github.com/DeusData/codebase-memory-mcp

Part 9: Curated Collections & Learning Resources

Where to continuously obtain information and constantly iterate cognition.

53. Awesome Claude Skills
Curated collection of skills, over 22k stars on GitHub.
The首选 entry point for finding new skills.
https://github.com/travisvn/awesome-claude-skills

54. Anthropic Skills Repo
Anthropic's official skills repository.
Also the current "standard paradigm" for skill building.
https://github.com/anthropics/skills

55. Awesome Agents
A curated list summarizing 100+ open-source agent tools.
https://github.com/kyrolabs/awesome-agents

56. PromptingGuide
A complete Prompt Engineering guide covering from basics to advanced.
https://www.promptingguide.ai

57. Anthropic Prompt Engineering Tutorial
Includes 9 chapters + Jupyter Notebook hands-on exercises.
One of the best paths to systematically learn Prompting.
https://github.com/anthropics/prompt-eng-interactive-tutorial

58. SkillsMP
A marketplace platform with 80k+ community skills.
Currently the largest Claude skills directory.
https://skillsmp.com

59. MAGI//ARCHIVE
Daily updates of the latest AI project repositories.
Used to track cutting-edge progress.
https://tom-doerr.github.io/repo_posts/

60. Anthropic Official Documentation
Covers all core content including API, Prompt, tool calls, agents, etc.
If you are serious about building AI products,建议 reading this from cover to cover.
https://docs.anthropic.com

How to Actually Use This List

Don't try to install all 60 of these tools at once. That will only lead to information overload and waste your time.

I recommend using it like this:

If you are a developer: Start with Claude Code (01) + Superpowers (05) + Context7 (17) + Tavily (16).
This combination can help you set up a powerful AI programming environment with search capabilities and documentation support.

If you are a creator / knowledge worker: Start with OpenClaw (08) + Obsidian Skills (28) + PDF Processing (23) + Frontend Design (24). This combination gives you an AI assistant with file management, document processing, and content creation capabilities.

If you are building a product: Start with FastAPI (48) + Instructor (44) + Chroma (45) + LangGraph (09).
This combination covers backend framework, structured output, memory system, and agent orchestration capabilities, enough to support a production-level AI application.

If you just want to learn: Start with the Anthropic tutorial (57) + PromptingGuide (56) + Anthropic official documentation (60).
Lay a solid foundation first, then add tools later.

Choose a path and start深入 using it.

Expand your tools slowly as needs arise.

TL;DR

Skills = Teach AI "how to do better"
MCP = Give AI "the ability to access external tools and data"
Repos = Provide all the open-source infrastructure

Combine these three, and what you get is no longer a "demo that looks cool," but a truly productive AI workflow.

That's it. 60 tools. Now, go build something.

Связанные с этим вопросы

QWhat are the main categories of AI tools covered in the article, and how many tools are listed in total?

AThe article covers 9 main categories: AI Programming Agent & IDE, Agent Frameworks, MCP Services & Tool Integration, Claude Skills (Curated), Local AI & Model Running, Workflow & Automation, Search, Data & RAG, API & Infrastructure, and Curated Collections & Learning Resources. It lists 60 tools in total.

QWhich tool is recommended as the 'gold standard' for developers who want to maintain full control in AI-assisted development?

AClaude Code is recommended as the 'gold standard' for developers who want to maintain full control in AI-assisted development, as it operates directly in the local environment.

QWhat is the purpose of MCP (Model Context Protocol) services and tool integrations mentioned in the article?

AMCP (Model Context Protocol) services and tool integrations allow AI to 'connect to the real world' by giving it the permissions and ability to access and use external tools and data, beyond just knowing how to perform tasks.

QWhat is a recommended starting tool combination for a creator or knowledge worker according to the article?

AFor a creator or knowledge worker, the recommended starting combination is OpenClaw (a versatile AI agent), Obsidian Skills (for knowledge management), PDF Processing (for document handling), and Frontend Design (for content creation).

QWhere does the article suggest developers who are building a production-level AI application should start in terms of tool selection?

AFor developers building a production-level AI application, the article suggests starting with FastAPI (backend framework), Instructor (for structured output), Chroma (vector database for memory), and LangGraph (for agent orchestration).

Похожее

55TB to 28TB? The Rumor and Panic Behind Rubin's Memory Being Halved

Title: 55TB to 28TB? The Rumor and Panic Behind the Potential Halving of Rubin's Memory. On June 4th, a report from SemiAnalysis suggested NVIDIA's next-gen Vera Rubin NVL72 AI rack may ship with roughly 28TB of SOCAMM DRAM per rack instead of the anticipated 55TB, primarily using 96GB modules. This sparked a market panic, causing Micron's stock to drop over 10% on fears of halved memory demand. However, the article argues this panic is misguided for several key reasons. First, SOCAMM modules are socketed and upgradeable, not soldered. Lower initial configuration doesn't mean permanent demand loss. Second, the primary driver is a severe 2026 LPDDR5X supply shortage, not diminished need. NVIDIA is likely prioritizing rack shipments with available components. Third, with fixed total LPDDR5X supply, using less per rack could allow NVIDIA to ship *more* racks, not necessarily reducing overall memory orders. Micron's sharp drop was also attributed to a broader semiconductor sell-off triggered by Broadcom's earnings, with the SemiAnalysis report providing a convenient narrative for profit-taking after Micron's massive rally. In summary: the report on lower default configurations is likely accurate, but interpreting it as a demand collapse is wrong. The real risk for Micron lies in its reportedly minimal HBM4 share for Rubin, not in potentially flexible SOCAMM demand. The sell-off appears more like a correction amplified by coinciding negative catalysts.

marsbit18 мин. назад

55TB to 28TB? The Rumor and Panic Behind Rubin's Memory Being Halved

marsbit18 мин. назад

Exclusive from Yingke | Tang Wenbin's 'Yuanli Lingji' Merges with Logistics Robotics Company, and Secures Investment from Zhipu, SenseTime, Jieyue, and Others

Exclusive report: Embodied AI company "Yuanli Lingji" recently completed a new round of financing from major AI model firms including Zhipu AI, Stepfun, and SenseTime, alongside continued investments from industrial backers like Huaqin and SAIC Hengxu. Founded in March 2025 by Tang Wenbin, former co-founder and CTO of Megvii, Yuanli Lingji is a general-purpose embodied AI model company. In a notable move, the company has merged with logistics robotics firm "Atomix" (formerly known as Yuanli Juhe) through a share acquisition. Atomix, which originated from Megvii's logistics robotics business led by Tang in 2016 and was spun off in July 2024, has grown to become the world's second-largest supplier of pallet shuttle robots, with annual revenue nearing 1 billion RMB and over 500 projects globally for clients like Uniqlo and CATL. This merger aims to break the industry's "data deadlock" by combining Atomix's extensive real-world operational data from more than 20 countries with Yuanli Lingji's model training capabilities. The company's embodied AI model "DM0" utilizes a cross-domain training approach, integrating internet semantics, autonomous driving rules, and robotics data to achieve hardware-agnostic, precise manipulation even with a compact 2.4B parameter size. The collective investment from key AI players and the strategic merger signal a shift in the competitive landscape, as major model companies pivot from language tokens to physical actions ("from Token to Action"). The industry is entering a consolidation phase where hardware, AI models, data, and application scenarios converge to scale embodied intelligence, a trend mirrored by recent moves from giants like ByteDance and Skild AI.

marsbit26 мин. назад

Exclusive from Yingke | Tang Wenbin's 'Yuanli Lingji' Merges with Logistics Robotics Company, and Secures Investment from Zhipu, SenseTime, Jieyue, and Others

marsbit26 мин. назад

U.S. Stock Market Trends: Dow Hits New High, Nasdaq Falls, Whom Did Broadcom's Slap Wake Up?

U.S. Stocks Split: Dow Hits Record High as Nasdaq Slips; Broadcom's Plunge Sparks Rotation On June 4, the U.S. stock market saw a sharp divergence. The Dow Jones surged 875 points (+1.73%) to a record high of 51,561.93, while the Nasdaq Composite edged down 0.09%. The S&P 500 rose 0.41%. The primary catalyst was a sharp sell-off in AI-related chip stocks, led by Broadcom (AVGO). Despite reporting a 143% year-over-year jump in AI semiconductor revenue to $10.8 billion, the company's shares plunged about 14%. This was triggered by its maintained long-term AI revenue target, which failed to meet heightened expectations for a stock that had gained 55% this quarter and traded at a high P/E ratio. The slide dragged down the broader semiconductor sector and the technology板块. Conversely, money rotated into sectors like Healthcare (+3.14%), Financials (+2.67%), and Real Estate (+1.87%). UnitedHealth and Goldman Sachs were major contributors to the Dow's gains. The rotation was attributed to a search for value outside overheated tech names and a slight dip in Treasury yields. In other major news, SpaceX confirmed its IPO for June 12, targeting a record $75 billion raise at a ~$1.75 trillion valuation. Additionally, initial jobless claims rose to a four-month high, adding nuance to the labor market narrative ahead of the key May non-farm payrolls report. The day's action signaled that while the AI growth story remains intact, excessive valuations are prompting a market reassessment. Funds are moving, at least temporarily, from high-flying tech to more defensive and value-oriented sectors. The sustainability of this rotation hinges on upcoming economic data, particularly the jobs report, and the market's absorption of the massive SpaceX IPO.

marsbit29 мин. назад

U.S. Stock Market Trends: Dow Hits New High, Nasdaq Falls, Whom Did Broadcom's Slap Wake Up?

marsbit29 мин. назад

From 'Old Dogs' to 'New Darlings': How AI is Revaluing Old Infrastructure, from Dell to Nokia

"Old Dogs" Become AI's New Darlings: Revaluing Legacy Infrastructure The AI investment narrative is shifting. Beyond the spotlight on core chipmakers like Nvidia, a new wave of interest is rising for legacy tech companies—Dell, HPE, Nokia, Cisco, Corning, Western Digital—once labeled as slow-growth, outdated stories. This resurgence stems from AI's evolution from model development to real-world deployment, creating massive demand for physical infrastructure. As AI moves into data center construction and enterprise adoption, the focus turns to who can actually build and deliver complex systems. These established players hold decades of experience in supply chains, integration, networking, and enterprise delivery—assets now critical for scaling AI. The revaluation can be grouped into three key infrastructure areas: 1. **Servers & Integration (e.g., Dell, HPE):** They are becoming essential system integrators, transforming GPUs into full-scale AI servers with networking, power, and cooling, then delivering them to clients. Strong recent earnings and AI-specific revenue/order growth for Dell and HPE underscore this shift. 2. **Networking & Connectivity (e.g., Corning, Nokia, Cisco):** As AI clusters grow, high-speed data transfer becomes paramount. Corning benefits from fiber demand for data center links, Nokia is exploring AI-integrated wireless networks (AI-RAN), and Cisco sees surging orders for data center switches—all critical for efficient AI operations. 3. **Storage (e.g., Western Digital, Seagate):** The AI data explosion requires vast capacity. Beyond high-speed memory (HBM), there's growing need for high-capacity HDDs to store training data, logs, video, and cold/archival data cost-effectively. This revaluation, however, is not a blanket endorsement. True reassessment requires concrete proof: AI-driven orders and revenue growth, upward revisions to company guidance, and sustainable improvements in profit quality, not just top-line sales. In essence, AI is not turning all old tech firms into high-growth stocks; it is selectively re-pricing the "old assets" of companies that are mission-critical for building the new AI infrastructure, transforming their legacy capabilities into renewed growth engines.

marsbit38 мин. назад

From 'Old Dogs' to 'New Darlings': How AI is Revaluing Old Infrastructure, from Dell to Nokia

marsbit38 мин. назад

Торговля

Спот
Фьючерсы
活动图片