-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude-config.yaml
More file actions
49 lines (41 loc) · 916 Bytes
/
Copy pathclaude-config.yaml
File metadata and controls
49 lines (41 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Morse Learning System - Claude Universal Config
name: morse-learning-system
version: 1.0.0
# 言語選択
languages:
- python
- typescript
# バックエンドフレームワーク
backend:
- fastapi
# フロントエンドフレームワーク
frontend:
- react
# インフラ
infrastructure:
- docker
# ドメイン固有スキル
domains:
- web-security
# エージェント有効化
agents:
code-reviewer:
enabled: true
contexts: [python, typescript, fastapi, react]
custom_checks:
- "SQLite queries are parameterized (no SQL injection)"
- "Response time data is stored in milliseconds"
- "Database schema follows normalization principles"
tdd-guide:
enabled: true
contexts: [python, typescript]
security-reviewer:
enabled: true
contexts: [web-security]
# コマンド有効化
commands:
- review
- tdd
- test
- debug
- feature