{{ $tools := site.Data.tools }} {{ if not $tools }}{{ errorf "web/data/tools.json is missing or empty; run make docs-tools" }}{{ end }} {{ $schemas := site.Data.tool_schemas }} {{ if not $schemas }}{{ errorf "web/data/tool_schemas.json is missing or empty; run make docs-tools" }}{{ end }} {{ $groups := site.Data.tool_groups }} {{ if not $groups }}{{ errorf "web/data/tool_groups.yaml is missing or empty" }}{{ end }}
Color key read create update delete
{{ range $g := $groups }} {{ $rows := where $tools "group" $g.key }} {{ with $rows }}| Tool | Summary and inputs | Tier | Safety |
|---|---|---|---|
{{ $verb }}{{ with $rest }}_{{ . }}{{ end }}
|
{{ .summary }} {{ with $schema }} {{ with .arguments }}Arguments ({{ len . }})
Input examples ({{ len . }}){{ range . }}
{{ end }}
|
{{ if eq .tier "full" }} full toolset {{ else }} core {{ end }} | {{ .safety }} |