TopRank Skills

Home / Claw Skills / Autres / crew-school
Official OpenClaw rules 15%

crew-school

Structured learning system for AI agent crews. Design curricula, run research sessions, track progress, and prevent common failure modes (lazy output, planning-without-executing). Use when setting up agent learning, running training sessions, auditing knowledge gaps, or building a curriculum for specialized agents. Works for single agents or multi-agent crews.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 crew-school 技能。 若已安装,则直接安装 crew-school 技能。

Overview

Skill Key
crewhaus/crew-school
Author
crewhaus
Source Repo
openclaw/skills
Version
-
Source Path
skills/crewhaus/crew-school
Latest Commit SHA
a8367025d09d2efaef8a1862e3936182da9aadca

Extracted Content

SKILL.md excerpt

# Crew School — Agent Learning System

Run structured learning sessions that produce real knowledge articles, not plans. Prevents the #1 failure mode: agents that say "I'll research this" and stop.

## Quick Start

1. **Identify gaps** — What does your agent need to learn? Check what knowledge files exist vs what's needed.
2. **Pick a topic** — Start with critical gaps that directly impact daily work.
3. **Spawn a session** — Use the Session Template below. The anti-laziness guardrails are load-bearing — don't remove them.
4. **Verify output** — Check line count, source count, and scan for planning language.

## Session Template

Use this exact template when spawning learning sessions. Fill in the brackets.

```
CREW LEARNING SESSION — [ROLE]: [TOPIC]

You are the [ROLE] agent. Your assignment is to research [TOPIC] and produce a comprehensive knowledge article.

### Context
[2-3 sentences: why this topic matters for this agent's role]

### Prerequisites
[List knowledge files to read first, or "None"]

### Research Assignment
Deep research on [TOPIC]. You MUST cover:
1. [Subtopic 1] — [Specific questions]
2. [Subtopic 2] — [Specific questions]
3. [Subtopic 3] — [Specific questions]

### Execution Rules — READ CAREFULLY
- DO NOT PLAN. EXECUTE. If you write "I will..." or "Let me create...", STOP and DO IT instead.
- DO NOT stop after outlining. Every section must contain real research findings.
- Search the web. Perform at least 5 web searches. Read at least 2 full articles.
- Cite sources. Every claim needs a source URL.
- Be specific. Names, numbers, examples > generic advice.

### Output Requirements
Write findings to `knowledge/[filename].md` with this structure:

# [Topic]

> **TL;DR:** [2-3 sentence summary]
> **Applies to:** [Which roles]
> **Prerequisites:** [Other knowledge files]

## Key Takeaways
- [Bullet list of actionable findings]

## [Sections with real findings]

## Practical Application
[Steps, templates, checklists the agent can use immediately]

#...

Related Claw Skills