Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问许可证需确认审计通过

claude-code-learningClaude 代码 learning

Agent Skill

claude-code-learning 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,858

周安装

79

GitHub Stars

520

下载量

651
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:claude-code-learning(Claude 代码 learning)
来源仓库:https://github.com/popup-studio-ai/bkit-claude-code
仓库路径:skills/claude-code-learning
安装命令:
npx skills add https://github.com/popup-studio-ai/bkit-claude-code --skill claude-code-learning
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/popup-studio-ai/bkit-claude-code --skill claude-code-learning

简介

claude-code-learning 用于记录任务执行中的错误、用户纠正和最佳实践,帮助 Agent 持续优化行为。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境,特别适合需要长期学习改进的场景。
  • 通过 learn、setup、upgrade 等命令引导学习流程,支持按级别逐步掌握 Claude Code 功能。
  • 安装前需确认权限范围和维护状态,注意可能涉及文件读写和网络访问操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Claude Code Learning Skill

Master Claude Code configuration and optimization

Actions

ActionDescriptionExample
learnStart learning guide/claude-code-learning learn 1
setupAuto-generate settings/claude-code-learning setup
upgradeLatest features guide/claude-code-learning upgrade

learn [level]

Learning content by level:

  • Level 1: Basics - Writing CLAUDE.md, Using Plan Mode
  • Level 2: Automation - Commands, Hooks, Permission management
  • Level 3: Specialization - Agents, Skills, MCP integration
  • Level 4: Team Optimization - GitHub Action, Team rule standardization
  • Level 5: PDCA Methodology - bkit methodology learning

setup

Auto-generate appropriate settings after analyzing current project:

  1. Analyze/generate CLAUDE.md
  2. Check.claude/ folder structure
  3. Suggest required configuration files

upgrade

Guide to latest Claude Code features and best practices.

Learning Levels

Level 1: Basics (15 min)

## What is CLAUDE.md?

A shared knowledge repository for the team. When Claude makes mistakes,
add rules to prevent the same mistakes from recurring.

## Example

# Development Workflow

## Package Management
- **Always use `pnpm`** (`npm`, `yarn` prohibited)

## Coding Conventions
- Prefer `type`, avoid `interface`
- **Never use `enum`** → Use string literal unions

## Prohibited
- ❌ No console.log (use logger)
- ❌ No any type

Level 2: Automation (30 min)

## What are Slash Commands?

Execute repetitive daily tasks with `/command-name`.

## Command Location

.claude/commands/{command-name}.md

## PostToolUse Hook

Auto-formatting after code modification:

// .claude/settings.local.json
{
  "hooks": {
    "PostToolUse": [{
      "matcher": "Write|Edit",
      "hooks": [{
        "type": "command",
        "command": "pnpm format || true"
      }]
    }]
  }
}

Level 3: Specialization (45 min)

## What are Sub-agents?

AI agents specialized for specific tasks.

## What are Skills?

Domain-specific expert context. Claude auto-references when working on related tasks.

## MCP Integration

Connect external tools (Slack, GitHub, Jira, etc.) via .mcp.json.

Level 4: Team Optimization (1 hour)

## PR Automation with GitHub Action

Mention @claude in PR comments to auto-update documentation.

## Team Rule Standardization

1. Manage CLAUDE.md with Git
2. Add rules during PR review
3. Gradually accumulate team knowledge

## Agent Teams (v1.5.1)

Parallel PDCA execution with multiple AI agents working simultaneously.

Requirements:
  CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1

Usage:
  /pdca team {feature}     Start team mode
  /pdca team status        Check teammate progress
  /pdca team cleanup       End team session

Team composition by level:
  Dynamic:    2 teammates (developer, qa)
  Enterprise: 4 teammates (architect, developer, qa, reviewer)

Level 5: PDCA Methodology

## What is PDCA?

Document-driven development methodology.

Plan → Design → Do → Check → Act

## Folder Structure

docs/
├── 01-plan/      # Planning
├── 02-design/    # Design
├── 03-analysis/  # Analysis
└── 04-report/    # Reports

## Learn More

Use /pdca skill to learn PDCA methodology.

Level 6: Advanced Features (v1.5.1)

## Output Styles

Customize how Claude responds based on your project level.

Available styles:
  bkit-learning     Best for beginners (learning points, TODO markers)
  bkit-pdca-guide   Best for PDCA workflows (status badges, checklists)
  bkit-enterprise   Best for architects (tradeoff analysis, cost impact)

Usage:
  /output-style              Select interactively
  /output-style bkit-learning  Apply directly

Auto-recommendation:
  Starter → bkit-learning
  Dynamic → bkit-pdca-guide
  Enterprise → bkit-enterprise

## Agent Memory

All bkit agents automatically remember context across sessions.
No configuration needed.

Memory scopes:
  project   9 agents remember per-project context (.claude/agent-memory/)
  user      2 agents remember cross-project learning (~/.claude/agent-memory/)

Agents with user-scope memory:
  starter-guide     Remembers your learning progress across projects
  pipeline-guide    Remembers your pipeline preferences globally

## Agent Teams

Parallel PDCA execution for Dynamic and Enterprise projects.
See Level 4 for details.

Output Format

📚 Claude Code Learning Complete!

**Current Level**: {level}
**Learned**: {summary}

🎯 Next Steps:
- Continue learning with /claude-code-learning learn {next_level}
- Auto-generate settings with /claude-code-learning setup
- Check latest trends with /claude-code-learning upgrade

Current Settings Analysis

Files to analyze:

  • CLAUDE.md (root)
  • .claude/settings.local.json
  • .claude/commands/
  • .claude/agents/
  • .claude/skills/
  • .mcp.json

Skills 2.0 Hot Reload (CC 2.1.0+)

CC 2.1.0+ supports hot reload for skill changes. No session restart needed.

Hot Reload Scope

  • SKILL.md body changes: Instant reflection
  • Frontmatter field changes: Instant reflection
  • New skill additions: Instant reflection

Development Workflow

  1. Edit SKILL.md content and save
  2. Next slash invoke reflects changes immediately
  3. Use /reload-plugins for forced refresh

Tips

  • Test with /eval run [skill-name] after changes
  • Use classification frontmatter to categorize skills
  • Monitor with /loop 5m /pdca status for ongoing work

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.09%
按下载量换算215

Claude

32.18%
按下载量换算209

Cursor

17.26%
按下载量换算112

Gemini CLI

8.72%
按下载量换算57

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills