Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるcount
スター5
フォーク0
更新日2026年5月22日 20:48
Square the input integer.
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Square the input integer.
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.
Join an array of strings with single spaces.
| id | count |
| name | Count |
| description | Square the input integer. |
| tags | ["demo","hook-trigger"] |
| examples | ["{\"n\": 3}"] |
| inputModes | ["application/json"] |
| outputModes | ["application/json"] |
| securityRequirements | [] |
| inputSchema | {"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"n":{"type":"integer"}},"required":["n"]} |
| outputSchema | {"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"squared":{"type":"integer"}},"required":["squared"]} |
Squares the supplied integer n and returns {"squared": n*n}.
Deterministic and offline. The skill always returns successfully when the
input validates against the schema; non-integer or missing n is rejected
as SkillError::InvalidRequest, which the agent's TerminalHook records
as a Failure outcome.