ai-guide
MCP ServerFree程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(DeepSeek / GPT / Gemini / Claude)、最新 AI 资讯、Prompt 提示词大全、AI 知识百科(Agent Skills / RAG / MCP / A2A)、AI 编程教程(Harness Engineering)、AI 工具用法(Cursor / Claude Code / TRAE / Lovable / Copilot)、AI 开发框架教程(Spring AI / LangChain)、AI 产品变现指南,帮你快速掌握 AI 技术,走在时
Capabilities13 decomposed
structured markdown-to-static-site compilation with vuepress
Medium confidenceTransforms hierarchically-organized markdown content files into a fully-rendered static documentation site using VuePress 1.9.10 as the build engine. The system implements a three-tier architecture separating content (markdown in AI/ and Vibe Coding directories), configuration (modular TypeScript in .vuepress/), and build automation (GitHub Actions + JavaScript scripts). VuePress processes markdown through a Vue-powered SSG pipeline, generating HTML with client-side hydration for interactive components.
Implements a dual-content-stream architecture (Vibe Coding + AI Knowledge Base) with separate sidebar hierarchies via .vuepress/extraSideBar.ts and .vuepress/sidebar.ts, allowing two distinct learning paths to coexist in a single VuePress instance without content collision. Most documentation sites use a single hierarchy; this design enables parallel pedagogical tracks.
Faster deployment iteration than Docusaurus or Sphinx because VuePress uses Vue's reactive system for instant preview updates during authoring, and GitHub Actions automation eliminates manual build steps that plague traditional static site generators.
hierarchical content organization with dual learning paths
Medium confidenceOrganizes markdown content into two parallel directory hierarchies (Vibe Coding 零基础教程/ and AI/) that map to distinct user personas and learning objectives. The system uses TypeScript sidebar configuration (.vuepress/sidebar.ts) to generate navigation trees that expose different content sequences to different audiences. Each path has its own progression model: Vibe Coding uses 6-stage progression for beginners; AI path segments into DeepSeek documentation, application scenarios, project tutorials, and industry news.
Implements a 'content multiplexing' pattern where the same markdown files can appear in multiple sidebar contexts through configuration-driven path mapping, rather than duplicating files. The .vuepress/sidebar.ts configuration file acts as a routing layer that exposes different navigation trees to different entry points, enabling one-to-many content distribution.
More flexible than Docusaurus's single-hierarchy approach because it allows two completely independent navigation structures to coexist without forking the codebase, while simpler than building a custom CMS that would require database schema design and content versioning infrastructure.
ai tool usage guide aggregation
Medium confidenceAggregates tutorials and best practices for popular AI development tools (Cursor, Claude Code, TRAE, Lovable, Copilot) into a searchable reference organized by tool and use case. The system uses markdown files documenting tool features, integration patterns, and productivity tips, with cross-references to relevant AI concepts and project tutorials. Content includes screenshots, keyboard shortcuts, and workflow examples showing how to use each tool effectively. The architecture treats each tool as a first-class entity with dedicated documentation, enabling users to compare tools and find the best fit for their workflow.
Treats each AI development tool as a first-class entity with dedicated documentation sections rather than scattered tips in tutorials. This enables side-by-side comparison of how different tools (Cursor vs Copilot) solve the same problem, which is difficult in official documentation that focuses on a single tool.
More comprehensive than individual tool documentation because it aggregates patterns across multiple tools in one searchable site, and more practical than blog posts because it includes consistent structure, screenshots, and keyboard shortcuts for quick reference.
ai framework integration tutorial system
Medium confidenceProvides structured tutorials for integrating AI capabilities into applications using popular frameworks (Spring AI, LangChain) with code examples, architecture patterns, and best practices. The system uses markdown files with embedded code snippets showing how to implement common patterns (RAG, agents, tool calling) in each framework. Content is organized by framework and pattern, with cross-references to concept documentation and project tutorials. The architecture treats each framework as a distinct integration path, enabling users to choose the framework matching their tech stack.
Organizes AI framework tutorials by integration pattern (RAG, agents, tool calling) rather than by framework, enabling users to learn a pattern once and see how it's implemented across multiple frameworks. This cross-framework organization makes it easy to compare approaches and choose the best framework for a specific pattern.
More practical than official framework documentation because it includes cross-framework comparisons and patterns, and more discoverable than scattered blog posts because tutorials are organized by pattern and framework with consistent structure.
ai product monetization strategy guide
Medium confidenceProvides guidance on building and monetizing AI products, including business models, pricing strategies, go-to-market approaches, and case studies. The system uses markdown files documenting different monetization models (SaaS subscriptions, API usage-based pricing, freemium + premium tiers) with examples of successful AI products. Content includes financial projections, customer acquisition strategies, and common pitfalls to avoid. The architecture treats monetization as a distinct knowledge domain separate from technical tutorials, enabling non-technical founders to learn business strategy alongside developers learning technical implementation.
Treats monetization as a first-class knowledge domain with dedicated documentation, rather than scattered tips in product tutorials. This enables non-technical founders to learn business strategy without reading technical implementation details, and enables technical teams to understand the business context for their AI products.
More comprehensive than individual blog posts because it aggregates monetization strategies across multiple AI product types in one searchable site, and more practical than business textbooks because it includes real AI product examples and case studies rather than generic business theory.
embedded community engagement and monetization widget system
Medium confidenceInjects interactive widgets (QR codes, call-to-action buttons, partner service links) into the page sidebar and footer via .vuepress/extraSideBar.ts and .vuepress/footer.ts configuration modules. The system uses Vue component rendering to display engagement elements (WeChat QR codes, Discord links, course enrollment buttons) alongside content, creating conversion funnels that direct users from free content to paid courses, community channels, and external services. Widgets are configured as TypeScript arrays and rendered by custom theme components (Page.vue).
Implements a declarative widget configuration system where engagement elements are defined as TypeScript data structures in .vuepress/ rather than hardcoded in theme components, enabling non-developers to modify CTAs and links by editing configuration files without touching Vue code. This separates content strategy (what to promote) from implementation (how to render).
More maintainable than hardcoding widgets in theme components because configuration changes don't require rebuilding the theme, and more flexible than static footer links because widgets can include dynamic elements (QR codes, conditional rendering) without custom component development.
automated content generation and github actions ci/cd pipeline
Medium confidenceOrchestrates content updates and site deployment through GitHub Actions workflows that trigger on repository changes. The system includes JavaScript build scripts that process markdown, generate navigation metadata, and invoke VuePress compilation. GitHub Actions workflows automate the full pipeline: detect content changes, run build scripts, generate static assets, and deploy to production (https://ai.codefather.cn). The architecture separates content generation scripts (JavaScript in root) from deployment configuration (GitHub Actions YAML workflows).
Implements a 'push-to-deploy' model where contributors only need to commit markdown to GitHub; the entire build-test-deploy pipeline runs automatically without manual intervention. The system separates build logic (JavaScript scripts in root) from orchestration (GitHub Actions YAML), allowing build scripts to be tested locally before committing, reducing deployment surprises.
Simpler than self-hosted CI/CD (Jenkins, GitLab CI) because GitHub Actions is integrated into the repository platform with no infrastructure to maintain, and faster than manual deployment because it eliminates the human step of running local builds and uploading artifacts.
multi-model ai tool and framework tutorial aggregation
Medium confidenceCurates and organizes tutorials for multiple AI models (DeepSeek, GPT, Gemini, Claude) and frameworks (LangChain, Spring AI) into a searchable knowledge base. The system uses markdown content organized by tool/model in the AI/ directory, with cross-referenced links enabling users to compare approaches across models. Content includes usage examples, API integration patterns, and best practices for each tool. The architecture treats each AI tool as a first-class content entity with its own documentation section, rather than scattering tool-specific content throughout generic tutorials.
Treats each AI model/framework as a first-class content entity with dedicated documentation sections (AI/关于 DeepSeek/, AI/DeepSeek 资源汇总/) rather than scattering tool-specific content in generic tutorials. This enables side-by-side comparison of how different models implement the same capability, which is difficult in official documentation that focuses on a single model.
More comprehensive than individual model documentation because it aggregates patterns across multiple models in one searchable site, and more practical than academic papers because it includes real API integration examples and hands-on tutorials rather than theoretical comparisons.
zero-foundation programming curriculum with 6-stage progression
Medium confidenceImplements a structured programming course (Vibe Coding 零基础教程/) designed for absolute beginners with no prior coding experience. The curriculum is organized into 6 sequential stages that build foundational skills progressively, with each stage unlocking prerequisites for the next. Content is separated from the AI Knowledge Base in its own directory hierarchy, allowing beginners to follow a linear learning path without encountering advanced AI concepts. The progression model uses markdown files organized by stage, with clear prerequisites and learning objectives for each section.
Implements a 'separate-but-linked' architecture where the Vibe Coding curriculum is completely isolated in its own directory hierarchy (Vibe Coding 零基础教程/) rather than mixed with AI content, preventing information overload for beginners. The sidebar configuration treats this as a distinct learning path, allowing beginners to complete the course before encountering advanced AI concepts.
More beginner-friendly than mixing tutorials with reference documentation because it provides a clear linear path without overwhelming learners with advanced options, and more structured than free online tutorials because it enforces a 6-stage progression model that ensures prerequisites are met before advancing.
industry news and trend tracking archive
Medium confidenceMaintains a time-indexed archive of AI industry news and developments (AI/AI 行业资讯/) organized by month, enabling users to track the evolution of AI trends over time. The system uses markdown files with publication dates and topic tags to organize news items, with VuePress generating a searchable, chronologically-sortable archive. Content includes announcements of new models, framework releases, industry partnerships, and significant research developments. The architecture treats news as a distinct content type with its own directory, separate from tutorials and reference documentation.
Implements a 'time-indexed knowledge base' where news items are organized by publication month and searchable by date range, enabling users to understand the temporal context of AI developments. Most news sites use reverse-chronological feeds; this archive structure enables historical analysis and trend tracking across years.
More discoverable than Twitter/Reddit because news is organized by topic and date rather than algorithmic ranking, and more comprehensive than individual company blogs because it aggregates announcements from multiple AI providers (OpenAI, Anthropic, DeepSeek, Google) in one searchable archive.
prompt engineering and technique knowledge base
Medium confidenceAggregates prompt engineering techniques, prompt templates, and best practices (Prompt 提示词大全) into a searchable reference organized by use case and technique type. The system uses markdown files with tagged examples and explanations of prompt patterns (chain-of-thought, few-shot learning, role-playing, etc.), enabling users to find relevant prompts for their specific problem. Content is cross-referenced with AI model documentation, showing which prompts work best with which models. The architecture treats prompts as reusable knowledge artifacts with metadata enabling discovery and comparison.
Organizes prompts as reusable knowledge artifacts with metadata (use case, technique type, model compatibility) rather than scattered examples in tutorials. This enables users to search for 'prompts for code generation' or 'few-shot learning examples' and find relevant templates without reading full tutorials.
More discoverable than prompt collections in individual blog posts because it uses consistent metadata and tagging, and more practical than academic papers on prompting because it includes real, copy-paste-ready examples rather than theoretical frameworks.
ai knowledge encyclopedia with concept cross-referencing
Medium confidenceMaintains a structured encyclopedia of AI concepts (Agent Skills, RAG, MCP, A2A) organized by topic with cross-referenced links enabling users to understand relationships between concepts. The system uses markdown files with clear definitions, architectural diagrams, and links to related concepts, creating a knowledge graph where each concept page links to prerequisites and dependent concepts. Content is organized hierarchically (e.g., RAG → Vector Databases → Embeddings) with each level building on previous knowledge. The architecture treats concepts as first-class entities with dedicated pages rather than scattered throughout tutorials.
Implements a 'concept-first' architecture where AI concepts (Agent Skills, RAG, MCP) are documented as standalone encyclopedia entries with explicit cross-references to related concepts, rather than explained inline within tutorials. This enables users to jump directly to concept definitions without reading full tutorials, and makes concept relationships explicit through metadata.
More discoverable than concept explanations scattered in tutorials because each concept has a dedicated page with consistent structure, and more comprehensive than individual framework documentation because it covers concepts across multiple frameworks (LangChain, Spring AI, etc.) in one place.
hands-on ai project tutorial library
Medium confidenceCurates step-by-step tutorials for building complete AI projects (AI/AI 项目教程/) with working code examples, architecture diagrams, and deployment instructions. Each project tutorial includes setup instructions, implementation walkthrough, common pitfalls, and extension ideas. The system uses markdown files with embedded code blocks and links to GitHub repositories containing full project source code. Content is organized by project complexity (beginner, intermediate, advanced) and domain (chatbots, RAG systems, agents, etc.), enabling users to find projects matching their skill level and interests.
Implements a 'tutorial + repository' pattern where each project tutorial is paired with a complete GitHub repository containing working code, enabling users to learn by reading the tutorial and then exploring the full implementation. This separates the learning narrative (markdown tutorial) from the reference implementation (GitHub code), allowing both to evolve independently.
More practical than academic tutorials because it includes complete, runnable code rather than pseudocode, and more discoverable than scattered GitHub repositories because tutorials are organized by complexity and domain with clear learning paths.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with ai-guide, ranked by overlap. Discovered automatically through the match graph.
JavaGuide
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
AgentGuide
https://adongwanai.github.io/AgentGuide | AI Agent开发指南 | LangGraph实战 | 高级RAG | 转行大模型 | 大模型面试 | 算法工程师 | 面试题库 | 强化学习|数据合成
awesome-ai-tools
A curated list of Artificial Intelligence Top Tools
PocketFlow-Tutorial-Codebase-Knowledge
Pocket Flow: Codebase to Tutorial
Mintlify
AI documentation platform — markdown to beautiful docs, AI search, API playground, analytics.
RocketSimApp
RocketSim — 30+ tools for Xcode's iOS Simulator. Testing, debugging, network monitoring, captures, accessibility, app actions, and AI agent automation via the RocketSim CLI. Used by 80k+ developers.
Best For
- ✓technical educators creating multi-track learning platforms
- ✓open-source projects needing versioned documentation with community contributions
- ✓teams migrating from wiki-based knowledge to version-controlled markdown
- ✓educational platforms serving mixed skill levels (beginners + practitioners)
- ✓AI knowledge bases needing to segment content by use case (theory + applications + tools)
- ✓open-source projects with both tutorial and reference documentation
- ✓developers evaluating which AI coding assistant to adopt
- ✓teams standardizing on specific tools and needing training materials
Known Limitations
- ⚠VuePress 1.9.10 is legacy (v2 available) — limited plugin ecosystem and slower build times for 1000+ pages
- ⚠Static site generation means no real-time content updates without rebuild + redeploy
- ⚠Client-side search indexing limits scalability for 10,000+ documents without external search service
- ⚠Sidebar and navbar configuration requires manual TypeScript editing — no UI-based content management
- ⚠No dynamic audience detection — users must manually navigate to their learning path; no automatic routing based on skill level
- ⚠Content duplication across paths requires manual synchronization — changes to shared concepts must be updated in multiple locations
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 20, 2026
About
程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(DeepSeek / GPT / Gemini / Claude)、最新 AI 资讯、Prompt 提示词大全、AI 知识百科(Agent Skills / RAG / MCP / A2A)、AI 编程教程(Harness Engineering)、AI 工具用法(Cursor / Claude Code / TRAE / Lovable / Copilot)、AI 开发框架教程(Spring AI / LangChain)、AI 产品变现指南,帮你快速掌握 AI 技术,走在时代前沿。本项目为开源文档,已升级为鱼皮 AI 导航网站
Categories
Alternatives to ai-guide
Are you the builder of ai-guide?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →