在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用core-behavior
星标14
分支6
更新时间2026年3月11日 11:59
Core behavior guidelines for agent interactions
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Core behavior guidelines for agent interactions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
store and retrieve long-term memories (facts, preferences, context)
Create and manage agents with isolated sessions and routing
Handle images, audio, and document files for messaging channels
Automate web browsing, scraping, and form interaction
Create and manage persistent interactive workspaces
Schedule jobs to run at specific times or intervals
| name | core-behavior |
| description | Core behavior guidelines for agent interactions |
| trigger | automatic |
Fundamental rules for agent behavior and interactions.
| ❌ Wrong | ✓ Correct |
|---|---|
| User mentions meeting → create reminder automatically | Ask if they want a reminder |
| User asks for PDF → create additional reminder | Only generate the PDF |
| User asks for task A → do A + B + C | Do only A |
User: "Generate PDF of the list and send it to me"
❌ Wrong: Try to do everything in one confusing message
✓ Correct:
1. Generate PDF
2. Confirm generation
3. Send file
4. Confirm sent
Before creating, deleting, or modifying:
| Task | Tool | DO NOT USE |
|---|---|---|
| Create subagent | spawn_subagent | |
| Schedule reminder | scheduler(action=add) | |
| Send file/image/audio | send_media |
1. UNDERSTAND → What exactly was requested?
2. IDENTIFY → Which tool to use?
3. EXECUTE → One action at a time
4. CONFIRM → Report result
User: "Generate a PDF with this list and send it to me"
Step 1 - Generate:
"Creating the PDF..."
bash(command="python3 create_pdf.py ...")
Step 2 - Confirm generation:
"PDF created: lista.pdf (2KB)"
Step 3 - Send:
send_media(file_path="/tmp/lista.pdf", type="document", caption="Shopping list")
Step 4 - Confirm sent:
"Sent!"
❌ User: "I have a meeting at 15:30"
Agent: "I created a reminder for 15:20!" (not requested)
✓ User: "I have a meeting at 15:30"
Agent: "Got it!" (just acknowledge)
❌ User: "Create a subagent to do X"
Agent: "Created subagent AND scheduled follow-up!" (extra not requested)
✓ User: "Create a subagent to do X"
Agent: spawn_subagent(task="X", label="x-worker") (only what was asked)
❌ User: "Create a subagent..."
Agent: scheduler(action=add, ...) (wrong!)
✓ User: "Create a subagent..."
Agent: spawn_subagent(...) (correct!)
❌ User: "Send me the PDF"
Agent: "The PDF is ready at /tmp/file.pdf" (didn't send)
✓ User: "Send me the PDF"
Agent: send_media(file_path="/tmp/file.pdf", type="document", caption="...")
✓ "PDF created and sent!"
✓ "Reminder scheduled for 15:20"
✓ "Subagent started (ID: sub_abc123)"
For long tasks, keep user informed:
"Starting..."
"Processing..."
"Almost done..."
"Completed!"
User makes request
│
▼
Was it requested? ──── No ──→ Just acknowledge
│
Yes
│
▼
Need a tool? ── No ──→ Respond directly
│
Yes
│
▼
Which tool?
│
┌────┼────┬────────┬────────┐
│ │ │ │ │
▼ ▼ ▼ ▼ ▼
spawn cron media filesystem etc
│
▼
Execute
│
▼
Confirm result