Over 100 AI Agents Gathered: Shubhamsaboo Releases Open Source Collection
Shubhamsaboo's "awesome-llm-apps" is gaining attention on GitHub. Over 100 AI agents, agent skills, and RAG apps have been released under the Apache-2.0 license.
Shubhamsaboo’s GitHub repository “awesome-llm-apps” has been trending on the platform. The repository features over 100 open-source AI agents, agent skills, and Retrieval-Augmented Generation (RAG) apps, all available under the Apache-2.0 license. The collection is meticulously curated and includes end-to-end tested tools, making it a standout resource.
License and Usage Scope
This collection is provided under the Apache-2.0 license, explicitly allowing free cloning, shipping, and selling. The design philosophy clearly supports commercial use, making it a compelling resource for developers.
The collection supports a wide range of models, including both closed-source and open-source options such as Claude, Gemini, GPT, DeepSeek, Llama, and Qwen. Step-by-step tutorials by Unwind AI are also available to help users get started.
How Agent Skills Work
A standout feature is the “Agent Skills” framework, which allows users to add new capabilities to code agents within just 10 seconds. Installation is completed with a single command, and operation is conducted in plain English. Each skill generates actual code and undergoes security and evaluation checks through CI gates. Supported code agents include major development tools like Claude Code, Codex, and Cursor.
The installation command is as follows:
npx skills add https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/agent_skills/project-graveyard
Once installed, simply asking a question like “Why do I never finish my side projects?” will activate the relevant skill.
Representative Agent Skills
- Project Graveyard: Helps users identify abandoned side projects, analyze why they were left unfinished, and determine which ones are worth resuming, offering support to complete them.
- Advisor Orchestrator Worker: Configures a meta-loop system with Claude Fable 5 as the advisor, GPT-5.6 as the orchestrator, and Gemini 3.5 Flash as the worker. This hierarchical approach combines multiple LLMs effectively for complex tasks.
- Self-Improving Agent Skills: Uses Gemini and the Agent Development Kit (ADK) to automatically optimize agent skills. This self-improving design could enhance the quality of operations continuously.
AI Agents for Beginners
Starter AI agents are provided in single-file formats and operate with just an API key. Examples include:
- AI Blog to Podcast Agent: Converts blog URLs into narrated podcast episodes.
- AI Breakup Recovery Agent: Provides psychological support after a breakup through a team of agents.
- AI Data Analysis Agent: Allows users to pose natural language questions to CSV or Excel files.
- AI Medical Imaging Agent: Analyzes X-rays and scan images using Gemini.
- AI Meme Generator Agent: Creates memes by driving an actual browser instead of using an image API.
- AI Music Generator Agent: Generates MP3 tracks from prompts.
- AI Travel Agent: Personalizes travel itineraries by day.
- Gemini Multimodal Agent: Performs video analysis and web searches in one agent.
- Mixture of Agents: Aggregates answers from multiple LLMs and selects the best response.
- xAI Finance Agent: Provides real-time stock analysis using Grok.
- OpenAI Research Agent: Conducts topic research using the OpenAI Agents SDK.
- Web Scraping AI Agent: Executes web scraping based on simple descriptions of the desired data.
Advanced AI Agents
The collection also includes production-grade agents with advanced features like tools, memory capabilities, and multi-step reasoning.
- AI Home Renovation Agent with Nano Banana Pro: Generates renovation plans and photorealistic renderings from photos.
- DevPulse AI: A signal intelligence system composed of multiple agents to aggregate and score technical signals.
Quick Start and Update Frequency
Any agent can be cloned and executed in just 30 seconds. The steps are as follows:
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
cd awesome-llm-apps/starter_ai_agents/ai_travel_agent
pip install -r requirements.txt
streamlit run travel_agent.py
New templates are added weekly, with email updates provided through Unwind AI.
Editorial Opinion
Short-term Impact: The release of this collection is expected to significantly lower the entry barriers for AI agent development. Multi-agent systems and RAG pipelines, which previously required individual setup, can now be operational immediately with single-file configurations. The ability to add new skills to code agents within 10 seconds directly improves development workflows. Over the next 3–6 months, we’re likely to see an increase in commercial products and startups based on this repository.
Long-term Perspective: Over a 1–3 year span, an ecosystem around agent skills may emerge. It is a natural progression for such single-repository collections to evolve into package managers or marketplaces. Additionally, the rise of open-source AI agents could intensify competition with proprietary agent services. While the CI gate security and evaluation checks are commendable, their reliability in production environments will depend on ongoing contributions from the community.
References
-
“Shubhamsaboo /
awesome-llm-apps", by **Shubhamsaboo** — GitHub Trending, 2026-07-16 (ARR) -
Source URL: https://github.com/Shubhamsaboo/awesome-llm-apps
Frequently Asked Questions
- Can this collection be used for commercial purposes?
- Yes. The Apache-2.0 license permits free cloning, shipping, and selling. However, you must comply with the terms of the Apache-2.0 license, including retaining copyright notices and disclaimers.
- Which LLM models are supported?
- The collection supports major models such as Claude, Gemini, GPT, DeepSeek, Llama, and Qwen, covering both closed-source and open-source options. Default models are set for each agent template, but they can be switched by replacing the API key.
- What environment is required to implement agent skills?
- A Node.js environment is needed to execute the `npx skills add` command. Supported code agents include Claude Code, Codex, and Cursor. For starter agents, Python and Streamlit are necessary, with dependencies resolved via `pip install`.
Comments