Claude Skill
blader/Claudeception
一个用于自主提取和持续学习的Claude Skill,帮助Claude Code通过工作变得更智能。基于Shell实现,拥有1400+星标。
概览
仓库信息
安装这个 Skill
git clone https://github.com/blader/Claudeception.git ~/.claude/skills/claudeceptionRegistry 信息
git clone https://github.com/blader/Claudeception.git ~/.claude/skills/claudeceptiongit 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
话题
暂无话题