在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用claude-code-customization
Customizing Claude Code with CLAUDE.md
星标1
分支0
更新时间2026年5月25日 21:36
SKILL.md
readonly菜单
Customizing Claude Code with CLAUDE.md
Automated code review with AI agents
Modern AI-assisted development workflow
AI safety and responsible AI practices
Using Claude Code CLI for autonomous development
Advanced Claude Code workflows and automation
Using Cursor IDE with advanced AI features
| name | claude-code-customization |
| description | Customizing Claude Code with CLAUDE.md |
| category | ai |
| tags | ["claude","configuration","customization","project-setup"] |
| models | ["sonnet","opus"] |
| version | 1.0.0 |
| created | "2026-05-14T00:00:00.000Z" |
Tailor Claude Code's behavior per-project using CLAUDE.md configuration files.
# CLAUDE.md — Project Configuration for Claude Code
## Project Overview
E-commerce platform built with Next.js, Prisma, and PostgreSQL.
Uses tRPC for API routes and Zod for validation.
## Code Conventions
- React components: functional with hooks, no class components
- API routes: tRPC routers in src/server/routers/
- Database: Prisma with migrations in prisma/
- Testing: Vitest with React Testing Library
- Types: strict TypeScript, no `any`
## Commands
- Build: `npm run build`
- Test: `npm run test`
- Lint: `npm run lint`
- Dev: `npm run dev`
- Type-check: `npm run typecheck`
## Architecture
- /src/app — Next.js App Router pages
- /src/components — Shared React components
- /src/server — tRPC server routers and middleware
- /prisma — Database schema and migrations
- /public — Static assets
## Preferences
- Use path aliases (@/ for src/)
- Prefer async/await over raw promises
- Use `zod` for all input validation
CLAUDE.md files act as system prompts for Claude Code. Place them at the project root or in subdirectories for scoped configuration. Include project overview, conventions, commands, architecture, and any critical constraints.