kb-frontend-sse skillA
kb-frontend-sse is agent-read markdown (skill) from minorun365/agent-builder-skills: SSEストリーミング処理のナレッジ。基本パターン/タイムアウト/リトライ/モック/PDF生成等.
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# SSEストリーミング処理
SSE(Server-Sent Events)を使ったフロントエンドのストリーミング処理パターンを記録する。
## 基本パターン
```typescript
const reader = response.body?.getReader();
const decoder = new TextDecoder();
let buffer = '';
while (true) {
const { done, value } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
const lines = buffer.split('\n');
buffer = lines.pop() || ''; // 不完全な行は次回に持ち越し
for (const line of lines) {
if (line.startsWith('data: ')) {
const data = line.slice(6);
if (data === '[DONE]') return;
try {
const event = JSON.parse(data);
handleEvent(event);
} catch {
// JSONパースエラーは無視
}
}
}
}
```
## イベントハンドリング
```typescript
function handleEvent(event) {
// APIによってcontent/dataのどちらかにペイロードが入る
const textValue = event.content || event.data;
switch (event.type) {
case 'text':
onText(textValue);
break;
case 'tool_use':
onToolUse(textValue); // ツール名が返る
break;
case 'markdown':
onMarkdown(textValue);
break;
case 'error':
onError(new Error(event.error || event.message || textValue));
break;
}
}
```
## エラーハンドリング
```typescript
…Read the whole file at its exact version.
How to install
mdr add minorun365/agent-builder-skills/kb-frontend-sse@git:20260920.61904e5mdr add minorun365/agent-builder-skills/kb-frontend-sse@sha256:e0772694994baa6bPin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
[](https://markdownregistry.com/a/art_isblvjyhkosvrm6b)
1 badge views in 30 days
Versions
Audit of the latest version
- pass: Frontmatter block present
- pass: Frontmatter declares a name
- pass: Frontmatter declares a description
- pass: Size between 200 bytes and 200 KB (6928 bytes)
- pass: No zero-width or bidi control characters
- pass: No instruction hidden inside an HTML comment
- pass: No link to an exfiltration or paste host
- pass: No credential-shaped string
- pass: No instruction to send local credentials anywhere
- pass: No text hidden with inline styles
- pass: No prompt-injection phrasing
- pass: No curl or wget piped into a shell
- pass: No recursive delete of root, home or parent
- pass: No instruction to read or print local credentials
- pass: No base64 blob over 200 characters
- pass: No link to a raw IP address
- pass: No script tag
Source
minorun365/agent-builder-skills · 40 stars · license Apache-2.0 · pushed 2026-09-21 · branch main
API
GET https://markdownregistry.com/api/v1/artifacts/art_isblvjyhkosvrm6b GET https://markdownregistry.com/api/v1/resolve?ref=minorun365/agent-builder-skills/kb-frontend-sse GET https://markdownregistry.com/api/v1/blob/e0772694994baa6b511e242411eb73975c69f23f45b7d75e04a978690f07fa91
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.