AIFCC
記事一覧へ
agent-opsai-thinkingclaude-workflowclaude-setup

2026年4月版:最良のオープンソースAIリポジトリ69選

self.dll@seelffff
554
## 2026年4月のベストオープンソースAIリポジトリ69選 平均的なAIスタートアップはツールサブスクリプションに年間$8,000〜$50,000を支払っている。実際にAIを作っている人々(研究者・エンジニア・インディーハッカー)はオープンソースを使う。常にそうだった。 300以上のリポジトリを精査し、本番環境対応・積極的にメンテされ・実際に有用な69件を選出した。 --- ## 01 LLM推論 — ローカルでモデルを動かす **ollama ★98K** - github.com/ollama/ollama llama、mistral、qwen、gemmaをワンコマンドでローカル実行。`ollama run llama3` で即完了。GPU加速・REST API・OpenAI互換エンドポイント対応。 **llama.cpp ★72K** - github.com/ggml-org/llama.cpp 純粋なC++によるLLM推論。CPU・GPU・Apple Siliconで動作。ほとんどのローカルAIツールのエンジン。ollamaが車なら、llama.cppはエンジン。 **vllm ★44K** - github.com/vllm-project/vllm 本番向け高スループットLLMサービングエンジン。連続バッチ処理・Paged Attention・OpenAI互換API対応。 **lm studio ★28K** - github.com/lmstudio-ai/lmstudio.js ローカルLLM実行のデスクトップアプリ。クリーンなUI、HuggingFaceからモデルをダウンロードして実行、OpenAI互換ローカルサーバーも付属。 **jan ★26K** - github.com/janhq/jan 100%オフライン動作のオープンソースChatGPT代替。Mac・Windows・Linux対応。データは自分のマシンから一切出ない。 **text-generation-webui ★42K** - github.com/oobabooga/text-generation-webui ローカルLLMのスイスアーミーナイフ。全モデルフォーマット・全バックエンド・全サンプラーに対応。キャラクターモード・ノートブックモード・APIモード搭載。 **localai ★26K** - github.com/mudler/LocalAI セルフホスト型OpenAIドロップイン代替。同じAPI、ローカルモデル。コードを1行も変えずにClaudeやGPTをローカルLLMに差し替え可能。 --- ## 02 RAG & 知識 — 自分のデータでAIを回答させる **langchain ★98K** - github.com/langchain-ai/langchain 最も人気のLLMフレームワーク。チェーン・エージェント・リトリーバー・メモリ。あらゆるデータソース・ツールにLLMを接続できる。 **llamaindex ★38K** LLMアプリ向けデータフレームワーク。PDF・SQL・Notion・Slackなどあらゆるデータソースをインデックス化し自然言語でクエリ可能。純粋なRAGユースケースではLangChainより優れている。 **rag-anything ★12K** - github.com/HKUDS/RAG-Anything ClaudeなどのLLM向けマルチモーダルRAG。テキスト・テーブル・画像・チャート・グラフに対応。セットアップはわずか6行。 **chroma ★16K** - github.com/chroma-core/chroma オープンソースベクターデータベース。埋め込み保存・類似検索・メタデータフィルタリング対応。インメモリまたは永続化で動作。 **weaviate ★12K** - github.com/weaviate/weaviate MLモデル内蔵のベクターデータベース。ハイブリッド検索・マルチテナント・リアルタイム更新対応。本番運用対応で数十億オブジェクトまでスケール可能。 **haystack ★18K** - github.com/deepset-ai/haystack RAGパイプライン向けエンドツーエンドNLPフレームワーク。モジュール式・本番対応・任意のLLMやベクターDBと連携可能。 **docling ★22K** - github.com/DS4SD/docling AI向けドキュメントの構造化Markdown変換。テーブル・図・数式入りPDFも処理可能。IBMリサーチ製。 --- ## 03 AIエージェント — モデルに行動させる **autogen ★40K** - github.com/microsoft/autogen Microsoftによるマルチエージェント会話フレームワーク。エージェント同士が会話し、タスクを委任し、コードを書いて実行できる。 **crewai ★28K** - github.com/crewAIInc/crewAI ロールプレイAIエージェントのオーケストレーション。クルーを定義し、役割を割り当て、目標を設定すればエージェントがチームのように協力する。 **langgraph ★10K** - github.com/langchain-ai/langgraph グラフ構造でステートフルなマルチエージェントワークフローを構築。本番グレードのエージェントフレームワーク。 **agno ★22K** - github.com/agno-agi/agno 高速マルチモーダルAIエージェント構築フレームワーク。任意のLLM・ツール・メモリ・知識・ストレージに対応。シンプルなエージェントではLangChainより10倍高速。 **smolagents ★14K** - github.com/huggingface/smolagents HuggingFaceによる最小限エージェントフレームワーク。Pythonを書いて実行するコードエージェント。全コードわずか1000行。アンチLangChain。 **openhands ★48K** - github.com/All-Hands-AI/OpenHands オープンソースのDevin代替。コードを書き・テストを実行し・バグを修正し・デプロイするAIソフトウェアエンジニア。Claude・GPT-4・ローカルモデルに対応。 **superagi ★16K** - github.com/TransformerOptimus/SuperAGI セルフホスト型自律AIエージェントインフラ。エージェントマーケットプレイス・パフォーマンステレメトリ・並行エージェント・グラフィカルUIを備える。 --- ## 04 プロンプト & 評価 — 推測をやめて計測する **dspy ★22K** - github.com/stanfordnlp/dspy プロンプトを書くのではなく、LLMをプログラムする。スタンフォードNLP発。手動プロンプトエンジニアリングを体系的な最適化に置き換える。 **guidance ★20K** - github.com/guidance-ai/guidance コードでLLM出力構造を制御する。生成とロジックを交互に配置、JSONスキーマを強制、出力を制約できる。 **outlines ★11K** - github.com/dottxt-ai/outlines 構造化テキスト生成。有効なJSON・正規表現パターン・特定フォーマットの出力を強制。プロンプトエンジニアリング不要で出力構造を保証。 **promptfoo ★6K** - github.com/promptfoo/promptfoo プロンプトのテストと評価。自動テスト実行・モデル比較・リグレッション検出。AIのためのユニットテスト。 **instructor ★9K** - github.com/instructor-ai/instructor PydanticでLLMから構造化出力を得る。OpenAI・Anthropic・Google・ローカルモデルに対応。最もクリーンな構造化出力ソリューション。 --- ## 05 ファインチューニング — モデルを自分仕様にする **unsloth ★24K** - github.com/unslothai/unsloth 2倍速く・80%少ないメモリでLLMをファインチューニング。Llama・Mistral・Qwen・Gemmaに対応。シングルGPU動作。 **axolotl ★8K** - github.com/axolotl-org/axolotl LLM向けストリームラインドファインチューニング。YAMLコンフィグ・全データセットフォーマット・全トレーニング技術に対応。 **llama-factory ★40K** - github.com/hiyouga/LLaMA-Factory コードゼロで100以上のLLMをファインチューニング。WebUI・LoRA・QLoRA・フルファインチューニングに対応。最もユーザーフレンドリーなファインチューニングツール。 **trl ★12K** - github.com/huggingface/trl トランスフォーマー強化学習。RLHF・DPO・PPO(GPT-4やClaudeのアライメントに使われる技術)をHuggingFaceが提供。 **torchtune ★5K** - github.com/pytorch/torchtune MetaによるPyTorchネイティブファインチューニングライブラリ。シンプルでハッカブル、ドキュメントも充実。 **mergekit ★4K** - github.com/arcee-ai/mergekit 複数のファインチューニング済みモデルをマージする。SLERP・TIES・DARE・線形マージなど全手法に対応。GPU不要。 --- ## 06 ツール & コンテキスト — モデルが本当に必要なものを与える **markitdown ★38K** - github.com/microsoft/markitdown あらゆるファイルをMarkdownに変換。PDF・Word・Excel・PowerPoint・画像・音声に対応。Microsoft製。 **files-to-prompt ★3K** - github.com/simonw/files-to-prompt コードベース全体を1つのプロンプトに変換。Simon Willison作。プロジェクトをClaudeに渡すための最もシンプルなツール。 **crawl4ai ★30K** - github.com/unclecode/crawl4ai AI向けWebスクレイピング。任意のURLからクリーンなMarkdownを抽出。JSヘビーサイトも対応。 **firecrawl ★25K** - github.com/mendableai/firecrawl あらゆるWebサイトをLLMレディデータに変換。サイト全体のクロール・構造化抽出・クリーンなMarkdown出力対応。本番グレードのAIアプリ向けWebスクレイパー。 **playwright-mcp ★31K** - github.com/microsoft/playwright-mcp Claudeに本物のブラウザを与える。ナビゲート・クリック・スクリーンショット・動的コンテンツ読み込みが可能。Webタスク向け最強のMCPサーバー。 **model-context-protocol ★11K** - github.com/anthropics/model-context-protocol ClaudeをLLM外部ツールに接続するための標準規格。公式Anthropic MCP。あらゆるAPI・データベース・サービスに接続可能。 **awesome-mcp-servers ★27K** - github.com/punkpeye/awesome-mcp-servers 500以上の既成MCPサーバー。GitHub・Slack・Notion・データベース・ブラウザ・金融など必要な統合がすべて揃っている。 **n8n ★47K** - github.com/n8n-io/n8n 400以上の統合を持つセルフホスト型ワークフロー自動化。LLMをあらゆるアプリに接続。スケジュールやWebhookでAIワークフローをトリガー。$50K/年のZapierを代替。 --- ## 07 デプロイ — リリースしてスケールする **litellm ★16K** - github.com/BerriAI/litellm 100以上のLLM向け統一API。OpenAIフォーマットで動作。Claude・GPT・Gemini・ローカルモデルに対応。ロードバランシング・フォールバック・コスト追跡機能付き。 **bentoml ★7K** - github.com/bentoml/BentoML AIサービスの構築とデプロイ。モデルのパッケージ化・API作成・どこへでもデプロイ可能。 **ray serve ★34K** - github.com/ray-project/ray スケールでの分散AI推論。複数モデルをサーブ・オートスケール・数百万リクエストをハンドル。OpenAI・Anyscaleが本番で使用。 **triton inference server ★8K** - github.com/triton-inference-server/server NVIDIAの本番推論サーバー。最大GPU利用率・動的バッチング・マルチモデルサービングに対応。エンタープライズGPU推論の標準。 **lorax ★3K** - github.com/predibase/lorax 1つのGPUで数百のLoRAファインチューニング済みモデルをサーブ。1つのベースモデルに数百のアダプターを動的にロード。コスト10分の1。 **supabase ★73K** - github.com/supabase/supabase AIアプリのデフォルトバックエンド。PostgreSQLベースのオープンソースFirebase代替。リアルタイムDB・認証・ストレージ・Edge Functions・ベクター検索対応。 --- ## 08 Claude専用 — Claudeを使うなら必須 **obra/superpowers ★160K** - github.com/obra/superpowers Claude Codeにスーパーパワーを追加。深いコード分析・自動リファクタ・プロジェクト全体編集。公式CLIの上のレイヤーとして動作。最も人気のClaudeエンハンスメント。 **claude-code-skills ★official** - github.com/anthropics/claude-code-skills 公式AnthropicスキルズフレームワークのSkill.mdパターン。複雑なタスクをエラーなく処理するためのClaudeの基盤。 **free-claude-code ★2K** - github.com/Alishahryar1/free-claude-code GitHub Models APIでClaudeCodeを完全無料で実行。GitHubトレンド1位。$0で永久に。 **claude-mem ★1K** - github.com/thedotmack/claude-mem Claudeの永続メモリ。セッション間でClaudeが行うすべてをキャプチャ。有料コンテキスト管理ツールを代替。 --- ## 09 データ準備 — ゴミを入れればゴミが出る **unstructured ★10K** - github.com/Unstructured-IO/unstructured LLM向け非構造化データの抽出・変換。PDF・HTML・Word・画像・メールを全部RAG向けクリーンチャンクに解析。 **datatrove ★3K** - github.com/huggingface/datatrove LLMトレーニング向け大規模データ処理。HuggingFace製。テラバイトのテキストを重複除去・品質フィルタリング・コンテンツ分類で処理。 **trafilatura ★3K** - github.com/adbar/trafilatura AI向けWebコンテンツ抽出。ボイラープレートを除去し、コンテンツを保持し、クリーンなテキストまたはMarkdownで出力。 **semchunk ★1K** - github.com/umarbutler/semchunk RAG向けセマンティックテキストチャンキング。任意のトークン数ではなく自然な境界でテキストを分割。より良いチャンク → より良い検索 → より良い回答。 **datachain ★2K** - github.com/iterative/datachain AIネイティブデータセット管理。マルチモーダルデータセットのバージョン管理・クエリ・変換。 --- ## 10 ビジョン & マルチモーダル — テキストを超えて **moondream ★10K** - github.com/vikhyat/moondream どこでも動く小型ビジョン言語モデル。1.6Bパラメーター。画像説明・視覚的質問応答・物体検出に対応。ラズベリーパイでも動作。 **internvl ★7K** - github.com/OpenGVLab/InternVL 最先端のオープンソースビジョンモデル。ほとんどのベンチマークでGPT-4Vに匹敵。Claudeのビジョンのオープン代替。 **whisper ★74K** - github.com/openai/whisper OpenAIのオープンソース音声認識。99言語の音声を文字起こし。ローカル動作、アクセント・背景ノイズ・技術用語にも対応。 **insanely-fast-whisper ★8K** - github.com/Vaibhavs10/insanely-fast-whisper Whisperの10〜20倍速バージョン。ワンコマンドで自動GPU最適化・バッチ処理。2時間のポッドキャストを2分で文字起こし。 **stable-diffusion-webui ★143K** - github.com/AUTOMATIC1111/stable-diffusion-webui Stable Diffusionのブラウザインターフェース。テキストから画像を生成・編集・アップスケール。LLM以外で最も多くスターが付いたAIリポジトリ。 --- 以上69件。AIの完全なオープンソーススタック、無料で。
原文を表示 / Show original
69 Best Open-Source AI Repositories in April 2026 16 80 536 618K the average AI startup pays $8,000–$50,000/year in tool subscriptions. the people actually building AI - researchers, engineers, indie hackers - use open-source. they always have. i went through 300+ repos. pulled out 69 that are production-ready, actively maintained, and genuinely useful. this is the full AI stack. free. This is the toolbox. what's inside: 01 llm inference - run models locally. no api. no limits. no bill. 02 rag & knowledge - make ai answer from your own data. 03 ai agents - let the model act, not just answer. 04 prompts & evals - stop guessing. start measuring. 05 fine-tuning -make the model yours. 06 tools & context -feed the model what it actually needs. 07 deployment -ship it. then scale it. 08 claude-specific - if you use claude, these are not optional. 09 data prep - garbage in, garbage out. fix the input. 10 vision & multimodal - beyond text. 69 bonus - don't want to run all this yourself? 01 llm inference run models locally. no api. no limits. no bill. 01 ollama ★ 98K - github.com/ollama/ollama run llama, mistral, qwen, gemma locally with one command. the fastest way to get a model running on your machine. `ollama run llama3` and you're done. supports gpu acceleration, rest api, openai-compatible endpoints. 02 llama.cpp ★ 72K - github.com/ggml-org/llama.cpp llm inference in pure c++. runs on cpu, gpu, apple silicon. the engine behind most local ai tools. if ollama is the car, llama.cpp is the engine. extremely fast, low memory usage. 03 vllm ★ 44K - github.com/vllm-project/vllm high-throughput llm serving engine for production. continuous batching, paged attention, openai-compatible api. the standard for deploying models at scale. used by most serious ai companies. 04 lm studio ★ 28K desktop app for running local llms with a clean ui. download models from hugging face, run them locally, get an openai-compatible local server. best onboarding for non-developers. github.com/lmstudio-ai/lmstudio.js 05 jan ★ 26K - github.com/janhq/jan open-source chatgpt alternative that runs 100% offline. clean ui, model management, local api server. works on mac, windows, linux. no data leaves your machine. 06 text-generation-webui ★ 42K - github.com/oobabooga/text-generation-webui the swiss army knife for local llms. supports every model format, every backend, every sampler. character mode, notebook mode, api mode. the most feature-complete local ui that exists. 07 localai ★ 26K - github.com/mudler/LocalAI self-hosted openai drop-in replacement. same api, local models. swap claude/gpt with local llms in any app without changing a single line of code. 02 rag & knowledge make ai answer from your own data. 08 langchain ★ 98K - github.com/langchain-ai/langchain the most popular llm framework. chains, agents, retrievers, memory. connects llms to any data source or tool. massive ecosystem of integrations. if you're building anything with ai, you'll hit langchain eventually. 09 llamaindex ★ 38K - github.com/langchain-ai/langchain data framework for llm applications. index any data source - pdf, sql, notion, slack - and query it with natural language. better than langchain for pure rag use cases. 10 rag-anything ★ 12K - github.com/HKUDS/RAG-Anything multimodal rag for claude and other llms. handles text, tables, images, charts, graphs. not just pdfs - actually everything. 6 lines to set up. used in production by serious teams. 11 chroma ★ 16K - github.com/chroma-core/chroma the open-source vector database. store embeddings, search by similarity, filter by metadata. runs in-memory or persistent. the simplest way to add semantic search to any project. 12 weaviate ★ 12K - github.com/weaviate/weaviate vector database with built-in ml models. hybrid search, multi-tenancy, real-time updates. production-ready, scales to billions of objects. used by companies you've heard of. 13 haystack ★ 18K - github.com/deepset-ai/haystack end-to-end nlp framework for rag pipelines. modular, production-ready, works with any llm or vector db. the most mature rag framework available. 14 docling ★ 22K - github.com/DS4SD/docling convert documents to structured markdown for ai. handles pdfs with tables, figures, formulas - not just plain text extraction. built by ibm research. 03 ai agents let the model act, not just answer. 15 autogen ★ 40K - github.com/microsoft/autogen multi-agent conversation framework by microsoft. agents talk to each other, delegate tasks, write and execute code. the most powerful framework for complex agentic workflows. 16 crewai ★ 28K - github.com/crewAIInc/crewAI orchestrate role-playing ai agents. define a crew, assign roles, set goals — agents collaborate like a team. easiest way to build multi-agent systems that actually work. 17 langgraph ★ 10K - github.com/langchain-ai/langgraph build stateful multi-agent workflows as graphs. nodes are agents or functions, edges are transitions. handles complex logic, loops, human-in-the-loop. the production-grade agent framework. 18 agno ★ 22K - github.com/agno-agi/agno build fast multi-modal ai agents. supports any llm, any tool, memory, knowledge, storage. 10x faster than langchain for simple agents. clean api, excellent documentation. 19 smolagents ★ 14K - github.com/huggingface/smolagents minimal agent framework by hugging face. code agents that write and execute python to solve tasks. incredibly simple - 1000 lines of code total. the anti-langchain. 20 openhands ★ 48K - github.com/All-Hands-AI/OpenHands open-source devin alternative. ai software engineer that writes code, runs tests, fixes bugs, deploys. works with claude, gpt-4, local models. the most capable coding agent. 21 superagi ★ 16K - github.com/TransformerOptimus/SuperAGI self-hosted autonomous ai agent infrastructure. agent marketplace, performance telemetry, concurrent agents, graphical ui. run multiple agents in parallel on your own server. 04 prompts & evals stop guessing. start measuring. 29 dspy ★ 22K - github.com/stanfordnlp/dspy programming - not prompting - llms. define what you want, dspy optimizes the prompts automatically. from stanford nlp. replaces manual prompt engineering with systematic optimization. 30 guidance ★ 20K - github.com/guidance-ai/guidance control llm output structure with code. interleave generation with logic, force json schemas, constrain outputs. when you need the model to output exactly what you need. 31 outlines ★ 11K - github.com/dottxt-ai/outlines structured text generation. force models to output valid json, regex patterns, specific formats. zero prompt engineering needed - guaranteed output structure. 32 promptfoo ★ 6K - github.com/promptfoo/promptfoo test and eval your prompts. run automated tests, compare models, catch regressions. like unit tests but for ai. essential before shipping anything to production. 33 braintrust ★ 3K - github.com/brainlid/langchain eval framework for llm apps. track quality across model versions, prompts, and configurations. because vibes aren't a metric. 34 instructor ★ 9K - github.com/instructor-ai/instructor structured outputs from llms using pydantic. define a schema, get back a validated python object. works with openai, anthropic, google, local models. the cleanest structured output solution. 05 fine-tuning make the model yours. 35 unsloth ★ 24K - github.com/unslothai/unsloth fine-tune llms 2x faster, 80% less memory. supports llama, mistral, qwen, gemma. runs on a single gpu. the only fine-tuning library you need if you're resource-constrained. 36 axolotl ★ 8K - github.com/axolotl-org/axolotl streamlined fine-tuning for llms. yaml config, every dataset format, every training technique. the ops layer on top of hugging face transformers. used by most serious fine-tuners. 37 llama-factory ★ 40K - github.com/hiyouga/LLaMA-Factory fine-tune 100+ llms with zero code. web ui, supports lora, qlora, full fine-tuning. the most user-friendly fine-tuning tool available. 40K stars for a reason. 38 trl ★ 12K - github.com/huggingface/trl transformer reinforcement learning. rlhf, dpo, ppo - the techniques used to align gpt-4 and claude. by hugging face. for when you want to train models to do what you actually want. 39 torchtune ★ 5K - github.com/pytorch/torchtune pytorch-native fine-tuning library from meta. simple, hackable, well-documented. the reference implementation for fine-tuning in pure pytorch. 40 mergekit ★ 4K - github.com/arcee-ai/mergekit merge multiple fine-tuned models into one. slerp, ties, dare, linear merge - all the techniques. no gpu needed for merging. create frankenstein models that outperform their parents. used by everyone releasing merged models on hugging face. 06 tools & context feed the model what it actually needs 41 markitdown ★ 38K - github.com/microsoft/markitdown convert any file to markdown. pdf, word, excel, powerpoint, images, audio. feeds clean structured text to your llm instead of garbage. by microsoft. 38K stars. 42 files-to-prompt ★ 3K - github.com/simonw/files-to-prompt turn your entire codebase into one prompt. respects .gitignore, recursive, filterable. by simon willison. the simplest tool for feeding projects to claude. 43 crawl4ai ★ 30K - github.com/unclecode/crawl4ai web scraping for ai. extracts clean markdown from any url, handles js-heavy sites, structured data extraction. the web data layer for any ai pipeline. 44 firecrawl ★ 25K - github.com/mendableai/firecrawl turn any website into llm-ready data. full site crawling, structured extraction, clean markdown output. the production-grade web scraper for ai apps. 45 playwright-mcp ★ 31K - github.com/microsoft/playwright-mcp give claude a real browser. navigate, click, screenshot, read dynamic content. analyze any site in 30 seconds. the most powerful mcp server for web tasks. 46 model-context-protocol ★ 11K - github.com/anthropics/model-context-protocol the standard for connecting claude to external tools. official anthropic mcp. plug in any api, database, service. hundreds of servers in the ecosystem. 47 awesome-mcp-servers ★ 27K - github.com/punkpeye/awesome-mcp-servers 500+ ready-made mcp servers. github, slack, notion, databases, browsers, finance. every integration you'll ever need in one catalog. 48 n8n ★ 47K - github.com/n8n-io/n8n self-hosted workflow automation with 400+ integrations. connect llms to any app. trigger ai workflows on schedules or webhooks. run custom js/python in nodes. the automation layer behind serious ai pipelines. replaces $50K/year zapier. 07 deployment ship it. then scale it. 49 litellm ★ 16K - github.com/BerriAI/litellm one api for 100+ llms. openai format, works with claude, gpt, gemini, local models. load balancing, fallbacks, cost tracking. the proxy layer between your app and every llm provider. 50 bentoml ★ 7K - github.com/bentoml/BentoML build and deploy ai services. package models, create apis, deploy anywhere. from local testing to production kubernetes. the mlops layer that doesn't require a devops team. 51 ray serve ★ 34K - github.com/ray-project/ray distributed ai inference at scale. serve multiple models, autoscale, handle millions of requests. used by openai, anyscale, production ai companies. overkill until you need it. 52 triton inference server ★ 8K - github.com/triton-inference-server/server nvidia's production inference server. maximum gpu utilization, dynamic batching, multi-model serving. the standard for gpu inference in enterprise. 53 lorax ★ 3K - github.com/predibase/lorax serve hundreds of lora fine-tuned models on one gpu. one base model, hundreds of adapters loaded dynamically. 10x cost reduction for serving fine-tuned models. 54 supabase ★ 73K - github.com/supabase/supabase the default backend for ai applications. open-source firebase alternative built on postgres. real-time database, auth, storage, edge functions, vector search. 73K stars. replaces firebase + auth0 ($15K/year). 08 claude-specific if you use claude, these are not optional. 55 obra/superpowers ★ 160K - github.com/obra/superpowers adds superpowers to claude code. deep code analysis, auto-refactor, project-wide editing. works as a layer on top of the official cli. 160K stars. the most popular claude enhancement. 56 claude-code-skills ★ official - github.com/anthropics/claude-code-skills official anthropic skills framework. skill.md patterns that teach claude to handle documents, automations, workflows without errors. the foundation of how claude code handles complex tasks. 57 free-claude-code ★ 2K - github.com/Alishahryar1/free-claude-code run claude code completely free via github models api. trending #1 on github. step by step guide + setup scripts. $0. forever. 58 claude-mem ★ 1K - github.com/thedotmack/claude-mem persistent memory for claude. auto-captures everything claude does across sessions. replaces paid context management tools. claude remembers who you are and what you're working on. 09 data prep garbage in, garbage out. fix the input. 59 unstructured ★ 10K - github.com/Unstructured-IO/unstructured extract and transform unstructured data for llms. pdfs, html, word, images, emails - all parsed into clean chunks ready for rag. the data layer most ai pipelines are missing. 60 datatrove ★ 3K - github.com/huggingface/datatrove large-scale data processing for llm training. by hugging face. process terabytes of text with deduplication, quality filtering, and content classification. what the big labs use. 61 trafilatura ★ 3K -github.com/adbar/trafilatura web content extraction for ai. strips boilerplate, keeps content, outputs clean text or markdown. the best single-page web extractor for feeding text to models. 62 semchunk ★ 1K - github.com/umarbutler/semchunk semantic text chunking for rag. splits text at natural boundaries instead of arbitrary token counts. better chunks → better retrieval → better answers. 63 datachain ★ 2K - github.com/iterative/datachain ai-native dataset management. version, query, and transform multimodal datasets. works with images, video, text, embeddings. built for llm training workflows 10 vision & multimodal beyond text. 64 moondream ★ 10K - github.com/vikhyat/moondream tiny vision language model that runs anywhere. 1.6B parameters. describe images, answer visual questions, detect objects. runs on a raspberry pi. the smallest useful vision model. 65 internvl ★ 7K - github.com/OpenGVLab/InternVL state of the art open-source vision model. matches gpt-4v on most benchmarks. understand images, charts, documents, screenshots. the open alternative to claude's vision. 66 whisper ★ 74K - github.com/openai/whisper open-source speech recognition by openai. transcribes audio in 99 languages. runs locally, handles accents, background noise, technical jargon. feed audio to your llm pipeline. 67 insanely-fast-whisper ★ 8K - github.com/Vaibhavs10/insanely-fast-whisper whisper but 10-20x faster. one command, automatic gpu optimization, batch processing. transcribe a 2-hour podcast in 2 minutes on consumer hardware. 68 stable-diffusion-webui ★ 143K - github.com/AUTOMATIC1111/stable-diffusion-webui the browser interface for stable diffusion. generate, edit, upscale images from text. 143K stars - the most starred ai repo outside llms. hundreds of extensions, styles, controlnet, inpainting. runs on your gpu. 69 kreo - copy the top polymarket traders ★ - http://t.me/KreoPolyBot?start=ref-kreohub kreo tracks the top-performing wallets on polymarket in real time and automatically copies their trades. no code, no monitoring, runs 24/7. the top polymarket traders use sophisticated models to find mispriced markets -kreo lets you follow them without building the infrastructure yourself.a that's all 69

AIFCC — AI Fluent CxO Club

読み書きそろばん、AI。経営者が AI を自分で動かせるようになるコミュニティ。

2026年4月版:最良のオープンソースAIリポジトリ69選 | AIFCC