Add navigation header with back link and Claude SVG to all reports and workflows

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Shayan Rais
2026-02-09 21:16:14 +05:00
parent 73d905cb07
commit 77d2b27b94
10 changed files with 70 additions and 0 deletions
@@ -1,5 +1,12 @@
# Claude Agent SDK vs Claude CLI: System Prompts and Output Consistency
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
![SDK vs CLI System Prompts Diagram](/!/sdk-vs-cli-diagram.svg)
---
+7
View File
@@ -2,6 +2,13 @@
A comprehensive reference of all available command-line flags when launching Claude Code from the terminal.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## Table of Contents
1. [Session Management](#session-management)
+7
View File
@@ -2,6 +2,13 @@
A comprehensive reference of all available slash commands in Claude Code's interactive mode.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## Table of Contents
1. [Session Management](#session-management)
@@ -2,6 +2,13 @@
A comprehensive comparison of which Claude Code features are global-only (`~/.claude/`) versus which have both global and project-level (`.claude/`) equivalents.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## Table of Contents
1. [Overview](#overview)
@@ -1,5 +1,12 @@
# Comprehensive Browser Automation MCP Comparison Report
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## Executive Summary
Based on extensive research, I've analyzed the two tools from your screenshots plus a third major contender. Here's my comprehensive breakdown to help you choose the best option for automated testing of your work.
@@ -2,6 +2,13 @@
When working with Claude Code in a monorepo, understanding how CLAUDE.md files are loaded into context is crucial for organizing your project instructions effectively.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## The Two Loading Mechanisms
Claude Code uses two distinct mechanisms for loading CLAUDE.md files:
+7
View File
@@ -2,6 +2,13 @@
A comprehensive guide to all available configuration options in Claude Code's `settings.json` files.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## Table of Contents
1. [Settings Hierarchy](#settings-hierarchy)
@@ -2,6 +2,13 @@
When working with Claude Code in a monorepo, understanding how skills are discovered and loaded into context is crucial for organizing your project-specific capabilities effectively.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## Important Difference from CLAUDE.md
**Skills do NOT have the same loading behavior as CLAUDE.md files.** While CLAUDE.md files walk UP the directory tree (ancestor loading), skills use a different discovery mechanism focused on nested directories within your project.
@@ -2,6 +2,13 @@
This document describes the complete flow of the weather data fetching and transformation system.
<table width="100%">
<tr>
<td><a href="../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
## System Overview
The weather system demonstrates the **Command → Agent → Skills** architecture pattern, where:
+7
View File
@@ -4,6 +4,13 @@
A systematic development workflow with validation gates at each phase. Prevents wasted effort on non-viable features and ensures comprehensive documentation.
<table width="100%">
<tr>
<td><a href="../../">← Back to Claude Code Best Practice</a></td>
<td align="right"><img src="../../!/claude-jumping.svg" alt="Claude" width="60" /></td>
</tr>
</table>
---
## Overview