← ClaudeAtlas

ai-native-developmentlisted

Build AI-first applications with RAG pipelines, embeddings, vector databases, agentic workflows (ReAct, multi-agent, Opus 4.5), LLM integration, prompt engineering, streaming, and cost optimization. Use when: building an AI feature, integrating an LLM, setting up vector search, or designing agent architectures. Triggers on: AI app, LLM integration, RAG, vector database, agentic, prompt engineering, AI-native, semantic search, multi-agent, embeddings pipeline, cost optimization
ArieGoldkin/claude-forge · ★ 6 · AI & Automation · score 77
Install: claude install-skill ArieGoldkin/claude-forge
# AI-Native Development ## Core Concepts ### Embeddings & Vector Search See `${CLAUDE_SKILL_DIR}/references/vector-databases.md` for embeddings setup, cosine similarity, chunking strategies, and vector database guides (Pinecone, Chroma, Weaviate, Qdrant). ### RAG (Retrieval-Augmented Generation) See `${CLAUDE_SKILL_DIR}/references/rag-patterns.md` for basic and advanced RAG patterns, citation strategies, hybrid search with Reciprocal Rank Fusion, conversation memory patterns, and error handling. ### Function Calling & Tool Use See `${CLAUDE_SKILL_DIR}/references/function-calling.md` for tool definition patterns (OpenAI and Anthropic), function calling loops, parallel and streaming tool execution, input validation with Zod, and error handling. ### Agentic Workflows Enable LLMs to reason, plan, and take autonomous actions. **Patterns:** - **ReAct**: Reasoning + Acting loop with observations - **Tree of Thoughts**: Explore multiple reasoning paths - **Multi-Agent**: Specialized agents collaborating on complex tasks - **Autonomous Agents**: Self-directed goal achievement - **ML Experiment Loops**: Autonomous iteration on ML metrics using /experiment for hyperparameter tuning, evaluation improvement, and model selection. See `${CLAUDE_SKILL_DIR}/references/ml-experiment-loops.md` for patterns and worked examples. **Detailed Implementation:** See `${CLAUDE_SKILL_DIR}/references/agentic-workflows.md` for: - Complete ReAct loop implementation - Tree of Thoughts exploration