Claude Code: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
| Line 88: | Line 88: | ||
claude update | claude update | ||
</pre> | </pre> | ||
== Learning Videos == | |||
{| class="wikitable" | |||
|+ | |||
! | |||
! | |||
! | |||
|- | |||
|1. | |||
|Basics | |||
|https://www.youtube.com/watch?v=T_IYHx-9VGU | |||
|- | |||
|2. | |||
|Best practices | |||
|https://www.youtube.com/watch?v=IUi--nVU4yA | |||
|- | |||
| | |||
| | |||
| | |||
|} | |||
* Channels | |||
** Matt Maher: https://www.youtube.com/@MetalSole | |||
** IndyDevDan: https://www.youtube.com/@indydevdan/ | |||
[[Category:Programming]] | [[Category:Programming]] | ||
[[Category:AI]] | [[Category:AI]] | ||
Revision as of 05:49, 31 July 2025
| Other articles |
Installation on Ubuntu (WSL2)
sudo apt install npm mkdir -p ~/.npm-global npm config set prefix ~/.npm-global echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc source ~/.bashrc npm install -g @anthropic-ai/claude-code which claude claude doctor claude --version
settings.json
| file | scope | |
|---|---|---|
| User settings | ~/.claude/settings.json
|
|
| Project settings | .claude/settings.json
|
all users |
| Project settings | .claude/settings.local.json
|
local/personal only |
Example:
{
"permissions": {
"allow": [
"Bash(ls:*)"
],
"deny": []
}
}
Sub agent configuration
| file | |
|---|---|
| User sub agents | ~/.claude/agents/
|
| Project sub agents | .claude/agents/
|
Command line options
claude # interactive mode claude "task" # run single task claude -p "task" # run single task, print response, exit claude --dangerously-skip-permissions claude config list claude mcp list claude doctor claude update
Learning Videos
| 1. | Basics | https://www.youtube.com/watch?v=T_IYHx-9VGU |
| 2. | Best practices | https://www.youtube.com/watch?v=IUi--nVU4yA |
- Channels
- Matt Maher: https://www.youtube.com/@MetalSole
- IndyDevDan: https://www.youtube.com/@indydevdan/