claudeos-core 1.0.7 → 1.2.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.

Potentially problematic release.


This version of claudeos-core might be problematic. Click here for more details.

Files changed (44) hide show
  1. package/CHANGELOG.md +84 -1
  2. package/CONTRIBUTING.md +15 -4
  3. package/README.de.md +187 -11
  4. package/README.es.md +187 -11
  5. package/README.fr.md +187 -11
  6. package/README.hi.md +187 -11
  7. package/README.ja.md +186 -10
  8. package/README.ko.md +331 -364
  9. package/README.md +200 -11
  10. package/README.ru.md +187 -11
  11. package/README.vi.md +188 -12
  12. package/README.zh-CN.md +186 -10
  13. package/bin/cli.js +183 -61
  14. package/bootstrap.sh +128 -21
  15. package/content-validator/index.js +131 -60
  16. package/health-checker/index.js +29 -23
  17. package/import-linter/index.js +14 -8
  18. package/manifest-generator/index.js +26 -20
  19. package/package.json +84 -75
  20. package/pass-json-validator/index.js +92 -70
  21. package/pass-prompts/templates/common/header.md +4 -4
  22. package/pass-prompts/templates/common/lang-instructions.json +27 -0
  23. package/pass-prompts/templates/common/pass3-footer.md +2 -3
  24. package/pass-prompts/templates/java-spring/pass1.md +84 -81
  25. package/pass-prompts/templates/java-spring/pass2.md +66 -66
  26. package/pass-prompts/templates/java-spring/pass3.md +60 -60
  27. package/pass-prompts/templates/kotlin-spring/pass1.md +172 -0
  28. package/pass-prompts/templates/kotlin-spring/pass2.md +109 -0
  29. package/pass-prompts/templates/kotlin-spring/pass3.md +98 -0
  30. package/pass-prompts/templates/node-express/pass1.md +73 -73
  31. package/pass-prompts/templates/node-express/pass2.md +66 -66
  32. package/pass-prompts/templates/node-express/pass3.md +53 -53
  33. package/pass-prompts/templates/node-nextjs/pass1.md +68 -68
  34. package/pass-prompts/templates/node-nextjs/pass2.md +61 -61
  35. package/pass-prompts/templates/node-nextjs/pass3.md +48 -48
  36. package/pass-prompts/templates/python-django/pass1.md +78 -78
  37. package/pass-prompts/templates/python-django/pass2.md +69 -69
  38. package/pass-prompts/templates/python-django/pass3.md +45 -45
  39. package/pass-prompts/templates/python-fastapi/pass1.md +76 -76
  40. package/pass-prompts/templates/python-fastapi/pass2.md +67 -67
  41. package/pass-prompts/templates/python-fastapi/pass3.md +45 -45
  42. package/plan-installer/index.js +623 -97
  43. package/plan-validator/index.js +54 -23
  44. package/sync-checker/index.js +25 -14
@@ -1,58 +1,58 @@
1
- claudeos-core/generated/project-analysis.json
2
- claudeos-core/generated/pass2-merged.json 읽고,
3
- 분석 결과를 기반으로 ClaudeOS-Core 파일을 전부 생성해줘.
1
+ Read claudeos-core/generated/project-analysis.json and
2
+ claudeos-core/generated/pass2-merged.json, then
3
+ generate all ClaudeOS-Core files based on the analysis results.
4
4
 
5
- 원본 소스 코드를 다시 읽지 마. 분석 결과만 참조.
5
+ Do not read the original source code again. Reference only the analysis results.
6
6
 
7
- 생성 대상:
7
+ Generation targets:
8
8
 
9
- 1. CLAUDE.md (프로젝트 루트)
10
- - Role 정의 (분석된 스택 기반)
9
+ 1. CLAUDE.md (project root)
10
+ - Role definition (based on detected stack)
11
11
  - Build & Run Commands (pip/poetry, uvicorn, docker)
12
- - 핵심 아키텍처 다이어그램
13
- - 모듈 구조
14
- - Standard/Skills/Guide 참조 테이블
12
+ - Core architecture diagram
13
+ - Module structure
14
+ - Standard/Skills/Guide reference table
15
15
 
16
- 2. claudeos-core/standard/ (활성 도메인만)
17
- - 00.core/01.project-overview.md — 스택, 모듈, 서버 정보
18
- - 00.core/02.architecture.md — 레이어 구조, 요청 흐름, 디렉토리 구조
19
- - 00.core/03.naming-conventions.md — 모듈/스키마/모델/라우터 명명규칙
20
- - 10.backend-api/01.router-endpoint-patterns.md — 라우터 패턴 + 데코레이터
21
- - 10.backend-api/02.schema-pydantic-patterns.md — Pydantic 규칙, 검증
22
- - 10.backend-api/03.data-access-patterns.md — ORM, Repository, 쿼리 최적화
23
- - 10.backend-api/04.response-exception.md — 응답/에러 핸들링 패턴
24
- - 10.backend-api/05.dependency-injection.md — Depends 체인, 라이프사이클
25
- - 10.backend-api/06.middleware-patterns.md — CORS, 커스텀 미들웨어, 순서
16
+ 2. claudeos-core/standard/ (active domains only)
17
+ - 00.core/01.project-overview.md — Stack, modules, server info
18
+ - 00.core/02.architecture.md — Layer structure, request flow, directory structure
19
+ - 00.core/03.naming-conventions.md — Module/schema/model/router naming conventions
20
+ - 10.backend-api/01.router-endpoint-patterns.md — Router patterns + decorators
21
+ - 10.backend-api/02.schema-pydantic-patterns.md — Pydantic conventions, validation
22
+ - 10.backend-api/03.data-access-patterns.md — ORM, Repository, query optimization
23
+ - 10.backend-api/04.response-exception.md — Response/error handling patterns
24
+ - 10.backend-api/05.dependency-injection.md — Depends chain, lifecycle
25
+ - 10.backend-api/06.middleware-patterns.md — CORS, custom middleware, order
26
26
  - 30.security-db/01.security-auth.md — JWT, OAuth2, CORS, Rate Limit
27
- - 30.security-db/02.database-schema.md — Alembic, 스키마 규칙
28
- - 30.security-db/03.common-utilities.md — 공통 유틸, 의존성 함수, 상수
29
- - 40.infra/01.environment-config.md — pydantic-settings, 환경변수
30
- - 40.infra/02.logging-monitoring.md — 로깅 표준, 모니터링
31
- - 40.infra/03.cicd-deployment.md — CI/CD, Docker, uvicorn 배포
32
- - 50.verification/01.development-verification.md — pytest, 기동, API 테스트
33
- - 50.verification/02.testing-strategy.md — 비동기 테스트, 의존성 오버라이드, 모킹
27
+ - 30.security-db/02.database-schema.md — Alembic, schema conventions
28
+ - 30.security-db/03.common-utilities.md — Common utils, dependency functions, constants
29
+ - 40.infra/01.environment-config.md — pydantic-settings, environment variables
30
+ - 40.infra/02.logging-monitoring.md — Logging standards, monitoring
31
+ - 40.infra/03.cicd-deployment.md — CI/CD, Docker, uvicorn deployment
32
+ - 50.verification/01.development-verification.md — pytest, startup, API testing
33
+ - 50.verification/02.testing-strategy.md — Async testing, dependency overrides, mocking
34
34
 
35
- 파일에는 반드시 포함:
36
- - 올바른 예시 (✅ 코드 블록)
37
- - 잘못된 예시 (❌ 코드 블록)
38
- - 핵심 규칙 요약 테이블
35
+ Each file MUST include:
36
+ - Correct examples (✅ code blocks)
37
+ - Incorrect examples (❌ code blocks)
38
+ - Key rules summary table
39
39
 
40
- 3. .claude/rules/ (활성 도메인만)
41
- - 규칙 파일에 paths: frontmatter 포함
42
- - 핵심 규칙 5~10 직접 기술
43
- - @import로 상세 standard 참조
40
+ 3. .claude/rules/ (active domains only)
41
+ - Each rule file must include paths: frontmatter
42
+ - Write 5-10 lines of key rules directly
43
+ - Reference detailed standards via @import
44
44
 
45
- 4. .claude/rules/50.sync/ (동기화 규칙 3개)
45
+ 4. .claude/rules/50.sync/ (3 sync rules)
46
46
  - 01.standard-sync.md
47
47
  - 02.rules-sync.md
48
48
  - 03.skills-sync.md
49
49
 
50
- 5. claudeos-core/skills/ (활성 도메인만)
51
- - 10.backend-crud/01.scaffold-crud-feature.md (오케스트레이터)
52
- - 10.backend-crud/scaffold-crud-feature/01~08 (하위 스킬: model, schema, router, crud, deps, migration, test, index)
53
- - 00.shared/MANIFEST.md (스킬 레지스트리)
50
+ 5. claudeos-core/skills/ (active domains only)
51
+ - 10.backend-crud/01.scaffold-crud-feature.md (orchestrator)
52
+ - 10.backend-crud/scaffold-crud-feature/01~08 (sub-skills: model, schema, router, crud, deps, migration, test, index)
53
+ - 00.shared/MANIFEST.md (skill registry)
54
54
 
55
- 6. claudeos-core/guide/ (전체)
55
+ 6. claudeos-core/guide/ (all)
56
56
  - 01.onboarding/01.overview.md
57
57
  - 01.onboarding/02.quickstart.md
58
58
  - 01.onboarding/03.glossary.md
@@ -63,7 +63,7 @@ claudeos-core/generated/pass2-merged.json을 읽고,
63
63
  - 04.architecture/01.file-map.md
64
64
  - 04.architecture/02.pros-and-cons.md
65
65
 
66
- 7. claudeos-core/plan/ (마스터 플랜)
66
+ 7. claudeos-core/plan/ (Master Plan)
67
67
  - 10.standard-master.md
68
68
  - 20.rules-master.md
69
69
  - 21.sync-rules-master.md
@@ -71,8 +71,8 @@ claudeos-core/generated/pass2-merged.json을 읽고,
71
71
  - 40.guides-master.md
72
72
 
73
73
  8. claudeos-core/database/
74
- - 01.schema-overview.md — 테이블 목록, 관계 설명
75
- - 02.migration-guide.md — Alembic 절차, autogenerate, 롤백
74
+ - 01.schema-overview.md — Table list, relationship description
75
+ - 02.migration-guide.md — Alembic procedure, autogenerate, rollback
76
76
 
77
77
  9. claudeos-core/mcp-guide/
78
- - 01.mcp-overview.md — 사용 중인 MCP 서버 목록, 연동 방법
78
+ - 01.mcp-overview.md — List of MCP servers in use, integration methods