docs: Add project logo to all README files

- Add claude-howto-logo.svg to 12 README files across the project
- Use appropriate relative paths for different directory levels
- Include new memory guide screenshots
- Add personal CLAUDE.md configuration

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Luong NGUYEN
2025-11-08 09:45:26 +01:00
parent 70af4cd931
commit 346a2fa993
15 changed files with 42 additions and 11 deletions
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Slash Commands
## Overview
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Subagents - Complete Reference Guide
Subagents are specialized AI assistants with isolated context windows and customized system prompts. They enable delegated task execution while maintaining clean separation of concerns.
+20 -11
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Memory Guide
Memory enables Claude to retain context across sessions and conversations. It exists in two forms: automatic synthesis in claude.ai, and filesystem-based CLAUDE.md in Claude Code.
@@ -291,17 +293,16 @@ Separate concerns (Controllers, Services, Repositories).
## Project Organization
I organize my projects as:
```
project/
├── src/
│ ├── api/
│ ├── services/
│ ├── models/
│ └── utils/
├── tests/
├── docs/
└── docker/
```
project/
├── src/
│ ├── api/
│ ├── services/
│ ├── models/
│ └── utils/
├── tests/
├── docs/
└── docker/
## Tooling
- **IDE**: VS Code with vim keybindings
@@ -311,6 +312,14 @@ project/
- **Test Framework**: Jest with React Testing Library
```
_My Test_
Ask Claude to save a new rule
![Ask Claude to save a new rule](memory-ask-claude.png)
Claude has not save the rule because I did not have any `Claude.md` file anywhere. Then asked Claude to confirm the location.
![Ask Claude to save a new rule](memory-saved.png)
### Example 4: Memory Update During Session
**Session Interaction:**
Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# MCP (Model Context Protocol)
This folder contains comprehensive documentation and examples for MCP server configurations and usage with Claude Code.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Agent Skills Guide
Agent Skills are reusable, model-invoked capabilities packaged as folders containing instructions, scripts, and resources. Claude automatically detects and uses relevant skills.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Claude Code Plugins
This folder contains complete plugin examples that bundle multiple Claude Code features into cohesive, installable packages.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../../claude-howto-logo.svg)
# DevOps Automation Plugin
Complete DevOps automation for deployment, monitoring, and incident response.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../../claude-howto-logo.svg)
# Documentation Plugin
Comprehensive documentation generation and maintenance for your project.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../../claude-howto-logo.svg)
# PR Review Plugin
Complete PR review workflow with security, testing, and documentation checks.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Hooks
Hooks are event-driven shell commands that execute automatically in response to Claude Code events. They enable automation, validation, and custom workflows without manual intervention.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Checkpoints and Rewind
Checkpoints allow you to save conversation state and rewind to previous points in your Claude Code session. This is invaluable for exploring different approaches, recovering from mistakes, or comparing alternative solutions.
+2
View File
@@ -1,3 +1,5 @@
![Claude How To](../claude-howto-logo.svg)
# Advanced Features
Comprehensive guide to Claude Code's advanced capabilities including planning mode, extended thinking, background tasks, permission modes, headless operation, session management, interactive features, and configuration.
View File