在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用concat
星标5
分支0
更新时间2026年5月22日 20:48
Join an array of strings with single spaces.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Join an array of strings with single spaces.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Echo the input string in uppercase.
Reverse the input string character-by-character.
Evaluate a value against a list of deterministic rule-based invariants.
Validate a value against a JSON Schema 2020-12; return verdict + first violation.
Sum two numbers.
Square the input integer.
| id | concat |
| name | Concat |
| description | Join an array of strings with single spaces. |
| tags | ["demo","strings"] |
| examples | ["concat: foo bar baz"] |
| inputModes | ["application/json"] |
| outputModes | ["application/json"] |
| securityRequirements | [] |
| inputSchema | {"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"strings":{"type":"array","items":{"type":"string"}}},"required":["strings"]} |
| outputSchema | {"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"joined":{"type":"string"}},"required":["joined"]} |
Joins the provided strings with single spaces and returns the result.
This skill is deterministic — there is no LLM dispatch and the Markdown body is documentation only, not a prompt template.