name: synonyms
about: Find programming/technical synonyms for a word
args:
- name: query
short: 'q'
expect: string
help: Word or concept to find technical synonyms for
actions:
# LLM generates 5 technical alternatives
- tag: tag_synonyms_list
run: llm_small
expect: list<string>
action: |-
[Task]
Give me 5 professional programming terms or alternatives for the concept below.
Write each option strictly on a new line without numbering.
[Concept]
{query}
# Join alternatives into a single string
- tag: tag_synonyms
run: value
expect: string
action: '{tag_synonyms_list|join}'