Skip to content
Back to Tech
GenAI · 4 min read

AI Product and Tech Resources

A curated collection of the most important AI tools, frameworks, and resources for product and tech leaders — updated for the agentic era.

AI Product and Tech Resources

Collection of my most important AI resources for product and tech, updated for 2026.

AI Engineering Landscape

Agentic Development Tools

The tools that have fundamentally changed how I build software:

  1. Claude Code — Anthropic’s CLI-based agentic coding tool. My primary development tool. Uses Claude Opus 4 to autonomously read codebases, implement features across multiple files, run tests, fix errors, and commit code. The CLAUDE.md specification pattern makes it remarkably effective. Best with the Max subscription.
  2. Cursor — AI-native IDE built on VS Code. Agent mode handles multi-file edits autonomously. Excellent model selection (Claude, GPT-4o, Gemini). My go-to for visual code review and parallel workstreams alongside Claude Code.
  3. Windsurf — Codeium’s agentic IDE with “Cascade” — a multi-step agent that plans and executes across your codebase. Strong alternative to Cursor with good flow state UX.
  4. Cline — Open-source agentic coding extension for VS Code. Supports multiple model backends (Claude, GPT, local models via Ollama). Great option if you want agent capabilities with model flexibility.
  5. Aider — CLI-based agentic coding tool with excellent git integration. Supports pair programming with multiple models. Good for developers who prefer terminal workflows.
  6. Continue.dev — Open-source AI coding assistant with flexible model routing. Supports local models, cloud APIs, and custom backends. Good for teams wanting control over their AI tooling.

AI Model Providers and Routers

  1. OpenRouter — Unified API for accessing 200+ models from all major providers. Pay-per-token pricing, automatic fallbacks, and model comparison. Essential for testing different models against your use cases.
  2. Anthropic API — Direct API access to Claude models. Best-in-class for tool use, structured outputs, and agentic workflows. The MCP (Model Context Protocol) ecosystem is growing fast.
  3. OpenAI API — GPT-5, o1/o3 reasoning models, DALL-E, Whisper. Still the most widely integrated API.
  4. Google AI Studio / Vertex AI — Gemini 2.5 Pro/Flash. The 1M+ token context window is unmatched for large document processing.

Local LLM Tools

Running models on your own hardware — essential for privacy, speed, and cost:

  1. Ollama — The simplest way to run local models. ollama run qwen3-coder and you’re up. Great model library, easy API, works with most AI tools.
  2. MLX — Apple’s machine learning framework optimized for Apple Silicon. The mlx-community on Hugging Face provides pre-converted model weights. Best performance on Mac hardware.
  3. LM Studio — GUI application for running local models. User-friendly model discovery and management. Good for non-terminal users.
  4. llama.cpp — The foundational C/C++ inference engine that made local LLMs possible. GGUF format is the standard for quantized model distribution.

MCP (Model Context Protocol)

The emerging standard for connecting AI models to external tools and data:

  1. MCP Specification — Anthropic’s open protocol. Rapidly becoming the standard for tool integration.
  2. MCP Servers Registry — Growing collection of pre-built MCP servers for common integrations (GitHub, Slack, databases, file systems, APIs).

AI Infrastructure and Frameworks

  1. LangChain / LangGraph — Framework for building LLM applications. LangGraph is the more interesting piece now — it handles stateful, multi-step agent workflows.
  2. Vercel AI SDK — Excellent SDK for building AI-powered web applications. Streaming, tool use, and multi-provider support out of the box.
  3. Instructor — Library for structured output extraction from LLMs. Works with multiple providers. Essential for production AI features that need reliable data formats.
  4. Pydantic AI — Type-safe AI agent framework from the Pydantic team. Clean, Pythonic approach to building agentic systems.

Vector Databases for RAG

  1. Pinecone — Managed vector database. Easy to start, scales well.
  2. Weaviate — Open-source vector database with hybrid search.
  3. pgvector — PostgreSQL extension for vector similarity search. Often the right choice if you’re already on Postgres — no new infrastructure needed.

Essential Reading

Articles and Posts

Books

AI Engineering Landscape

For a comprehensive visual overview of the AI engineering ecosystem, the AI Engineering Landscape remains an excellent resource, though it’s worth noting the landscape shifts quarterly at this point.

ai resources tools claude-code cursor agentic-development local-llm