AIAny
AI API2024
Icon for item

Claude Quickstarts

Runnable starter projects for the Claude API you fork and adapt: a knowledge-base customer support agent, a financial analyst that charts results in chat, plus computer-use, browser-use, and autonomous-coding-agent reference implementations.

Introduction

Most API examples stop at a single curl call. This repo goes the other way: each folder is a deployable mini-app you clone, point at your own data, and ship — the gap between "hello world" and "running in production" is exactly what these quickstarts try to close.

What Sets It Apart
  • Each quickstart targets a concrete shape of work, not a feature in isolation: customer support with knowledge-base grounding, a financial analyst that returns charts inside the chat, and computer-use / browser-use agents that drive a desktop or a Playwright browser.
  • The computer-use track ships both a containerized demo and a separate best-practices implementation covering prompt caching, server-side compaction, batched tool calls, and trajectory recording — the unglamorous parts that decide whether an agent is affordable to run.
  • The autonomous coding agent uses a two-agent pattern (initializer plus coder) with git-based persistence, so it can build an app across multiple sessions instead of one heroic prompt.
Great Fit If

You learn faster by editing working code than reading API docs, and you want a defensible starting point for a support bot, data-analysis chat, or tool-using agent. Look elsewhere if you need a finished product rather than scaffolding — these are intentionally minimal so you replace the example data and prompts with your own. The mix of Python and TypeScript also means you should expect to pick the stack that matches the example you want, not the other way around.

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).