clade-local-dev-loop

Featured

Set up a fast local development loop for building with the Anthropic API — Use when working with local-dev-loop patterns. hot reload, cost-saving tips, and test patterns. Trigger with "anthropic dev setup", "claude local development", "anthropic test locally", "claude dev workflow".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Anthropic Local Dev Loop ## Overview Set up a fast, cheap development workflow for building with Claude. ## Prerequisites - Node.js 18+ or Python 3.10+ - `ANTHROPIC_API_KEY` environment variable set - npm or pip package manager ## Instructions ### Step 1: Project Setup ```bash mkdir my-claude-app && cd my-claude-app npm init -y npm install @claude-ai/sdk dotenv tsx # Create .env (never commit this) echo 'ANTHROPIC_API_KEY=sk-ant-api03-...' > .env echo '.env' >> .gitignore ``` ### Step 2: Create a Test Script ```typescript // src/test-prompt.ts import 'dotenv/config'; import Anthropic from '@claude-ai/sdk'; const client = new Anthropic(); async function main() { const message = await client.messages.create({ model: 'claude-haiku-4-5-20251001', // Use Haiku for dev — 20x cheaper than Opus max_tokens: 512, messages: [{ role: 'user', content: 'Summarize this in one sentence: ...' }], }); console.log(message.content[0].text); console.log(`Cost: ~$${((message.usage.input_tokens * 0.80 + message.usage.output_tokens * 4) / 1_000_000).toFixed(4)}`); } main(); ``` ### Step 3: Run with Hot Reload ```bash # Watch mode — re-runs on file changes npx tsx watch src/test-prompt.ts # Or one-shot npx tsx src/test-prompt.ts ``` ## Cost-Saving Dev Tips | Tip | Savings | |-----|---------| | Use `claude-haiku-4-5-20251001` during development | 20x cheaper than Opus | | Set `max_tokens: 256` for testing | Fewer output tokens billed | | Cache your system prompt with...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

anth-local-dev-loop

Configure a local development workflow for Anthropic Claude API projects. Use when setting up dev environment, configuring hot reload, or establishing a fast iteration cycle with the Messages API. Trigger with phrases like "anthropic local dev", "claude dev setup", "anthropic development workflow", "test claude locally".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-local-dev-loop

Configure Klaviyo local development with hot reload, mocking, and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with the Klaviyo API. Trigger with phrases like "klaviyo dev setup", "klaviyo local development", "klaviyo dev environment", "develop with klaviyo", "klaviyo testing".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-local-dev-loop

Configure Apollo.io local development workflow. Use when setting up development environment, testing API calls locally, or establishing team development practices. Trigger with phrases like "apollo local dev", "apollo development setup", "apollo dev environment", "apollo testing locally".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-local-dev-loop

Configure AssemblyAI local development with hot reload and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with AssemblyAI. Trigger with phrases like "assemblyai dev setup", "assemblyai local development", "assemblyai dev environment", "develop with assemblyai".

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-local-dev-loop

Configure Cohere local development with mocking, testing, and hot reload. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Cohere API v2. Trigger with phrases like "cohere dev setup", "cohere local development", "cohere dev environment", "develop with cohere", "mock cohere".

2,266 Updated today
jeremylongshore