Overview
- Skill Key
- eaveluo/claude-code-setup
- Author
- eaveluo
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/eaveluo/claude-code-setup
- Latest Commit SHA
- 20bc511635dd1476d5d7f26a1dc2432ef358e3b7
Setup production-grade .claude/ AI collaboration layer for projects. Use when an agent starts using Claude Code for development, enters a new project directory, or when user mentions "Claude Code", ".claude config", "AI collaboration layer", or "project standards".
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 claude-code-setup 技能。 若已安装,则直接安装 claude-code-setup 技能。
# Claude Code Setup Setup production-grade \`.claude/\` AI collaboration layer for projects. ## Overview This skill ensures projects have a proper \`.claude/\` configuration before agents start development work with Claude Code. It acts as a supervisor to maintain and enforce project standards. ## Important: Target Project Directory **.claude/ must be created in the target project directory, NOT in your workspace root.** Example: - ❌ Wrong: `/home/user/workspace-xiaolong/.claude/` (workspace root) - ✅ Correct: `/home/user/eave-web/.claude/` (actual project being developed) Always identify which project you're working on first, then check/create `.claude/` in **that** directory. ## When to Use - Starting a new development task with Claude Code - Entering a new project directory - User mentions "Claude Code", ".claude", "AI collaboration layer", or "project standards" ## Workflow ### Step 1 — Check First Always check if \`.claude/\` directory already exists **in the target project directory**: \`\`\`bash ls -la .claude/ 2>/dev/null \`\`\` ### Step 2 — If Missing → Create If the project doesn't have \`.claude/\` directory, **create it first** before development: \`\`\`bash node ~/.openclaw/skills/claude-code-setup/index.js \`\`\` ### Step 3 — If Exists → Supervise If \`.claude/\` already exists: - ✅ **DO NOT overwrite** existing files - ✅ **DO NOT recreate** the structure - ✅ Let Claude Code naturally maintain and update during development ### Step 4 — Be a Supervisor Your role is **supervisor**, not executor: - Ensure Claude Code follows rules in \`.claude/\` - During development, let Claude Code update configs based on actual code - Periodically review if \`.claude/\` content matches the project reality ## Core Principles 1. **CLAUDE.md is core** — Highest priority project instructions 2. **Modular** — Separate rules/skills/context 3. **Clear directives** — Use MUST/ALWAYS/NEVER 4. **Project context** — Must include project overview and t...
# claude-code-setup
为项目创建生产级 `.claude/` AI 协作层配置。
## 快速开始
```bash
# 在项目根目录运行
openclaw skill claude-code-setup
```
## 生成的目录结构
```
.claude/
├── CLAUDE.md # ⭐ 项目级全局指令(最重要)
├── rules/ # 团队规则库
│ ├── frontend.md # React/Vue 组件规范
│ ├── typescript.md # TypeScript 类型规则
│ └── commit.md # Git 提交规范
├── context/ # 项目上下文知识
│ ├── project.md # 项目概述和模块
│ └── stack.md # 技术栈详情
├── skills/ # 项目私有技能
│ └── generate-crud.md # CRUD 生成工作流
└── prompts/ # 可复用 Prompt 模板
└── review.md # 代码审查清单
```
## 核心文件说明
### CLAUDE.md
权重最高的项目指令,Claude Code 每次工作都会优先读取。
**关键内容:**
- AI 角色定义
- 技术栈声明
- 编码规则(MUST/ALWAYS/NEVER)
- 代码生成要求
### rules/
团队硬规则,AI 必须遵守的约束。
**规则示例:**
- `NEVER use any type`
- `ALWAYS include error handling`
- `MUST use functional components`
### context/
项目知识库,让 Claude 真正理解你的项目。
**包含:**
- 项目概述
- 核心模块
- 技术栈详情
### skills/
可复用的工作流模板。
**示例:**
- CRUD 生成流程
- API 设计规范
- 测试编写流程
## 最佳实践
### ✅ 必做
1. **CLAUDE.md 控总规则** - 定义 AI 行为和约束
2. **rules/ 放硬约束** - 使用 MUST/ALWAYS/NEVER
3. **context/ 放项目知识** - 让 AI 理解项目背景
4. **skills/ 放稳定工作流** - 复用最佳实践
### ❌ 避免
1. 写成需求文档或 README
2. 规则太模糊("尽量"、"建议")
3. 只有 CLAUDE.md 没有模块化
4. 缺少项目上下文
5. 写太长废话
## 自定义
编辑生成的文件以适配你的项目:
```bash
# 修改 CLAUDE.md 添加项目特定规则
vim .claude/CLAUDE.md
# 添加新的规则
vim .claude/rules/backend.md
# 添加项目特定的技能
vim .claude/skills/generate-api.md
```
## 与其他工具对比
| 目录 | 作用 |
|------|------|
| `.vscode/` | 编辑器配置 |
| `.github/` | CI/CD 和 PR 模板 |
| `.cursor/` | Cursor IDE 配置 |
| **`.claude/`** | **Claude Code AI 行为中枢**...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.