Commit
·
90c556c
1
Parent(s):
daaf03c
Add link and footnote to Anthropic docs quote, enhance styling
Browse files- Added hyperlink to Anthropic docs in quote attribution
- Added footnote with source date (October 31, 2025)
- Enhanced blockquote styling with gradient background
- Added decorative quotation mark
- Increased quote font size to 1.25rem for prominence
- Added subtle shadow and better spacing
- source/README.md +5 -2
- style.css +25 -6
source/README.md
CHANGED
|
@@ -41,9 +41,9 @@ Etc.
|
|
| 41 |
|
| 42 |
Some are strenously against multiagent systems.
|
| 43 |
|
| 44 |
-
But this quote from the Anthropic docs illustrates why it's worth persevering with working with subagents in spite of this limit:
|
| 45 |
|
| 46 |
-
"Each subagent operates in its own context, preventing pollution of the main conversation and keeping it focused on high-level objectives."
|
| 47 |
|
| 48 |
Which is a very big deal when context pollution can flatten out otherwise great inference.
|
| 49 |
|
|
@@ -149,3 +149,6 @@ The flow (describing the intended scripting in natural language):
|
|
| 149 |
|
| 150 |
For more details on how subagents work in Claude Code, see the [Anthropic subagent documentation](./anthropic-doc.md) (captured at time of writing).
|
| 151 |
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
Some are strenously against multiagent systems.
|
| 43 |
|
| 44 |
+
But this quote from the [Anthropic docs](https://docs.claude.com/en/docs/claude-code/sub-agents) illustrates why it's worth persevering with working with subagents in spite of this limit:
|
| 45 |
|
| 46 |
+
> "Each subagent operates in its own context, preventing pollution of the main conversation and keeping it focused on high-level objectives."[^1]
|
| 47 |
|
| 48 |
Which is a very big deal when context pollution can flatten out otherwise great inference.
|
| 49 |
|
|
|
|
| 149 |
|
| 150 |
For more details on how subagents work in Claude Code, see the [Anthropic subagent documentation](./anthropic-doc.md) (captured at time of writing).
|
| 151 |
|
| 152 |
+
---
|
| 153 |
+
|
| 154 |
+
[^1]: Quote sourced from [Anthropic Claude Code documentation](https://docs.claude.com/en/docs/claude-code/sub-agents) on October 31, 2025.
|
style.css
CHANGED
|
@@ -230,17 +230,36 @@ body {
|
|
| 230 |
|
| 231 |
/* Blockquotes */
|
| 232 |
#content blockquote {
|
| 233 |
-
border-left:
|
| 234 |
-
background:
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
|
|
|
|
|
|
| 238 |
font-style: italic;
|
| 239 |
-
color: var(--text-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 240 |
}
|
| 241 |
|
| 242 |
#content blockquote p {
|
| 243 |
margin-bottom: 0;
|
|
|
|
|
|
|
| 244 |
}
|
| 245 |
|
| 246 |
/* Links */
|
|
|
|
| 230 |
|
| 231 |
/* Blockquotes */
|
| 232 |
#content blockquote {
|
| 233 |
+
border-left: 5px solid var(--primary);
|
| 234 |
+
background: linear-gradient(135deg,
|
| 235 |
+
rgba(99, 102, 241, 0.08) 0%,
|
| 236 |
+
rgba(139, 92, 246, 0.05) 100%);
|
| 237 |
+
padding: 2rem;
|
| 238 |
+
margin: 2.5rem 0;
|
| 239 |
+
border-radius: 0 12px 12px 0;
|
| 240 |
font-style: italic;
|
| 241 |
+
color: var(--text-primary);
|
| 242 |
+
font-size: 1.25rem;
|
| 243 |
+
line-height: 1.7;
|
| 244 |
+
box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
|
| 245 |
+
position: relative;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
#content blockquote::before {
|
| 249 |
+
content: '"';
|
| 250 |
+
position: absolute;
|
| 251 |
+
top: -10px;
|
| 252 |
+
left: 20px;
|
| 253 |
+
font-size: 4rem;
|
| 254 |
+
color: var(--primary);
|
| 255 |
+
opacity: 0.3;
|
| 256 |
+
font-family: Georgia, serif;
|
| 257 |
}
|
| 258 |
|
| 259 |
#content blockquote p {
|
| 260 |
margin-bottom: 0;
|
| 261 |
+
position: relative;
|
| 262 |
+
z-index: 1;
|
| 263 |
}
|
| 264 |
|
| 265 |
/* Links */
|