在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用console-log
星标18
分支7
更新时间2026年3月20日 07:35
Logs a message to the console.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Logs a message to the console.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | console-log |
| description | Logs a message to the console. |
Logs a message to the console.
Execute this tool directly via the MCP Plugin HTTP API:
curl -X POST http://localhost:8080/api/tools/console-log \
-H "Content-Type: application/json" \
-d '{
"message": "string_value"
}'
For complex input (multi-line strings, code), save the JSON to a file and use
-d @args.json.Or pipe via stdin:
curl -X POST ${HOST}/api/tools/console-log -H "Content-Type: application/json" -d @- <<'EOF' {"param": "value"} EOF
curl -X POST http://localhost:8080/api/tools/console-log \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"message": "string_value"
}'
| Name | Type | Required | Description |
|---|---|---|---|
message | string | Yes |
{
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
]
}
This tool does not return structured output.