message-injector
3
总安装量
1
周安装量
#56668
全站排名
安装命令
npx skills add https://github.com/nimotea/message-injector-skill --skill message-injector
Agent 安装分布
trae
1
claude-code
1
Skill 文档
Message Injector
This skill extracts information from a provided source text and injects it into a target template string that contains placeholders.
Trigger Keyword
CRITICAL: This skill should ONLY be used when the user message contains the exact keyword --æå. If this keyword is missing, do NOT use this skill.
When to use this skill
- When the user provides a source text and a template, AND includes the
--æåkeyword. - When the user explicitly asks to “extract” information into a template using the
--æåcommand.
Instructions
- Analyze the Source Text: Identify key entities and information in the source text that correspond to the placeholders in the template.
- Identify Placeholders: Locate all placeholders in the template string.
- Extract and Map: Map the information from the source text to the corresponding placeholders.
- Inject: Replace the placeholders in the template with the extracted values.
- Output Format:
- PLAIN TEXT: Return only the final string with the injected values.
- NO FILE WRITING: Do NOT write the result to any file. Only return the text in the chat response.
Examples
Example 1
Input: –æå Source: “The meeting is at 2 PM on Friday in Room 101.” Template: “Reminder: Meeting at {time} on {day} in {location}.”
Output: Reminder: Meeting at 2 PM on Friday in Room 101.
Example 2
Input: –æå Source: “User john_doe signed up with email john@example.com.” Template: “Welcome, {{username}}! We sent a verification link to {{email}}.”
Output: Welcome, john_doe! We sent a verification link to john@example.com.