harn-stdlib 0.8.18

Embedded Harn standard library source catalog
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Your tool call could not be parsed: {{ error_summary }}{{ if has_partial_success }}

(The other {{ parsed_call_count }} tool call(s) in this turn parsed successfully and were dispatched; the errors above describe only the malformed ones, which were dropped.){{ end }}

Use heredoc syntax for multiline content. It requires no escaping:

edit({
    action: "create",
    path: "...",
    content: <<EOF
package main
// backticks, quotes, and backslashes are all fine inside heredoc
EOF
})

Do not use backtick template literals for code that contains backtick characters, such as Go raw strings, Rust raw strings, or shell snippets. Heredoc avoids those escaping issues.