<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>devkuma – Claude Code</title>
    <link>https://www.devkuma.com/en/tags/claude-code/</link>
    <image>
      <url>https://www.devkuma.com/en/tags/claude-code/logo/180x180.jpg</url>
      <title>Claude Code</title>
      <link>https://www.devkuma.com/en/tags/claude-code/</link>
    </image>
    <description>Recent content in Claude Code on devkuma</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <managingEditor>kc@example.com (kc kim)</managingEditor>
    <webMaster>kc@example.com (kc kim)</webMaster>
    <copyright>The devkuma</copyright>
    
	  <atom:link href="https://www.devkuma.com/en/tags/claude-code/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>What Is Claude Code?</title>
      <link>https://www.devkuma.com/en/docs/ai/claude/claude-code/</link>
      <pubDate>Sun, 24 May 2026 16:13:33 +0900</pubDate>
      <author>kc@example.com (kc kim)</author>
      <guid>https://www.devkuma.com/en/docs/ai/claude/claude-code/</guid>
      <description>
        
        
        &lt;h2 id=&#34;overview&#34;&gt;Overview&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;Claude Code&lt;/code&gt; is an agent-style coding tool that lets developers use Anthropic&amp;rsquo;s Claude for software development work. It can be used in a terminal, IDE, desktop app, or web environment, and it works by reading a codebase, editing files, running commands, and integrating with development tools.&lt;/p&gt;
&lt;p&gt;Ordinary code generation tools focus on suggesting snippets, but Claude Code focuses on carrying out real workflows inside a project. You can delegate development work such as feature implementation, bug fixes, test writing, lint fixes, Git diff summaries, and commit message drafting through natural language requests.&lt;/p&gt;
&lt;p&gt;Claude Code does not replace developer judgment. If requirements are ambiguous, tests are weak, or project rules are unclear, it can modify code in the wrong direction. In practice, it is better to use it in the order of reading, planning, editing, verification, and diff review.&lt;/p&gt;
&lt;h2 id=&#34;key-features&#34;&gt;Key Features&lt;/h2&gt;
&lt;h3 id=&#34;it-reads-and-works-with-the-codebase&#34;&gt;It Reads and Works with the Codebase&lt;/h3&gt;
&lt;p&gt;Claude Code answers after reading the current project&amp;rsquo;s files and understanding its structure. Instead of looking at a single function or snippet, it can inspect relationships across files, configuration, tests, and documentation.&lt;/p&gt;
&lt;p&gt;This is useful when entering an unfamiliar project. For a repository you are opening for the first time, it is safer to ask for an analysis before asking for edits.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Analyze this project as if you were a developer seeing it for the first time.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Do not modify files yet.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Tell me:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;1. Project purpose
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;2. Tech stack
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;3. Local run method
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;4. Test method
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;5. Core directories and files
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;6. Five files to read first
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;it-can-edit-files-and-run-commands&#34;&gt;It Can Edit Files and Run Commands&lt;/h3&gt;
&lt;p&gt;Claude Code can directly modify files and, when needed, run tests or build commands to check the result. This makes it closer to a development agent than a simple answer tool.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Fix the issue where the error message is empty when login fails.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;First find the related files, explain the cause, propose a fix plan, and then make the change.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;After the change, run related tests and report the result.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For this kind of request, ask Claude Code to explain the cause and plan before editing. As the work area grows, intermediate confirmation points help reduce unnecessary large changes.&lt;/p&gt;
&lt;h3 id=&#34;it-connects-with-development-tools&#34;&gt;It Connects with Development Tools&lt;/h3&gt;
&lt;p&gt;Claude Code can be used with Git, test commands, lint commands, CI/CD, IDEs, and MCP. By connecting MCP (Model Context Protocol), information outside the project, such as issue trackers, documentation repositories, internal APIs, and data sources, can be included in the workflow.&lt;/p&gt;
&lt;p&gt;Typical practical uses include security reviews of changed files, analysis of failing test logs, release note drafting, integration with Jira or GitHub Issues, and reusable team workflows through Skills or Hooks.&lt;/p&gt;
&lt;h2 id=&#34;installation-and-starting&#34;&gt;Installation and Starting&lt;/h2&gt;
&lt;p&gt;To use Claude Code, you need access through a Claude subscription, an Anthropic Console account, or a supported external provider. Installation can vary by operating system and distribution channel, so check the official documentation before installing.&lt;/p&gt;
&lt;p&gt;On macOS, Linux, and WSL, the official install script can be used.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;curl -fsSL https://claude.ai/install.sh &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;|&lt;/span&gt; bash
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;On macOS with Homebrew, it can also be installed as a cask.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;brew install --cask claude-code
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;After installation, start a session by running &lt;code&gt;claude&lt;/code&gt; in the project directory.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;cd&lt;/span&gt; your-project
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;claude
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The first run requires login or authentication. In a team environment, confirm billing, security, log retention, and repository access policies before connecting a personal account.&lt;/p&gt;
&lt;h2 id=&#34;basic-workflow&#34;&gt;Basic Workflow&lt;/h2&gt;
&lt;h3 id=&#34;1-make-it-read-first&#34;&gt;1. Make It Read First&lt;/h3&gt;
&lt;p&gt;Broad requests such as &amp;ldquo;improve the whole project&amp;rdquo; can lead to excessive changes. Start with read-only analysis and check whether the project understanding is correct.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Analyze this repository.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Rules:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;- Do not modify files yet.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;- Do not guess; explain based on actual files.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;- Suggest run commands only after checking README, package files, and configuration files.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;- End with five possible next tasks in order of difficulty.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;2-ask-for-a-plan&#34;&gt;2. Ask for a Plan&lt;/h3&gt;
&lt;p&gt;For work that requires changes, ask for a plan first. The plan should include files to change, expected impact, and verification commands.&lt;/p&gt;
&lt;h3 id=&#34;3-keep-changes-small&#34;&gt;3. Keep Changes Small&lt;/h3&gt;
&lt;p&gt;Claude Code can edit multiple files at once, but in practice it is safer to keep changes small. For high-impact areas such as authentication, payments, authorization, and data migrations, assign only one goal at a time.&lt;/p&gt;
&lt;h3 id=&#34;4-run-verification-commands&#34;&gt;4. Run Verification Commands&lt;/h3&gt;
&lt;p&gt;After changes, at least one relevant test, lint, type check, or build command should be run. Ask Claude Code to inspect the actual project settings and find the smallest relevant command first.&lt;/p&gt;
&lt;h3 id=&#34;5-review-the-diff&#34;&gt;5. Review the Diff&lt;/h3&gt;
&lt;p&gt;Always inspect the changes after Claude Code finishes. Even if tests pass, the implementation may differ from the requirement or include unnecessary refactoring.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git diff
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git status --short
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Check whether files outside the requested scope were changed, whether tests or build settings changed unnecessarily, whether sensitive files were read or printed, and whether failed verification commands were ignored.&lt;/p&gt;
&lt;h2 id=&#34;good-tasks&#34;&gt;Good Tasks&lt;/h2&gt;
&lt;p&gt;Claude Code works well for repetitive development tasks that still require project context, such as unfamiliar codebase analysis, bug cause tracking, test writing, documentation, and release notes.&lt;/p&gt;
&lt;h2 id=&#34;tasks-that-need-care&#34;&gt;Tasks That Need Care&lt;/h2&gt;
&lt;p&gt;Avoid vague large-scale requests such as &amp;ldquo;clean everything up&amp;rdquo; or &amp;ldquo;improve performance.&amp;rdquo; Limit the goal and scope instead. Deployment, database migrations, infrastructure changes, secret handling, and payment logic require explicit approval procedures. For frequently changing information such as library options, cloud service policies, prices, model names, and CLI flags, ask it to check official documentation.&lt;/p&gt;
&lt;h2 id=&#34;providing-project-rules&#34;&gt;Providing Project Rules&lt;/h2&gt;
&lt;p&gt;For stable team use, write project rules in a &lt;code&gt;CLAUDE.md&lt;/code&gt; file at the repository root. Include project purpose, core stack, install/run/test/build commands, directories that must not be changed, commands that require approval, code style, sensitive file patterns, and pull request or commit message rules.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-markdown&#34; data-lang=&#34;markdown&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#000080;font-weight:bold&#34;&gt;# Project Instructions
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#800080;font-weight:bold&#34;&gt;## Commands
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Install: &lt;span style=&#34;color:#4e9a06&#34;&gt;`npm install`&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Run locally: &lt;span style=&#34;color:#4e9a06&#34;&gt;`npm run dev`&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Test: &lt;span style=&#34;color:#4e9a06&#34;&gt;`npm test`&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Build: &lt;span style=&#34;color:#4e9a06&#34;&gt;`npm run build`&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#800080;font-weight:bold&#34;&gt;## Working Rules
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Do not edit generated files in &lt;span style=&#34;color:#4e9a06&#34;&gt;`dist/`&lt;/span&gt;.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Do not read or print &lt;span style=&#34;color:#4e9a06&#34;&gt;`.env`&lt;/span&gt; files.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Ask before adding new dependencies.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Run the smallest relevant test after code changes.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;-&lt;/span&gt; Keep changes scoped to the requested task.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;practical-checklist&#34;&gt;Practical Checklist&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Start the first request with read-only analysis.&lt;/li&gt;
&lt;li&gt;Review the change plan before editing.&lt;/li&gt;
&lt;li&gt;Narrow the work by file, feature, or test.&lt;/li&gt;
&lt;li&gt;Run verification commands.&lt;/li&gt;
&lt;li&gt;Do not ignore failed tests or builds.&lt;/li&gt;
&lt;li&gt;Review the actual changes with &lt;code&gt;git diff&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Require separate approval for production commands, secrets, and deployment work.&lt;/li&gt;
&lt;li&gt;Keep team rules in &lt;code&gt;CLAUDE.md&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;summary&#34;&gt;Summary&lt;/h2&gt;
&lt;p&gt;Claude Code is a coding agent that can read a codebase, edit files, run commands, and automate parts of the development workflow based on natural language instructions. Its biggest strength is that it can continue work inside the real project context rather than merely suggesting code snippets.&lt;/p&gt;
&lt;p&gt;To use it safely in practice, start with analysis, confirm the plan, edit in small units, run tests, and review the diff. Following this workflow turns Claude Code into a practical tool for reducing repetitive development work.&lt;/p&gt;
&lt;h2 id=&#34;references&#34;&gt;References&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://wikidocs.net/347407&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;005. Claude Code란 무엇인가 - WikiDocs&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://code.claude.com/docs/en/overview&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Claude Code Overview&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://code.claude.com/docs/en/quickstart&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Claude Code Quickstart&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://code.claude.com/docs/en/common-workflows&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Claude Code Common workflows&lt;i class=&#34;fas fa-external-link-alt&#34;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

      </description>
      
      <category>AI</category>
      
      <category>Claude</category>
      
      <category>Claude Code</category>
      
    </item>
    
  </channel>
</rss>
