version: 0.0.1
name: synonyms
about: Find programming/technical synonyms for a word
# IDE plugin integration: maps argument names to IDE contexts
api:
# Target for the final result (replace | clipboard | dialog)
output: dialog
# Source for the {query} tag
input: query
actions:
# LLM generates 5 technical alternatives
- tag: tag_synonyms_list
run: small
expect: list
action: |
[Task]
Give me 5 professional programming terms or alternatives for the concept below.
Each option must be a single word.
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|lower|join}'