一键导入
harness-starter-report
// Harnessed report-generator starter. Writes a markdown artifact under reports/ and relies on the workspace contract to deliver it.
// Harnessed report-generator starter. Writes a markdown artifact under reports/ and relies on the workspace contract to deliver it.
Harnessed audio-artifact starter. Synthesizes a minimal WAV file under audio/ and relies on the workspace contract to deliver it.
Harnessed coding-assistant starter. Produces a unified-diff artifact and a file-list preview under patches/.
Minimal harnessed single-artifact starter. Use as a template for a custom app that produces one deliverable.
OminiX ASR (speech-to-text), preset-voice TTS with emotion/speed control, and model management via Qwen3 models on Apple Silicon. For voice cloning and custom voice profiles, use mofa-fm. Triggers: voice, transcribe audio, text to speech, speak this, read aloud, model management, download model, 语音识别, 语音合成, 模型管理.
Recursively crawl websites using headless Chrome. Triggers: crawl, scrape website, 爬取, crawl site, deep crawl, website content.
Deep multi-round web research with parallel fetching. Triggers: deep search, research, 深度搜索, 调研, investigate, deep research.
| name | harness-starter-report |
| description | Harnessed report-generator starter. Writes a markdown artifact under reports/ and relies on the workspace contract to deliver it. |
| version | 1.0.0 |
| author | octos |
| always | false |
A report generator that produces a markdown artifact as its single deliverable. Copy this crate when you want to build an app that ships a rendered document (weekly summary, research brief, status report, etc.).
primary = "reports/*.md" — glob-based artifact resolution.file_size_min:$primary:256 — validator gates delivery on non-trivial
content length.on_failure: ["notify_user:..."] — structured failure notification.See docs/OCTOS_HARNESS_DEVELOPER_GUIDE.md for the full contract.
Generate a markdown report for a topic.
{"topic": "Q1 Sales Review"}
Parameters:
topic (required): report topic; also used to derive the filename
(reports/q1-sales-review.md).body (optional): markdown body. When absent, a stub body is written.Artifact:
reports/<slug>.mdprimary glob (reports/*.md) resolves to this
path.ready until the file exists and
is at least 256 bytes (the starter writes padded stub bodies to keep the
smoke test deterministic).