@qazuor/claude-code-config 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -16
- package/dist/bin.cjs +4256 -2823
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +4293 -2860
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +195 -425
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +195 -425
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/CLAUDE.md.template +108 -0
package/package.json
CHANGED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
## Project Overview
|
|
4
|
+
|
|
5
|
+
**{{PROJECT_NAME}}** - {{PROJECT_DESCRIPTION}}
|
|
6
|
+
|
|
7
|
+
## Repository
|
|
8
|
+
|
|
9
|
+
- **Organization:** {{ORG}}
|
|
10
|
+
- **Repository:** {{REPO}}
|
|
11
|
+
- **GitHub:** https://github.com/{{ORG}}/{{REPO}}
|
|
12
|
+
{{#if DOMAIN}}
|
|
13
|
+
- **Domain:** {{DOMAIN}}
|
|
14
|
+
{{/if}}
|
|
15
|
+
|
|
16
|
+
## Tech Stack
|
|
17
|
+
|
|
18
|
+
{{#if TECH_STACK}}
|
|
19
|
+
{{TECH_STACK}}
|
|
20
|
+
{{else}}
|
|
21
|
+
**Frontend:**
|
|
22
|
+
- Framework: Not configured
|
|
23
|
+
|
|
24
|
+
**Backend:**
|
|
25
|
+
- API: Not configured
|
|
26
|
+
|
|
27
|
+
**Database:**
|
|
28
|
+
- ORM: Not configured
|
|
29
|
+
|
|
30
|
+
**Testing:**
|
|
31
|
+
- Framework: Not configured
|
|
32
|
+
{{/if}}
|
|
33
|
+
|
|
34
|
+
## Project Structure
|
|
35
|
+
|
|
36
|
+
{{#if PROJECT_STRUCTURE}}
|
|
37
|
+
{{PROJECT_STRUCTURE}}
|
|
38
|
+
{{else}}
|
|
39
|
+
```text
|
|
40
|
+
{{PROJECT_NAME}}/
|
|
41
|
+
├── src/ # Source code
|
|
42
|
+
├── tests/ # Test files
|
|
43
|
+
├── docs/ # Documentation
|
|
44
|
+
└── .claude/ # Claude configuration
|
|
45
|
+
├── agents/ # AI agent definitions
|
|
46
|
+
├── commands/ # Custom slash commands
|
|
47
|
+
├── skills/ # Specialized skills
|
|
48
|
+
└── docs/ # AI-specific documentation
|
|
49
|
+
```
|
|
50
|
+
{{/if}}
|
|
51
|
+
|
|
52
|
+
## Quick Commands
|
|
53
|
+
|
|
54
|
+
{{#if COMMANDS}}
|
|
55
|
+
{{COMMANDS}}
|
|
56
|
+
{{else}}
|
|
57
|
+
```bash
|
|
58
|
+
# Development
|
|
59
|
+
{{PACKAGE_MANAGER}} dev # Start development server
|
|
60
|
+
|
|
61
|
+
# Testing
|
|
62
|
+
{{PACKAGE_MANAGER}} test # Run tests
|
|
63
|
+
{{PACKAGE_MANAGER}} test:coverage # Run tests with coverage
|
|
64
|
+
|
|
65
|
+
# Quality
|
|
66
|
+
{{PACKAGE_MANAGER}} lint # Run linter
|
|
67
|
+
{{PACKAGE_MANAGER}} typecheck # Type checking
|
|
68
|
+
```
|
|
69
|
+
{{/if}}
|
|
70
|
+
|
|
71
|
+
## Development Guidelines
|
|
72
|
+
|
|
73
|
+
### Code Standards
|
|
74
|
+
|
|
75
|
+
- Follow TypeScript best practices
|
|
76
|
+
- Use named exports (no default exports)
|
|
77
|
+
- Maximum 500 lines per file
|
|
78
|
+
- Document all exports with JSDoc
|
|
79
|
+
|
|
80
|
+
### Testing
|
|
81
|
+
|
|
82
|
+
- Write tests first (TDD)
|
|
83
|
+
- Maintain {{COVERAGE_TARGET}}%+ code coverage
|
|
84
|
+
- Use AAA pattern (Arrange, Act, Assert)
|
|
85
|
+
|
|
86
|
+
### Git Workflow
|
|
87
|
+
|
|
88
|
+
- Use conventional commits: `type(scope): description`
|
|
89
|
+
- Types: feat, fix, docs, style, refactor, test, chore
|
|
90
|
+
- Keep commits atomic and focused
|
|
91
|
+
|
|
92
|
+
## Claude Configuration
|
|
93
|
+
|
|
94
|
+
This project uses `@qazuor/claude-code-config` for AI-assisted development.
|
|
95
|
+
|
|
96
|
+
### Available Commands
|
|
97
|
+
|
|
98
|
+
Run `/help` in Claude to see all available commands.
|
|
99
|
+
|
|
100
|
+
### Documentation
|
|
101
|
+
|
|
102
|
+
- Quick Start: `.claude/docs/quick-start.md`
|
|
103
|
+
- Workflows: `.claude/docs/workflows/README.md`
|
|
104
|
+
- Standards: `.claude/docs/standards/`
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
*Generated by [@qazuor/claude-code-config](https://github.com/qazuor/claude-code-config)*
|