Claude Code is quietly becoming much more than a coding assistant. It is starting to look like an agentic development environment. The latest updates make that shift obvious: Artifacts → turn sessions into shareable PR walkthroughs and live project dashboards. In-app browser → research, test, and validate UI flows without leaving Claude Code. /doctor → diagnose setup issues and remove environment blockers faster. Agent View → see what Claude is planning, doing, and waiting on. Background Agents → keep work running while you focus elsewhere. The important part is not each feature individually. It is what they create together: ✅ Less context switching. ✅ More parallel work. ✅ Better visibility. ✅ Faster validation. ✅ More persistent agent workflows. That changes the developer’s role. From: write → test → debug → switch tools → repeat To: define intent → delegate → observe → validate → ship The next generation of developer tools will not just help us write code faster. They will help us orchestrate the entire engineering loop. Claude Code is moving in that direction fast. #ClaudeCode #ClaudeAI #AgenticAI #AICoding #SoftwareEngineering #DeveloperTools #AIEngineering
Claude Code
Technology, Information and Internet
Let’s build better with Claude Code. Thoughtfully, efficiently, and responsibly.
About us
Claude Code Community is a builder-focused community for developers, founders, product teams, and AI practitioners who are exploring how to use Claude Code for real software development workflows. This community is created to bring together people who are actively learning, experimenting, and building with Claude Code — from writing cleaner code and debugging faster to improving architecture, documentation, testing, automation, and developer productivity. Our goal is to move beyond hype and share practical, real-world learnings: How to use Claude Code effectively How to reduce token waste and unnecessary cost How to structure prompts, plans, and reviews How to build better development workflows with AI coding agents How to avoid hallucinations, rework, and poor implementation patterns How teams can use Claude Code in production-grade environments This is a space for honest discussions, hands-on examples, workflow breakdowns, best practices, mistakes, experiments, and lessons learned from real builders. Whether you are a developer, engineering leader, startup founder, product manager, AI enthusiast, or enterprise technologist, this community is for you. Let’s build better with Claude Code, thoughtfully, efficiently, and responsibly.
- Industry
- Technology, Information and Internet
- Company size
- 51-200 employees
- Type
- Privately Held
Employees at Claude Code
Updates
-
Claude Code reposted this
Fresh off the launch of Opus 5, Anthropic Claude Code creator Boris Cherny joins YC's Diana Hu at Startup School 2026 to talk about what the newest models can do, how Claude Code came to be, and what it means to build products when the underlying capabilities keep accelerating. https://lnkd.in/gcU9zWyX
-
Claude Code reposted this
Enterprise AI Agent #7: Responsible AI should not live in a PowerPoint. It should live in the same GitHub repo as the agent. This is one lesson I keep coming back to while building Agentic AI systems. Most teams discuss guardrails as principles. Privacy. Fairness. Security. Human oversight. Auditability. All important. All unenforceable. Because when an agent can read data, call tools, update records, trigger workflows, or talk to customers, a principle in a deck does not control runtime behaviour. And a rule in a system prompt is text the model can be argued out of. If an attacker can talk the model into ignoring it, it was never a guardrail. A guardrail is a deterministic function that returns allow, deny, or escalate - in a code path the model has no access to. That is why I am building SHUGO. An open-source, guardrails-first framework for AI agents. The name comes from 守護 (shugo) - to guard, to protect. The idea is simple. Treat guardrails as code. Not scattered prompts. Not policies disconnected from execution. Not controls bolted on after the pilot. SHUGO is MCP-native. It presents itself to your agent as a standard MCP server and sits between the agent and the tools it calls. Every tool call is checked against a readable policy file before it reaches anything real. No protocol changes. No agent code changes. Works with anything that speaks MCP. The framework is organized around five layers. 1️⃣ Identity & Access Who is the agent? Which user is it acting for? What can it reach? 2️⃣ Data & Context What context can enter the agent? How are sensitive data and retrieval boundaries controlled? 3️⃣ Action & Autonomy What can it read, write, or execute? What needs approval, a spend limit, or a stop condition? 4️⃣ Safety & Resilience How do we detect unsafe behaviour, fail closed, and roll back? 5️⃣ Governance & Assurance How do we trace decisions, evidence them, and respond to incidents? From my experience, the most important shift is this. A guardrail should not merely tell an agent what it should do. The system should enforce what the agent is allowed to do. Deterministic permissions before execution. Runtime controls during execution. Evidence after execution. That last one is where most tooling stops short. Enforcement without evidence is unauditable. So every rule in SHUGO carries the control it implements, and one command turns the audit log into a control-by-control evidence bundle. The goal is not another heavy governance platform. It is a small, readable, modular reference framework that teams can understand, extend, and adapt. Because capability makes an agent useful. Guardrails make it deployable. Building this in public. Repo, architecture, and implementation journey to follow. What should the first release prioritise - policy-as-code, approval gates, tool permissions, or audit evidence? #EnterpriseAI #AgenticAI #ResponsibleAI #AIGovernance #OpenSource #MCP
-
-
Not every coding task needs the biggest Claude model. The advantage comes from choosing the right model for the work. Fable • Best for long-running builds, large migrations, interconnected tasks, and turning a rough idea into a working system. Opus • Best for complex architecture, difficult debugging, deep technical analysis, and critical code or methodology reviews. Sonnet • Best for everyday development: writing features, refactoring, testing, analysis, and multi-step coding workflows. Haiku • Best for quick repository lookups, simple edits, short summaries, and extracting specific details from code or documentation. A practical rule: • Start with Sonnet for most Claude Code tasks. • Move to Opus when the reasoning gets harder. • Use Fable when the work becomes longer, broader, and highly interconnected. • Use Haiku when speed matters more than depth. The best model is not always the most powerful one. It is the one that matches the engineering task.
-
Voice conversations with Claude now use more of the models you have in chat. Talk through real strategy questions and judgment calls out loud, and switch models right in the conversation as the problem gets harder. When you're ready to act, Claude reaches the tools you've connected. Ask it to catch you up on the morning's email, or push your next meeting back by 30 minutes. Voice mode also supports more languages, on all plans, so you can talk in the language you think in. The update is rolling out today on mobile, desktop, and web. Voice mode is still in beta and works best from your phone. Download the Claude app and tap the sound wave symbol to start a conversation: claude.com/download
-
-
The Claude Code use case every CTO should study is not another greenfield app. It is the codebase nobody wants to touch. Legacy migrations were traditionally: ❎ Multi-year programs. ❎ Millions in engineering cost. ❎ Two codebases running in parallel. ❎ A high probability of reaching only 90% parity. Claude Code is beginning to change that equation. Recently shared: • 10 code packages migrated by individual developers in one month • Bun moved from Zig to Rust, producing nearly 1 million lines in under two weeks • 100% of the existing test suite passed before merge • A separate Python project became 165,000 lines of TypeScript over a weekend • Hundreds of agents, eight phase gates and three adversarial review rounds were used But the biggest insight is not the amount of code generated. It is the operating model behind it. The old codebase becomes the specification. The rulebook defines how agents should translate it. The dependency map creates parallel workstreams. The compiler and tests become objective judges. Every failure becomes the next item in the queue. Review agents challenge the fixes. And when failures repeat, engineers do not keep patching files. They improve the rule that produced the files. That is the breakthrough: You do not fix code one file at a time. You design a loop that can repeatedly produce correct code. This is not “vibe coding at scale.” It is controlled, measurable and adversarial agentic engineering. It is also not free. Anthropic estimates the Bun migration consumed around $165,000 at API pricing. But compared with a four-year modernization program costing several million dollars, the migration math has fundamentally changed. The next major Claude Code opportunity may not be creating more software. It may be modernizing the software the world already depends on. Legacy code is no longer only technical debt. It is becoming an executable specification for AI agents. #ClaudeCode #LegacyModernization #AgenticAI #SoftwareEngineering #AICoding #EnterpriseAI #CodeMigration #DigitalTransformation
-
-
Claude Code reposted this
💿 Imagine if Claude Code existed in 2010... Instead of installing it with a simple command or or using directly in browser within seconds... You'd probably receive: 📀 A CD/DVD 📖 A 100-page installation guide 💾 "Insert Disc 2 to continue..." ⏳ Estimated installation time: 45 minutes. 😂 And if anything went wrong... "Please uninstall and reinstall the entire application." It's funny to think about how much software has evolved. Today, AI can help us write code, debug applications, explain concepts, and even build entire projects within minutes. A decade ago, getting your development environment ready could take longer than writing your first program. If software has evolved this much in the last 10–15 years, it's exciting to imagine what AI development tools will look like in the next 10–15 years. #AI #ClaudeCode #ArtificialIntelligence #Programming #SoftwareEngineering #Developers #Technology #Innovation #Coding #Tech #Anthropic #TechHumor #Nostalgic
-
-
Claude Code reposted this
Stop letting Claude Code read files that have nothing to do with your task! Every time you ask Claude Code to review a change, it scans your entire codebase. Most of those files are irrelevant. You are paying for tokens that add no value. code-review-graph fixes this by building a persistent knowledge graph of your codebase using Tree-sitter. It maps every function, class, import, and dependency, then at review time computes the exact set of files Claude actually needs to read. Here's how it works: • Parses your codebase into an AST and stores it as a graph of nodes and edges in SQLite • On every file save or git commit, a hook fires and re-parses only what changed • At review time it traces the blast radius of your change: every caller, dependent, and test that could be affected • Claude reads only those files instead of scanning the whole project Real results across 6 open-source repositories: 6.8x fewer tokens on code reviews, up to 49x on daily coding tasks. Supports 23 languages including Python, TypeScript, Rust, Go, Java, Vue, Solidity, and Jupyter notebooks. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible agent. It's 100% open source. Link to the GitHub repo in the comments!
-
-
Claude Code reposted this
AI Coding Agent Lab #7: The future of AI coding is not an assistant waiting for prompts. It is an engineering system that can take an issue and return a tested, reviewed, human-approved pull request. This is what I am seeing while working with Claude Code and agentic coding workflows. Today, most issues are written for humans: "Fix this bug. desc" "Add this feature. desc" "Upgrade this dependency. desc" A developer reads the ticket, understands the repo, writes code, runs tests, reviews risk, prepares the PR, and responds to feedback. The ticket documents the work. It does not execute it. But with coding agents, that is changing. A well-structured issue can become an executable contract for agentic software delivery. The difference is not the model. It is how clearly we define the work. From my experience, coding agents rarely fail because they cannot generate code. They fail because the issue does not define: ✔️ the problem and outcome ✔️ in-scope and out-of-scope work ✔️ acceptance criteria ✔️ architecture context ✔️ risk boundaries ✔️ test expectations ✔️ required artifacts ✔️ approval rules Once this is structured, the workflow changes: Issue created -> Planner Agent decomposes the work -> Implementation Agent builds the change -> Test Agent validates behaviour -> Security Agent checks risk -> Reviewer Agent inspects maintainability -> Docs Agent prepares release notes -> Human reviews the PR -> Feedback improves the next run This is where the backlog becomes executable. I would not use this pattern for every task. It is best for bounded, repeatable work: ✅ bug fixes ✅ dependency upgrades ✅ test coverage gaps ✅ security remediation ✅ low-risk refactoring ✅ documentation updates ✅ CI failure resolution ✅ repetitive migrations For ambiguous architecture, payment logic, infrastructure changes, or regulated workflows, agents should prepare the work, but humans should retain the final decision. My practical rule: Do not give an agent a vague ticket and expect production-ready code. Give it a machine-readable work package with clear boundaries, validation rules, and review gates. Then measure more than lines of code: issue-to-PR cycle time first-pass test success human rework PR acceptance rate escaped defects cost per merged PR My simple view: Before: the backlog was a list of tasks waiting for engineers. Now: it can become a governed execution layer for humans and agents. The future of AI coding is not one agent replacing one developer. It is a software factory where agents plan, implement, test, review, and document while humans retain control of architecture, risk, and final approval. Stop treating the backlog as documentation. Start designing it as an execution system. Curious - which backlog item would you trust a coding agent with first: bug fixes, tests, upgrades, security remediation, or documentation? #AICoding #AgenticAI #ClaudeCode #SoftwareEngineering
-
-
Claude Code reposted this
I've been using Claude for 6 months seriously. Most people still treat it like a chatbot. I did too. Until I found these. Here's the actual Claude playbook I wish I had on day 1: 𝗜𝗳 𝘆𝗼𝘂'𝗿𝗲 𝗷𝘂𝘀𝘁 𝘀𝘁𝗮𝗿𝘁𝗶𝗻𝗴 → 🔗 Claude Opus 4.6 explained simply: https://lnkd.in/eTmftGgr 🔗 Sonnet 4.6 breakdown: https://lnkd.in/ef6hWdRz 𝗜𝗳 𝘆𝗼𝘂 𝘄𝗮𝗻𝘁 𝗿𝗲𝗮𝗹 𝘄𝗼𝗿𝗸𝗳𝗹𝗼𝘄𝘀 → 🔗 10 workflows that actually produce output: https://lnkd.in/dipzF2MP 🔗 How top builders actually collaborate with Claude: https://lnkd.in/ei7n7s32 𝗜𝗳 𝘆𝗼𝘂'𝗿𝗲 𝗮 𝗯𝘂𝗶𝗹𝗱𝗲𝗿 → 🔗 The Cowork setup serious builders use: https://lnkd.in/d6iF42qq 🔗 Claude Code reviewer that catches what humans miss: https://lnkd.in/gsETs5SN 𝗜𝗳 𝘆𝗼𝘂 𝘄𝗮𝗻𝘁 𝗖𝗹𝗮𝘂𝗱𝗲 𝗮𝘁 𝘄𝗼𝗿𝗸 → 🔗 Turn Claude into your Chief of Staff: https://lnkd.in/gGqM3V6Q 🔗 Audit any financial model in Excel (30 prompts): https://lnkd.in/eXGBd2Sz 🔗 Do SEO like a $10K/month agency: https://lnkd.in/eT3qsxgD 🔗 Research stocks like a hedge fund analyst: https://lnkd.in/gWRV3qui 𝗜𝗳 𝘆𝗼𝘂 𝘄𝗮𝗻𝘁 𝗳𝗮𝘀𝘁𝗲𝗿 𝗼𝘂𝘁𝗽𝘂𝘁𝘀 → 🔗 Make slides 10x faster with Claude: https://lnkd.in/ekKaqTFP 🔗 The tool that triggered a $285B selloff: https://lnkd.in/dWvrqqCc Save this. 🔖 Come back when you're ready to stop using Claude like Google Search. Which one are you opening first? If you are absolute new to AI, start with python first from w3schools.com 💚
-