一键导入
echo-notes
Append timestamped echo notes via the bundled note server. Use when the user asks to echo or repeat something back through the notes tool.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Append timestamped echo notes via the bundled note server. Use when the user asks to echo or repeat something back through the notes tool.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Look up DNS records with dig. Use when the user asks what a domain resolves to, or wants to inspect A, AAAA, MX, TXT, or NS records.
Query, filter, and reshape JSON files with jq. Use when the user wants to extract fields from JSON, transform JSON structure, or inspect large JSON documents.
House style for writing release notes and changelogs. Use when drafting, reviewing, or editing release notes, changelog entries, or version announcements.
Download files and pages from the web with curl. Use when the user wants to fetch a URL to disk.
| name | echo-notes |
| description | Append timestamped echo notes via the bundled note server. Use when the user asks to echo or repeat something back through the notes tool. |
| metadata | {"loom.providers":"note_server = { provider = \"mcp-server\", command = \"node\", args = [\"${SKILL_DIR}/server.mjs\"] }\n","loom.tools":"echo_note = { provider = \"note_server\", tool = \"echo\", capabilities = \"*\" }\n"} |
Call the echo_note tool with { text: "..." }; it returns the text
verbatim from the bundled MCP server.
This skill demonstrates a skill SHIPPING SOFTWARE: loom.providers
declares a group-local MCP server (the server.mjs next to this file),
and loom.tools pulls the echo tool out of it under the instance name
echo_note. Because the skill carries its own implementation, loom only
accepts it when the host manifest names echo_note in [capabilities] —
running contributed code always requires explicit consent. The handle
note_server is local to this skill; if another skill (or the manifest)
declares a provider with the exact same value, they dedup to one server
process.