mirror of
https://github.com/walkinglabs/learn-harness-engineering.git
synced 2026-09-19 05:06:27 +08:00
67dfa5937e
- Add 1-2 mermaid diagrams per lecture (EN + ZH, 24 files total) illustrating core concepts: five-layer failure model, harness subsystems, knowledge visibility, instruction architecture, session continuity, initialization lifecycle, WIP=1 workflow, feature state machine, termination checks, test pyramid, observability layers, and clean state dimensions - Add PDF build pipeline: scripts/build-course-pdfs.ts and npm scripts - Add README screenshot capture script and workflow - Add GitHub Actions workflow for automated PDF releases - Update README/README-CN with screenshots and PDF documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
246 B
JavaScript
7 lines
246 B
JavaScript
const https = require('https');
|
|
https.get('https://raw.githubusercontent.com/anthropics/anthropic-cookbook/main/images/logo.svg', (res) => {
|
|
let data = '';
|
|
res.on('data', chunk => data += chunk);
|
|
res.on('end', () => console.log(data));
|
|
});
|