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.