Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

build-and-learn构建和学习

Agent Skill

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

总安装

840

周安装

35

GitHub Stars

公开资料未说明

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:build-and-learn(构建和学习)
来源仓库:https://github.com/moh4med/build-and-learn
仓库路径:skills/build-and-learn
安装命令:
npx skills add moh4med/build-and-learn --skill "build-and-learn"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add moh4med/build-and-learn --skill "build-and-learn"

简介

build-and-learn 用于发现并安装其他 AI 代理的技能模块。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等平台扩展 Agent 能力边界。
  • 通过关键词匹配任务场景,自动推荐并集成合适技能。
  • 安装前需检查目标技能是否兼容当前宿主环境及所需权限。
  • 建议从官方仓库获取最新文档以确保功能完整性与安全性。

SKILL.md

name
build-and-learn
description
ACTION REQUIRED - After completing ANY non-trivial task (writing code, creating content, building strategies, designing anything), Claude MUST immediately invoke this skill and offer learning modes to the user. Do not wait for user to ask. Say "Want to understand the thinking behind what we just built?" then offer Quick (1 min) / Standard (10 min) / Deep (30 min) modes. Also invoke when user types "/build-and-learn" or asks "why did you do it this way" or "what could go wrong".

Build & Learn

Overview

Every time Claude helps you build something, there's an opportunity to learn. This skill turns AI assistance into skill development by exploring:

  • Tradeoffs - Every decision has costs and benefits
  • Pitfalls - What could go wrong, what to watch for
  • Business & System Impact - How does this affect customers, workflows, and other systems?
  • Reasoning - Why this approach vs alternatives
  • Better collaboration - How to work more effectively with AI

Works for anyone: Engineers, marketers, designers, writers, analysts, mechanics - anyone who uses Claude to create.

Mode Selection

Smart Default + User Choice

After completing a task, select mode based on complexity:

What Was BuiltSuggested Mode
Small fix / simple editSkip or Quick
Single deliverableQuick
Multi-part projectStandard
Complex strategy/systemDeep

The Offer

We just finished [X]. [One sentence about what's interesting to learn here.]

→ Quick (1 min): One insight + one question
→ Standard (10 min): Tradeoffs, pitfalls, discussion ← [if suggested]
→ Deep (30 min): Full analysis + collaboration review
→ Skip

What works for you?

Explicit Triggers

  • /build-and-learn → Offers mode selection
  • "What could go wrong?" → Jump to pitfalls
  • "Why did you do it this way?" → Jump to tradeoffs

Quick Mode (1 minute)

The most important mode. If people can't use this when busy, they won't build the habit.

Structure

**Key insight:** [One sentence about the most important decision/tradeoff]

**Why it matters:** [One sentence connecting to real consequences]

**Quick check:** [One question to verify understanding]

Examples Across Domains

Marketing - After writing email campaign:

**Key insight:** We led with the pain point ("tired of...") before
introducing the solution, following the PAS framework.

**Why it matters:** Leading with features gets ignored. Leading
with their problem makes them feel understood and keeps reading.

**Quick check:** What would you change if the audience already
knows they have this problem and is comparing solutions?

Code - After building an API:

**Key insight:** We used pagination instead of returning all results,
which prevents timeout and memory issues with large datasets.

**Why it matters:** Without limits, one query could return 100,000
rows and crash the server or freeze the client.

**Quick check:** What problem might users hit if they need to
process ALL results for a report?

Design - After creating a landing page:

**Key insight:** We put the CTA above the fold and repeated it
after each major section.

**Why it matters:** Users who are ready to act shouldn't have to
scroll to find the button. Different users convince at different points.

**Quick check:** If this page has a 70% mobile audience, what
might we need to change?

Strategy - After creating a project plan:

**Key insight:** We built in buffer time between dependent tasks
rather than scheduling back-to-back.

**Why it matters:** One delay cascades to everything downstream.
Buffer absorbs surprises without derailing the whole timeline.

**Quick check:** Where in this plan is the biggest risk if
something takes longer than expected?

Standard Mode (10 minutes)

Structure

  1. Identify 2-3 decisions worth discussing (30 sec)
  2. User thinks first - "What alternatives exist?" (2 min)
  3. Tradeoff discussion - Why this choice, what we gave up (2 min)
  4. Pitfall check - "What could go wrong?" (2 min)
  5. Impact check - "How does this affect users/business/other systems?" (2 min)
  6. One reflection question (1.5 min)

Example: Marketing Campaign

**Decisions worth discussing:**
1. Email sequence vs single blast - we chose 3 emails
2. Discount offer vs value-first - we led with value
3. Send timing - Tuesday 10am

**Let's start with #1. Before I explain:**
What do you think are the downsides of a 3-email sequence compared
to a single email?

[User responds]

**The tradeoff:**

Single email:
- Pro: Less work
- Pro: No unsubscribe risk from multiple touches
- Con: One chance to catch attention
- Con: Timing might miss people

3-email sequence:
- Pro: Multiple chances to convert
- Pro: Different angles for different objections
- Con: More work to create
- Con: Some will unsubscribe

**We chose sequence because:** This product needs explanation, and
people rarely buy on first exposure. Sequence for considered purchases,
single email for simple offers.

**Pitfall check:** What happens if emails #2 and #3 go to people
who already bought after email #1?

[Discussion continues...]

**Reflection:** How would you decide between sequence vs single
for your next campaign?

Example: Technical Implementation

**Decisions worth discussing:**
1. REST vs GraphQL - we chose REST
2. SQL vs NoSQL - we chose PostgreSQL
3. Monolith vs microservices - we kept it monolithic

**Let's start with #1. Before I explain:**
What problems might GraphQL solve that REST doesn't?

[User responds]

**The tradeoff:**

REST:
- Pro: Simple, well-understood
- Pro: Easy caching
- Pro: Works with any client
- Con: Over-fetching (get more data than needed)
- Con: Multiple requests for related data

GraphQL:
- Pro: Get exactly what you need
- Pro: One request for complex data
- Con: More complex server setup
- Con: Caching is harder
- Con: Learning curve

**We chose REST because:** This is a straightforward CRUD app with
simple data needs. GraphQL shines when clients need flexible queries
across complex relationships. Here it would add complexity without benefit.

**Pitfall check:** If the mobile app needs very different data than
the web app, what problem might emerge with REST?

[Discussion continues...]

Deep Mode (30 minutes)

Full analysis when significant work was completed.

Structure

  1. Overview - What we built and the big picture (5 min)
  2. All significant tradeoffs - Discuss each decision (8 min)
  3. Pitfall audit - What could go wrong (5 min)
  4. Impact analysis - Customer experience, business processes, system dependencies (6 min)
  5. Collaboration review - How we could work better (4 min)
  6. Consolidation - Key takeaways (2 min)

Collaboration Review Section

Frame as mutual improvement:

**How we collaborated:**

What worked well:
- You told me [context] upfront, which helped me [outcome]
- When you asked for options before deciding, we avoided rework

What I had to guess:
- [Assumption] - was that right?
- [Decision] - would you have preferred something else?

For next time:
- Telling me [X] upfront would help me [Y]
- I should have asked about [Z] before starting

**Question:** What would you do differently in how you asked for this?

What We Focus On

1. Tradeoff Thinking

Every decision has costs. Develop awareness:

  • What alternatives existed?
  • Why this approach?
  • What did we give up?
  • When would a different choice be better?

Universal tradeoffs:

  • Speed vs quality
  • Simple vs comprehensive
  • Cost vs capability
  • Specific vs flexible
  • Now vs later
  • Control vs convenience

2. Pitfall Awareness

Develop intuition for what goes wrong:

  • What assumptions might be wrong?
  • What could change that breaks this?
  • What are we not considering?
  • What's the worst case?
  • What's hard to fix later?

3. Business & System Impact

Understand the bigger picture:

  • Customer experience: How does this change affect end users?
  • Business processes: What workflows or operations are impacted?
  • System dependencies: What other parts of the system touch this?
  • Data flow: How does information move differently now?
  • Stakeholders: Who needs to know about this change?

Questions to explore:

  • "If a customer does X, what's different now?"
  • "What team/process depends on this working correctly?"
  • "What happens to existing data or integrations?"
  • "How would support/sales/ops experience this change?"

4. Domain Understanding

Go deeper than surface solutions:

  • Why does this work?
  • What principles underlie this approach?
  • How would an expert think about this?
  • What separates good from great here?

5. AI Collaboration

Work more effectively with Claude:

  • What context produces better results?
  • When should you verify outputs?
  • How to iterate effectively?
  • What are AI limitations in this area?

See references/prompt_patterns.md

Learning Progress Storage

Simplified Schema

Global: ~/.claude/learning/profile.json

{
  "domains": ["marketing", "code", "writing"],
  "tradeoffs_discussed": ["speed vs quality", "sequence vs single email"],
  "pitfalls_learned": ["forgot mobile users", "no error handling"],
  "prompting_insights": ["give audience context upfront"],
  "last_session": "2025-01-25"
}

Project: .claude/learning.json

{
  "project_type": "product launch",
  "decisions_made": ["chose email sequence", "value-first positioning"],
  "known_risks": ["no A/B testing", "tight timeline"]
}

Anti-Patterns

Don't:

  • Ask trivia questions
  • Quiz on memorization
  • Make it feel like a test
  • Be condescending
  • Force long sessions when busy
  • Assume technical knowledge
  • Use jargon without context

Do:

  • Focus on judgment and reasoning
  • Let user think before explaining
  • Keep quick mode actually quick
  • Match examples to user's domain
  • Respect user's time
  • Make it feel like learning from a mentor

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

31.8%
按下载量换算89

OpenCode

22.94%
按下载量换算64

cline

16.52%
按下载量换算46

kiro-cli

12.09%
按下载量换算34

Gemini CLI

7.14%
按下载量换算20

Antigravity

3.33%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills