Claude Skill

blader/Claudeception

一个用于自主提取和持续学习的Claude Skill,帮助Claude Code通过工作变得更智能。基于Shell实现,拥有1400+星标。

概览

Stars1,426
Forks134
语言Shell
最后更新2026-01-22
最近同步2026-06-02
前往 GitHub

仓库信息

拥有者blader
仓库Claudeception
完整名称blader/Claudeception
Repo ID1,136,478,079

安装这个 Skill

git clone https://github.com/blader/Claudeception.git ~/.claude/skills/claudeception

Registry 信息

类型openclaw_skill
质量分75/100
验证状态readme_parsed
最近验证2026-06-02
平台
Claude
能力
browserpdfsearchterminal
识别文件
README.mdSKILL.mdexamples
安装方式
  • git clone https://github.com/blader/Claudeception.git ~/.claude/skills/claudeception
  • git clone https://github.com/blader/Claudeception.git .claude/skills/claudeception

项目简介

Claudeception是一个用于自主技能提取和持续学习的Claude Skill,让Claude Code在工作中不断变得更智能。

英文描述

A Claude Code skill for autonomous skill extraction and continuous learning. Have Claude Code get smarter as it works.

要点

  • 自主技能提取
  • 持续学习能力
  • 基于Shell实现
  • 专为Claude Code增强设计
  • 自我改进系统

使用场景

  • 从代码库自动获取技能
  • 持续改进编码助手
  • 知识提取与组织
  • AI助手能力增强
  • 从开发工作流中学习

README 摘要

# Claudeception Every time you use an AI coding agent, it starts from zero. You spend an hour debugging some obscure error, the agent figures it out, session ends. Next time you hit the same issue? Another hour. This skill fixes that. When Claude Code discovers something non-obvious (a debugging technique, a workaround, some project-specific pattern), it saves that knowledge as a new skill. Next time a similar problem comes up, the skill gets loaded automatically. ## Installation ### Step 1: Clone the skill **User-level (recommended)** ```bash git clone https://github.com/blader/Claudeception.git ~/.claude/skills/claudeception ``` **Project-level** ```bash git clone https://github.com/blader/Claudeception.git .claude/skills/claudeception ``` ### Step 2: Set up the activation hook (recommended) The skill can activate via semantic matching, but a hook ensures it evaluates every session for extractable knowledge. #### User-level setup (recommended) 1. Create the hooks directory and copy the script: ```bash mkdir -p ~/.claude/hooks cp ~/.claude/skills/claudeception/scripts/claudeception-activator.sh ~/.claude/hooks/ chmod +x ~/.claude/hooks/claudeception-activator.sh ``` 2. Add the hook to your global Claude settings (`~/.claude/settings.json`): ```json { "hooks": { "UserPromptSubmit": [ { "hooks": [ { "type": "command", "command": "~/.claude/hooks/claudeception-activator.sh" } ] } ] } } ``` #### Project-level setup 1. Create the hooks directory inside your project and copy the script: ```bash mkdir -p .claude/hooks cp .claude/skills/claudeception/scripts/claudeception-activator.sh .claude/hooks/ chmod +x .claude/hooks/claudeception-activator.sh ``` 2. Add the hook to your

话题

暂无话题

探索更多

数据来自 GitHub,同步时间:2026-06-02