Since list-inks is a macro <<list-links
As documented here as a result parameters are either positional eg the first is the filter parameter or you need to name them, unlike widgets we need to use the colon “:” rather than equal “=”.
<<list-links filter:"...">>
You can see this macro defined in ## $:/core/macros/list
the parameters and default values;
\define list-links(filter,type:"ul",subtype:"li",class:"",emptyMessage)
\whitespace trim
<$type$ class="$class$">
<$list filter="$filter$" emptyMessage=<<__emptyMessage__>>>
<$subtype$>
<$link to={{!!title}}>
<$transclude field="caption">
<$view field="title"/>
</$transclude>
</$link>
</$subtype$>
</$list>
</$type$>
\end
You can learn a lot about making macros or using wiki text looking at the provided core macros. Here is the above simplified for use directly in wikitext.
<ul>
<$list filter=".." emptyMessage="empty">
<li>
<$link to={{!!title}}>
<$transclude field="caption"><!-- use caption as link name OR title -->
<$view field="title"/>
</$transclude>
</$link>
</li>
</$list>
</ul>