🌐
GitHub
github.com › anthropics
Anthropic · GitHub
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflo

American artificial intelligence corporation

Anthropic PBC is an American artificial intelligence (AI) company founded in 2021. It has developed a family of large language models (LLMs) named Claude. The company researches and develops AI to "study … Wikipedia
Factsheet
Company type Private
Founded 2021; 4 years ago (2021)
Factsheet
Company type Private
Founded 2021; 4 years ago (2021)
🌐
GitHub
github.com › anthropics › claude-code-action
GitHub - anthropics/claude-code-action
A general-purpose Claude Code action for GitHub PRs and issues that can answer questions and implement code changes. This action intelligently detects when to activate based on your workflow context—whether responding to @claude mentions, ...
Starred by 4.4K users
Forked by 1.3K users
Languages   TypeScript 93.6% | JavaScript 5.8% | Shell 0.6%
🌐
GitHub
github.com › anthropics › claude-code
GitHub - anthropics/claude-code: Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
brew install --cask claude-code ... your project directory and run claude. This repository includes several Claude Code plugins that extend functionality with custom commands and agents....
Starred by 48.5K users
Forked by 3.4K users
Languages   Shell 46.4% | Python 33.8% | TypeScript 12.9% | PowerShell 4.7% | Dockerfile 2.2%
🌐
Claude
docs.claude.com › en › docs › claude-code › github-actions
Claude Code GitHub Actions - Claude Docs
- uses: anthropics/claude-code-action@v1 with: prompt: "Review this PR for security issues" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} claude_args: | --system-prompt "Follow our coding standards" --max-turns 10 --model claude-sonnet-4-5-20250929 · The action now automatically detects whether to run in interactive mode (responds to @claude mentions) or automation mode (runs immediately with a prompt) based on your configuration. Claude Code GitHub Actions can help you with a variety of tasks.
🌐
GitHub
github.com › anthropics › anthropic-sdk-python
GitHub - anthropics/anthropic-sdk-python
On every iteration, an API request will be made, if Claude wants to call one of the given tools then it will be automatically called, and the result will be returned directly to the model in the next iteration. For more information see the full docs. This library provides several conveniences for streaming messages, for example: import asyncio from anthropic import AsyncAnthropic client = AsyncAnthropic() async def main() -> None: async with client.messages.stream( max_tokens=1024, messages=[ { "role": "user", "content": "Say hello there!", } ], model="claude-sonnet-4-5-20250929", ) as stream: async for text in stream.text_stream: print(text, end="", flush=True) print() message = await stream.get_final_message() print(message.to_json()) asyncio.run(main())
Starred by 2.5K users
Forked by 411 users
Languages   Python
🌐
GitHub
github.com › anthropics › claude-code-base-action
GitHub - anthropics/claude-code-base-action: This repo is a mirror of the contents of base-action in https://github.com/anthropics/claude-code-action.
Focus on security, performance, and maintainability." allowed_tools: "Bash(git:*),View,GlobTool,GrepTool,BatchTool" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} # Or appending to the default system prompt - name: Run Claude Code with appended system prompt uses: anthropics/claude-code-base-action@beta with: prompt: "Create a database schema" append_system_prompt: "After writing code, be sure to code review yourself." allowed_tools: "Bash(git:*),View,GlobTool,GrepTool,BatchTool" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} # Using custom environment variables - name: Run Claude Co
Starred by 539 users
Forked by 597 users
Languages   TypeScript 97.8% | Shell 2.2%
🌐
GitHub
github.com › alvinunreal › awesome-claude
GitHub - alvinunreal/awesome-claude: A curated list of awesome things related to Anthropic Claude
Building with the Claude API — Full spectrum of working with Anthropic models using the Claude API. Claude Code in Action — Integrate Claude Code into your development workflow.
Starred by 597 users
Forked by 43 users
Languages   TypeScript 86.0% | Python 9.1% | JavaScript 4.9%
🌐
GitHub
github.com › anthropics › claude-quickstarts
GitHub - anthropics/claude-quickstarts: A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API
A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API - anthropics/claude-quickstarts
Starred by 12.8K users
Forked by 2.2K users
Languages   Python 56.1% | TypeScript 26.2% | Jupyter Notebook 7.2% | JavaScript 6.3% | Shell 1.5% | HTML 1.1%
Find elsewhere
🌐
GitHub
github.com › topics › anthropic-claude
anthropic-claude · GitHub Topics · GitHub
api rust ai claude llm chain-of-thought anthropic anthropic-claude deepseek deepseek-r1 ... Use Claude Code or Cursor CLI on mobile and web with Claude Code UI.
🌐
GitHub
github.com › anthropics › claude-agent-sdk-demos
GitHub - anthropics/claude-agent-sdk-demos: Claude Code SDK Demos
An Anthropic API key (get one here) Clone the repository · git clone https://github.com/anthropics/claude-code-sdk-demos.git cd claude-code-sdk-demos · Choose a demo and navigate to its directory · cd email-agent # or excel-demo, or hello-world · Follow the demo-specific README for setup and usage instructions ·
Starred by 844 users
Forked by 138 users
Languages   TypeScript 88.3% | Python 9.5% | JavaScript 1.1%
🌐
GitHub
github.com › anthropics › claude-code-security-review
GitHub - anthropics/claude-code-security-review: An AI-powered security review GitHub Action using Claude to analyze code changes for security vulnerabilities.
claudecode/ ├── github_action_audit.py # Main audit script for GitHub Actions ├── prompts.py # Security audit prompt templates ├── findings_filter.py # False positive filtering logic ├── claude_api_client.py # Claude API client for false positive filtering ├── json_parser.py # Robust JSON parsing utilities ├── requirements.txt # Python dependencies ├── test_*.py # Test suites └── evals/ # Eval tooling to test CC on arbitrary PRs · PR Analysis: When a pull request is opened, Claude analyzes the diff to understand what changed · Contextual Review: Claude examines the code changes in context, understanding the purpose and potential security implications
Starred by 2.8K users
Forked by 203 users
Languages   Python 89.6% | TypeScript 7.2% | JavaScript 3.2%
🌐
Anthropic
anthropic.com › claude-code
Claude Code - AI coding agent for terminal & IDE | Claude
Claude Code can also use command line tools (like Git) and MCP servers (like GitHub) to extend its own capabilities using your tools. Yes. Claude Code runs locally in your terminal and talks directly to model APIs without requiring a backend server or remote code index...
🌐
GitHub
github.com › codingworkflow › claude-code-api
GitHub - codingworkflow/claude-code-api
Claude Code CLI installed and accessible · Valid Anthropic API key configured in Claude Code (ensure it works in current directory src/) # Clone and setup git clone https://github.com/codingworkflow/claude-code-api cd claude-code-api # Install dependencies make install # Run tests to verify setup make test # Start the API server make start-dev ·
Starred by 217 users
Forked by 30 users
Languages   Python 98.3% | Makefile 1.4% | Shell 0.3%
🌐
GitHub
github.com › topics › claude-code
claude-code · GitHub Topics · GitHub
Use Claude Code or Cursor CLI on mobile and web with Claude Code UI. Claude Code UI free open source webui/GUI that helps you manage your Claude Code session and projects remotely · react gui ui mobile-first claude anthropic anthropic-claude claude-api anthropic-ai claude-code claudecode ...
🌐
Anthropic
anthropic.com › news › claude-4
Anthropic
Beyond the IDE, we're releasing an extensible Claude Code SDK, so you can build your own agents and applications using the same core agent as Claude Code. We're also releasing an example of what's possible with the SDK: Claude Code on GitHub, now in beta. Tag Claude Code on PRs to respond to reviewer feedback, fix CI errors, or modify code.
🌐
Reddit
reddit.com › r/anthropic › claude code’s github integration is now generally available.
r/Anthropic on Reddit: Claude Code’s GitHub integration is now generally available.
July 2, 2025 -

We've simplified the API, added ready-to-deploy templates, and expanded support for triggering actions on more GitHub events.

What's new:

  • Trigger automation on new issues, failed CI, or custom conditions

  • Customizable templates for common workflows like code reviews

  • Subagent support in actions

With these updates, you can use Claude Code to better automate:

  • Issue triage and de-duping

  • CI failure fixes

  • Code reviews based on team preferences

  • Vulnerability detection on new PRs

To get started with Claude Code in GitHub or upgrade to the GA version (note: breaking changes for beta users), see our docs:

https://docs.anthropic.com/en/docs/claude-code/github-actions

🌐
Anthropic
anthropic.com › learn › build-with-claude
Anthropic Academy: Claude API Development Guide
Use MCP with Claude Code · Set up remote MCP servers · Connect remote MCP servers from the Messages API · Contribute to MCP on GitHub · Reference the MCP documentation · Learn about upcoming MCP features · Read the MCP launch post · Take an in-depth course on getting started with MCP ·
🌐
GitHub
github.com › anthropics › claude-code › issues › 441
How can I use my API key without signing in? · Issue #441 · anthropics/claude-code
March 11, 2025 - Or how can I use a separate user id/password to API key? I have an API key and I have a user account but Claude Code seems to require them to be connected in some way. I want to configure them inde...
Published   Mar 11, 2025
🌐
GitHub
github.com › topics › claude-api
claude-api · GitHub Topics · GitHub
droid crs claude claude-api gemini-cli claude-code codex-cli claude-proxy droid-cli droid2api ... Use Claude Code or Cursor CLI on mobile and web with Claude Code UI. Claude Code UI free open source webui/GUI that helps you manage your Claude Code session and projects remotely · react gui ui mobile-first claude anthropic ...