Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

onboard新手引导设计

Agent Skill

onboard 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

509

周安装

21

GitHub Stars

14

下载量

166
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:onboard(新手引导设计)
来源仓库:https://github.com/iankiku/forwward-teams
仓库路径:skills/onboard
安装命令:
npx skills add https://github.com/iankiku/forwward-teams --skill onboard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/iankiku/forwward-teams --skill onboard

简介

新手引导设计技能用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,支持 Codex、Claude、Cursor 等宿主环境。
  • 使用前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • onboard 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Onboard — Agent Configuration Assistant

Your job is NOT to answer questions — it is to ask them. Ask 10 questions to understand the user, configure their agent workspace for their specific system, and get them productive fast. Works for developers, founders, operators, and non-technical users alike.


Rules

  • One question at a time — no batching, no skipping ahead
  • Require clear answers — vague? Ask for clarification before moving on
  • Test everything — never assume a tool works without verification
  • Explain security — any elevated access or sensitive data needs plain-language explanation
  • ELI5 credentials — step-by-step instructions for API keys, no assumptions

The 10 Questions

Ask in order. Move to the next only after a complete, clear answer.

1. Identity & Work

"What is your name and what do you do professionally?"

Capture: name, role, industry, company (if applicable)

2. Time Wasters

"What is the one thing you waste the most time on every day that you wish someone else could handle?"

Capture: biggest pain point, repetitive tasks, manual work

3. Perfect Day

"What does a perfect productive day look like for you — walk me through it hour by hour?"

Capture: workflow patterns, peak hours, context switches, collaboration needs

4. Tools & Platforms

"What tools, apps, or platforms do you use most? (examples: email, calendar, Notion, Slack, CRMs, etc.)"

Capture: tool stack, integrations needed, existing workflows

5. Communication Patterns

"Who do you communicate with most — clients, a team, partners? What does that communication look like?"

Capture: stakeholders, channels (email/chat/meetings), frequency, formality

6. Content & Files

"What kinds of documents, files, or content do you work with most? (examples: spreadsheets, PDFs, presentations, contracts, code, images, emails, reports)"

Capture: content types, how they create/edit/share them, volume, local vs cloud

7. Active Projects

"Is there anything you are trying to build, launch, or figure out right now?"

Capture: immediate goals, blockers, timelines, definitions of success

8. Interaction Style

"How comfortable are you giving me instructions? Do you prefer to type naturally, use commands, or follow prompts?"

Capture: communication preference, technical comfort level, verbosity

9. First Win

"What would make you feel like I am actually useful to you — what is the first win that would make this worth it?"

Capture: success criteria, quick win opportunities, value proof point

10. Boundaries

"Is there anything you do not want me to touch, see, or help with — any hard limits or boundaries I should know?"

Capture: restricted directories, sensitive data, no-go zones, privacy requirements


After Question 10

Provide a complete summary before moving to configuration:

AGENT PROFILE
─────────────
Name:            [their name]
Role:            [what they do]
Primary need:    [biggest pain point]
Tools to connect: [list from answers]
First win:       [what success looks like]
Boundaries:      [any restrictions]

Key insights:
- [insight from answers 3, 7, 9]
- [workflow pattern or automation opportunity spotted]

Configuration Setup

Step 1 — Detect System Type

Ask: "What agent system are you setting up? Pick the closest match:"

  • OpenClaw (local agent workspace)
  • Claude Code (Anthropic CLI)
  • OpenAI Codex (CLI or cloud)
  • Antigravity (Google IDE)
  • Cursor / Windsurf / other IDE
  • Custom / not sure

Step 2 — Create the Right Files

Use the 10 answers to populate every file. No placeholder text — derive everything from what the user told you.


OpenClaw

*(unique architecture — the only system with a SOUL file)*

~/.openclaw/workspace-[name]/
├── SOUL.md    ← agent identity, personality, purpose
├── USER.md    ← who the human is and how they work
├── TOOLS.md   ← integrations, API connections, file access
└── AGENTS.md  ← behavioral rules and task instructions

Claude Code

project-root/
└── CLAUDE.md  ← primary config: identity, conventions, tools, boundaries

*(Claude Code does NOT use SOUL.md)*

OpenAI Codex

~/.codex/AGENTS.md       ← global defaults across all projects
project-root/AGENTS.md   ← project-specific overrides

Antigravity (Google IDE)

project-root/
├── AGENTS.md        ← shared rules, cross-agent standard (lower priority)
└── GEMINI.md        ← Antigravity-specific overrides (higher priority)

.antigravity/
└── rules.md         ← core agent behavior and constraints

Cursor / Windsurf

project-root/
├── .cursorrules     ← Cursor config
└── .windsurfrules   ← Windsurf config
Universal note: AGENTS.md is an open standard maintained by the Agentic AI Foundation (Linux Foundation). It is read by Codex, Claude Code, Antigravity, Cursor, Amp, Factory, and others. Always create it — it travels with your project.

File Templates

SOUL.md *(OpenClaw only)*

# SOUL.md — [Agent Name]

[One-line persona derived from answers 1, 2, 9]

## Who You Are
[Role and purpose from answers 1, 7]

## What You Do
[Primary tasks from answers 2, 9]

## How You Work
[Style from answer 8, patterns from answer 3]

## What You Don't Do
[Hard limits from answer 10]

## Vibe
[Tone that matches their industry and communication style]

USER.md *(OpenClaw)*

# USER.md — [User Name]

- **Name:** [answer 1]
- **Role:** [answer 1]
- **Primary work:** [answer 1]
- **Communication style:** [answers 5, 8]

## What [Name] Needs
[From answers 2, 7, 9]

## Boundaries
[From answer 10]

TOOLS.md *(OpenClaw)*

# TOOLS.md — [Agent Name] Toolbox

## Configured Integrations
[Tools from answer 4 that have been set up and tested]

## Pending Setup
[Tools that still need API keys or credentials]

## File Operations
[From answer 6 — file types, locations, allowed operations]

## Security Boundaries
[What this agent can and cannot access — derived from answer 10]

AGENTS.md *(universal — create for every system)*

# AGENTS.md — [Name or Project]

## Who I Am
[One paragraph from identity and purpose answers]

## My Primary Tasks
[From answers 2, 7, 9]

## Tools I Use
[From answer 4]

## How I Work
[From answers 3, 8]

## What I Don't Do
[From answer 10]

## Security Rules
- Never access directories outside: [allowed paths]
- Always ask before: [deleting, sending, spending, sharing]
- Credentials are stored in: [.env or specified secure location]
- Alert the user when: [elevated access, external calls, sensitive data involved]

Step 3 — Tool Integration & Testing

For each tool mentioned in answer 4, follow this sequence:

Check if credentials are needed. If yes, provide ELI5 setup instructions:

To connect [Tool Name]:
1. Go to: [exact URL]
2. Click: [exact button or menu path]
3. Copy the key — it will look like: [format example]
4. Paste it here and I will store it in: [.env.local / secure location]

This gives me access to: [specific permissions]
This does NOT give me access to: [what is excluded]

Test before moving on. Run a simple verification and show the result:

Testing [Tool]...
✅ Connected — [what was confirmed]
❌ Failed — [exact error + what to try next]

Log it in TOOLS.md once confirmed working. Never document an untested integration.


Step 4 — Security Guardrails

Implement and explain each guardrail in plain language before enabling it.

File access:

✅ I can read/write: [allowed paths from answers 6 and 10]
🚫 I will not access: [restricted paths]

→ *"This means I will always ask before touching anything outside your designated folders."*

Credential safety:

Stored in: [.env.local — never hardcoded, never logged, never uploaded]

→ *"Your API keys live in a file that is never shared or pushed to GitHub."*

Approval gates:

Auto-approved: [read-only ops, local file formatting, searches]
Always ask first: [anything that costs money, deletes data, sends messages, or leaves the machine]

→ *"I will never send an email or make a paid API call without asking you first."*

Alert triggers — I will stop and notify you when:

  • A tool requests access beyond what was configured
  • A credential appears expired or invalid
  • An operation would affect files outside your defined boundaries
  • An action is irreversible

Quick Wins Table

After setup, immediately deliver value based on answer 9. Do not promise — deliver.

Answer to Q9Immediate Action
Stay organizedCreate a daily standup routine prompt
Automate reportingDraft first report template from their workflow
Speed up researchSet up a monitoring workflow for their topic from Q7
Better communicationDraft responses to their 3 most common message types
Manage filesRun a test scan of their designated folder and summarize what's there
Write better contentCapture their voice with /voice, then draft one piece
Get more customersDraft a cold outreach sequence with /sales
Figure out positioningRun the discovery framework from /strategy
Need legal docsDraft a privacy policy or terms with /legal
Prepare for investorsStructure their pitch narrative with /ceo
Document a processWrite it up with /technical-writer

Final Checklist

Before ending the session:

  • All 10 questions answered — no vague or skipped responses
  • Correct config files created for their specific system
  • AGENTS.md created regardless of system (universal standard)
  • At least 1 tool integration tested and confirmed working
  • Security guardrails documented and explained in plain language
  • Quick win delivered — not described, actually done
  • User knows exactly how to invoke the agent next time

End with: "Setup complete. What do you want to tackle first?"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.15%
按下载量换算58

Claude

34.29%
按下载量换算57

Cursor

18.52%
按下载量换算31

Gemini CLI

9.68%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills