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.
- package/CHANGELOG.md +84 -1
- package/CONTRIBUTING.md +15 -4
- package/README.de.md +187 -11
- package/README.es.md +187 -11
- package/README.fr.md +187 -11
- package/README.hi.md +187 -11
- package/README.ja.md +186 -10
- package/README.ko.md +331 -364
- package/README.md +200 -11
- package/README.ru.md +187 -11
- package/README.vi.md +188 -12
- package/README.zh-CN.md +186 -10
- package/bin/cli.js +183 -61
- package/bootstrap.sh +128 -21
- package/content-validator/index.js +131 -60
- package/health-checker/index.js +29 -23
- package/import-linter/index.js +14 -8
- package/manifest-generator/index.js +26 -20
- package/package.json +84 -75
- package/pass-json-validator/index.js +92 -70
- package/pass-prompts/templates/common/header.md +4 -4
- package/pass-prompts/templates/common/lang-instructions.json +27 -0
- package/pass-prompts/templates/common/pass3-footer.md +2 -3
- package/pass-prompts/templates/java-spring/pass1.md +84 -81
- package/pass-prompts/templates/java-spring/pass2.md +66 -66
- package/pass-prompts/templates/java-spring/pass3.md +60 -60
- package/pass-prompts/templates/kotlin-spring/pass1.md +172 -0
- package/pass-prompts/templates/kotlin-spring/pass2.md +109 -0
- package/pass-prompts/templates/kotlin-spring/pass3.md +98 -0
- package/pass-prompts/templates/node-express/pass1.md +73 -73
- package/pass-prompts/templates/node-express/pass2.md +66 -66
- package/pass-prompts/templates/node-express/pass3.md +53 -53
- package/pass-prompts/templates/node-nextjs/pass1.md +68 -68
- package/pass-prompts/templates/node-nextjs/pass2.md +61 -61
- package/pass-prompts/templates/node-nextjs/pass3.md +48 -48
- package/pass-prompts/templates/python-django/pass1.md +78 -78
- package/pass-prompts/templates/python-django/pass2.md +69 -69
- package/pass-prompts/templates/python-django/pass3.md +45 -45
- package/pass-prompts/templates/python-fastapi/pass1.md +76 -76
- package/pass-prompts/templates/python-fastapi/pass2.md +67 -67
- package/pass-prompts/templates/python-fastapi/pass3.md +45 -45
- package/plan-installer/index.js +623 -97
- package/plan-validator/index.js +54 -23
- 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
|
-
|
|
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,
|
|
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
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
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/ (
|
|
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 (
|
|
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
|
|
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 —
|
|
78
|
+
- 01.mcp-overview.md — List of MCP servers in use, integration methods
|