Skip to content

Commit 65ffe25

Browse files
committed
docs: fix remaining brand references missed in initial pass
1 parent b14ae37 commit 65ffe25

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

apps/website/scripts/generate-narrative-docs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const API_DOCS = 'apps/website/public/api-docs.json';
1010
const TOPICS = [
1111
{
1212
slug: 'introduction',
13-
prompt: 'Write an introduction to the StreamResource Angular library. Explain what it does, who it is for, and why it exists. Include a minimal getting-started example.',
13+
prompt: 'Write an introduction to the Angular Stream Resource library. Explain what it does, who it is for, and why it exists. Include a minimal getting-started example.',
1414
},
1515
{
1616
slug: 'streaming',
@@ -36,7 +36,7 @@ async function generateDoc(slug: string, prompt: string, apiDocsJson: string): P
3636
max_tokens: 2048,
3737
messages: [{
3838
role: 'user',
39-
content: `You are writing documentation for the StreamResource Angular library.
39+
content: `You are writing documentation for the Angular Stream Resource library.
4040
Here is the TypeDoc API reference JSON:\n\n${apiDocsJson}\n\n${prompt}
4141
4242
Write clean, developer-friendly MDX documentation. Use precise, no-fluff prose. Include code examples. Start with a single # heading.`,

apps/website/src/app/llms-full.txt/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function loadAllPrompts(): string {
2727

2828
export async function GET() {
2929
const sections = [
30-
'# stream-resource — Full Reference\n\nSee /llms.txt for a compact summary.\n',
30+
'# Angular Stream Resource — Full Reference\n\nSee /llms.txt for a compact summary.\n',
3131
'## API Reference (TypeDoc)\n\n' + loadApiDocs(),
3232
'## Prompt Recipes\n\n' + loadAllPrompts(),
3333
[

apps/website/src/lib/docs.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('website docs bindings', () => {
1515
const doc = getDocBySlug('getting-started', 'introduction');
1616
expect(doc).not.toBeNull();
1717
expect(doc?.title).toBe('Introduction');
18-
expect(doc?.content).toContain('StreamResource');
18+
expect(doc?.content).toContain('Angular Stream Resource');
1919
});
2020

2121
it('returns null for non-existent doc', () => {

docs/superpowers/plans/2026-03-17-readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ apps/website/public/assets/
3838
**Visual specification:**
3939
- Background: `#080705` (near-black)
4040
- Text color: `#d4aa6a` (gold)
41-
- Wordmark: "stream-resource" in EB Garamond-style serif paths
41+
- Wordmark: "Angular Stream Resource" in EB Garamond-style serif paths
4242
- Subtitle: "The Enterprise Streaming Resource for LangChain and Angular" in lighter gold
4343
- Dimensions: 1200 × 300 (standard GitHub README banner ratio)
4444
- No JavaScript, no `<foreignObject>`, no web fonts (paths only — renders everywhere)
@@ -57,7 +57,7 @@ apps/website/public/assets/
5757
<!-- Decorative left rule -->
5858
<line x1="60" y1="80" x2="60" y2="220" stroke="#d4aa6a" stroke-width="1" stroke-opacity="0.3"/>
5959

60-
<!-- Wordmark: "stream-resource" -->
60+
<!-- Wordmark: "Angular Stream Resource" -->
6161
<!-- Rendered as text with system serif fallback — GitHub SVG renderer supports embedded text -->
6262
<text
6363
x="88"
@@ -67,7 +67,7 @@ apps/website/public/assets/
6767
font-weight="700"
6868
letter-spacing="-2"
6969
fill="#d4aa6a"
70-
>stream-resource</text>
70+
>Angular Stream Resource</text>
7171

7272
<!-- Tagline -->
7373
<text
@@ -244,7 +244,7 @@ apps/website/public/assets/
244244
<p align="center">
245245
<img
246246
src="https://stream-resource.vercel.app/assets/hero.svg"
247-
alt="stream-resource — The Enterprise Streaming Resource for LangChain and Angular"
247+
alt="Angular Stream Resource — The Enterprise Streaming Resource for LangChain and Angular"
248248
width="100%"
249249
/>
250250
</p>
@@ -353,7 +353,7 @@ That's it. `chat.messages()` is an Angular Signal. Bind it directly in your temp
353353
<p align="center">
354354
<img
355355
src="https://stream-resource.vercel.app/assets/arch-diagram.svg"
356-
alt="stream-resource architecture: Angular Component → streamResource() → StreamManager Bridge → LangGraph Platform, with signals returned reactively"
356+
alt="Angular Stream Resource architecture: Angular Component → streamResource() → StreamManager Bridge → LangGraph Platform, with signals returned reactively"
357357
width="100%"
358358
/>
359359
</p>

docs/superpowers/plans/2026-03-18-agentic-additions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ import path from 'path';
729729
import pkg from '../../../package.json';
730730

731731
function buildLlmsTxt(): string {
732-
return `# stream-resource v${pkg.version}
732+
return `# Angular Stream Resource v${pkg.version}
733733
734734
Angular streaming library for LangChain/LangGraph. Provides streamResource() — full parity with React's useStream() hook, built on Angular Signals.
735735
@@ -798,7 +798,7 @@ function loadAllPrompts(): string {
798798

799799
export async function GET() {
800800
const sections = [
801-
'# stream-resource — Full Reference\n\nSee /llms.txt for a compact summary.\n',
801+
'# Angular Stream Resource — Full Reference\n\nSee /llms.txt for a compact summary.\n',
802802
'## API Reference (TypeDoc)\n\n' + loadApiDocs(),
803803
'## Prompt Recipes\n\n' + loadAllPrompts(),
804804
'## Common Gotchas\n\nstreamResource() MUST be called inside an Angular injection context.\nDo not call it in ngOnInit — use constructor or field initializer.\nDo not mock streamResource() in tests — use MockStreamTransport.\nRxJS is an internal implementation detail — do not import rxjs in consumer code.',
@@ -844,7 +844,7 @@ These files are generated at build time and served as static downloads from the
844844
Create `apps/website/content/CLAUDE.md.template`:
845845

846846
```
847-
# stream-resource v@VERSION@
847+
# Angular Stream Resource v@VERSION@
848848
849849
Angular streaming library for LangChain/LangGraph. Provides `streamResource()` — full parity with React's `useStream()`.
850850

docs/superpowers/specs/2026-03-18-agentic-docs-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Targets Claude Code and Claude API agents. Downloadable from the Getting Started
171171

172172
Content:
173173
```markdown
174-
# stream-resource
174+
# Angular Stream Resource
175175

176176
Angular streaming library for LangChain/LangGraph. Provides `streamResource()` — full parity with React's `useStream()`.
177177

0 commit comments

Comments
 (0)