技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v2.0.0
统计:⭐ 0 · 213 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:agistack/coaching
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's stated coaching capabilities mostly match the single included script, but the SKILL.md references many missing scripts/files and some vague behaviors (e.g., 'send between-session support') — this mismatch should be resolved before trusting it with confidential client data.
目的
The description promises session prep, question generation, progress tracking, goal setting, and between-session messaging. Only one script (scripts/prep_session.py) is included. SKILL.md lists many other scripts and reference docs that are not present, so the package does not deliver the advertised capabilities.
说明范围
Runtime instructions direct the agent to run many scripts (generate_questions.py, track_progress.py, set_goal.py, between_sessions.py, etc.) and reference multiple docs, but those files are missing. The SKILL.md claims 'Send between-session support' which could imply outbound messaging, but no code for outbound communication exists in the provided files. The included script operates only on local files and prints output — it does not exfiltrat…
安装机制
No install spec (instruction-only plus one script). Nothing is downloaded or written by an installer; lowest risk from installation mechanism.
证书
No environment variables, credentials, or external endpoints are requested. The included script reads per-client JSON files under ~/.openclaw/workspace/memory/coaching, which aligns with the declared local-only storage policy.
持久
Skill is not always-enabled and does not request elevated privileges. It does not modify other skills or global agent settings. The script reads local files only and does not autonomously invoke network access in its current form.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Coaching」。简介:Coaching practice support with session preparation, question generation, client…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agistack/coaching/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: coaching
description: Coaching practice support with session preparation, question generation, client progress tracking, and goal setting. Use when user mentions coaching sessions, coaching questions, client progress, or coaching goals. Prepares sessions, generates powerful questions, tracks client commitments, supports goal setting with clarity framework, and maintains momentum between sessions. STRICT client confidentiality.
---
# Coaching
Coaching practice system. Transform every session.
## Critical Privacy & Safety
### Data Storage (CRITICAL)
- **All client data stored locally only**: `memory/coaching/`
- **STRICT CONFIDENTIALITY** - client information never shared
- **No cross-client data mixing** - complete isolation
- **No external coaching platforms** connected
- User controls all data retention and deletion
### Safety Boundaries
- ✅ Prepare sessions and generate questions
- ✅ Track client progress and commitments
- ✅ Support goal setting with frameworks
- ✅ Provide between-session support
- ❌ **NEVER share** client information across contexts
- ❌ **NEVER make** client decisions
- ❌ **NEVER replace** coach judgment or intuition
### Confidentiality Note
Coaching effectiveness depends on trust. This skill maintains strict confidentiality - no client data is ever shared, mixed, or exposed outside your local system.
### Data Structure
Coaching data stored locally:
- `memory/coaching/clients.json` - Client records (isolated per client)
- `memory/coaching/sessions.json` - Session history and notes
- `memory/coaching/goals.json` - Client goals and progress
- `memory/coaching/questions.json` - Question libraries
- `memory/coaching/commitments.json` - Client commitments tracking
## Core Workflows
### Prepare Session
```
User: "Prep me for session with client John"
→ Use scripts/prep_session.py --client "John" --session 5
→ Summarize previous session, check commitments, generate tailored questions
```
### Generate Questions
```
User: "Give me questions for exploring career transition"
→ Use scripts/generate_questions.py --topic "career-transition" --depth "deep"
→ Generate powerful questions calibrated to situation
```
### Track Progress
```
User: "Show me Sarah's progress over the last 3 months"
→ Use scripts/track_progress.py --client "Sarah" --period "3months"
→ Display goals, session history, patterns, breakthroughs
```
### Set Goal
```
User: "Help my client set a clear goal"
→ Use scripts/set_goal.py --client "Mike" --area "leadership"
→ Apply clarity, specificity, timeline, obstacles, support framework
```
### Between Sessions
```
User: "Send between-session support to Lisa"
→ Use scripts/between_sessions.py --client "Lisa" --days 3
→ Provide reflection prompts, action reminders, preparation for next session
```
## Module Reference
- **Session Preparation**: See [references/session-prep.md](references/session-prep.md)
- **Powerful Questions**: See [references/questions.md](references/questions.md)
- **Goal Setting Framework**: See [references/goal-setting.md](references/goal-setting.md)
- **Progress Tracking**: See [references/progress.md](references/progress.md)
- **Between-Session Support**: See [references/between-sessions.md](references/between-sessions.md)
- **Client Confidentiality**: See [references/confidentiality.md](references/confidentiality.md)
## Scripts Reference
| Script | Purpose |
|--------|---------|
| `prep_session.py` | Prepare for coaching session |
| `generate_questions.py` | Generate powerful questions |
| `track_progress.py` | Track client progress |
| `set_goal.py` | Set structured goals |
| `between_sessions.py` | Between-session support |
| `log_session.py` | Log session notes |
| `track_commitment.py` | Track client commitments |
| `prepare_review.py` | Prepare progress review |