You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.',
14
14
},
15
15
{
16
16
slug: 'streaming',
@@ -36,7 +36,7 @@ async function generateDoc(slug: string, prompt: string, apiDocsJson: string): P
36
36
max_tokens: 2048,
37
37
messages: [{
38
38
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.
40
40
Here is the TypeDoc API reference JSON:\n\n${apiDocsJson}\n\n${prompt}
41
41
42
42
Write clean, developer-friendly MDX documentation. Use precise, no-fluff prose. Include code examples. Start with a single # heading.`,
Copy file name to clipboardExpand all lines: docs/superpowers/plans/2026-03-18-agentic-additions.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -729,7 +729,7 @@ import path from 'path';
729
729
importpkgfrom'../../../package.json';
730
730
731
731
function buildLlmsTxt():string {
732
-
return`# stream-resource v${pkg.version}
732
+
return`# Angular Stream Resource v${pkg.version}
733
733
734
734
Angular streaming library for LangChain/LangGraph. Provides streamResource() — full parity with React's useStream() hook, built on Angular Signals.
735
735
@@ -798,7 +798,7 @@ function loadAllPrompts(): string {
798
798
799
799
exportasyncfunction GET() {
800
800
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',
802
802
'## API Reference (TypeDoc)\n\n'+loadApiDocs(),
803
803
'## Prompt Recipes\n\n'+loadAllPrompts(),
804
804
'## 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
844
844
Create `apps/website/content/CLAUDE.md.template`:
845
845
846
846
```
847
-
# stream-resource v@VERSION@
847
+
# Angular Stream Resource v@VERSION@
848
848
849
849
Angular streaming library for LangChain/LangGraph. Provides `streamResource()` — full parity with React's `useStream()`.
0 commit comments