codex-genesis-harness 0.1.6 → 0.1.7
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/.codebase/CURRENT_STATE.md +8 -7
- package/.codebase/RECOVERY_POINTS.md +38 -393
- package/.codebase/beads.json +16 -0
- package/.codex/skills/genesis-ai-provider/SKILL.md +1 -1
- package/.codex/skills/genesis-api-contract/SKILL.md +1 -1
- package/.codex/skills/genesis-api-sync/SKILL.md +1 -1
- package/.codex/skills/genesis-architecture/SKILL.md +1 -1
- package/.codex/skills/genesis-codebase-map/SKILL.md +1 -1
- package/.codex/skills/genesis-debug-guide/SKILL.md +1 -1
- package/.codex/skills/genesis-design-spec/SKILL.md +3 -3
- package/.codex/skills/genesis-harness/SKILL.md +3 -2
- package/.codex/skills/genesis-harness-engineering/SKILL.md +1 -1
- package/.codex/skills/genesis-new-design/SKILL.md +2 -1
- package/.codex/skills/genesis-pipeline-orchestration/SKILL.md +1 -1
- package/.codex/skills/genesis-planning/SKILL.md +26 -1
- package/.codex/skills/genesis-release/SKILL.md +24 -1
- package/.codex/skills/{ui-ux-test-skill → genesis-ui-ux-test}/SKILL.md +1 -1
- package/CHANGELOG.md +14 -0
- package/README.EN.md +7 -11
- package/README.VI.md +9 -13
- package/README.md +10 -10
- package/VERSION +1 -1
- package/bin/genesis-harness.js +606 -6
- package/package.json +1 -1
- package/scripts/install.sh +2 -6
- package/scripts/run-evals.sh +20 -25
- package/scripts/uninstall.sh +2 -6
- package/scripts/verify.sh +6 -66
- package/.codex/skills/genesis-docs/SKILL.md +0 -46
- package/.codex/skills/genesis-docs/agents/openai.yaml +0 -7
- package/.codex/skills/genesis-mvp-planning/SKILL.md +0 -114
- package/.codex/skills/genesis-mvp-planning/agents/openai.yaml +0 -6
- package/.codex/skills/genesis-release-orchestration/SKILL.md +0 -653
- package/.codex/skills/genesis-release-orchestration/agents/openai.yaml +0 -7
- package/.codex/skills/genesis-research/SKILL.md +0 -46
- package/.codex/skills/genesis-research/agents/openai.yaml +0 -7
- /package/.codex/skills/{genesis-docs/checklists/checklist.md → genesis-docs-automation/checklists/manual-docs-checklist.md} +0 -0
- /package/.codex/skills/{genesis-docs/examples/example.md → genesis-docs-automation/examples/manual-docs-example.md} +0 -0
- /package/.codex/skills/{genesis-docs → genesis-docs-automation}/templates/docs-update-template.md +0 -0
- /package/.codex/skills/{genesis-state-machine/SKILL.md → genesis-harness/references/state-machine.md} +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/checklists/mvp-readiness.md +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/examples/5-phase-roadmap-example.md +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/templates/phase-1-core.md +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/templates/phase-2-auth.md +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/templates/phase-3-features.md +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/templates/phase-4-integrations.md +0 -0
- /package/.codex/skills/{genesis-mvp-planning → genesis-planning}/templates/phase-5-readiness.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/checklists/post-deployment-verification.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/checklists/pre-release-validation.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration/examples/example.md → genesis-release/examples/orchestration-example.md} +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/observability/release-tracking.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/playbooks/canary-deployment-orchestration.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/playbooks/semantic-versioning-automation.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/templates/deployment-strategy-template.md +0 -0
- /package/.codex/skills/{genesis-release-orchestration → genesis-release}/templates/release-runbook-template.md +0 -0
- /package/.codex/skills/{genesis-research → genesis-research-first}/checklists/checklist.md +0 -0
- /package/.codex/skills/{genesis-research/examples/example.md → genesis-research-first/examples/manual-research-example.md} +0 -0
- /package/.codex/skills/{genesis-research → genesis-research-first}/templates/research-note-template.md +0 -0
- /package/.codex/skills/{ui-ux-test-skill → genesis-ui-ux-test}/agents/openai.yaml +0 -0
- /package/.codex/skills/{ui-ux-test-skill → genesis-ui-ux-test}/checklists/checklist.md +0 -0
- /package/.codex/skills/{ui-ux-test-skill → genesis-ui-ux-test}/examples/example.md +0 -0
- /package/.codex/skills/{ui-ux-test-skill → genesis-ui-ux-test}/templates/playwright-test-template.md +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: planning
|
|
2
|
+
name: genesis-planning
|
|
3
3
|
description: Create decision-complete plans for Codex harness work, including tests, fixtures, contracts, memory updates, verification, and recovery. Use for new features, refactors, bug fixes, audits, or multi-phase autonomous work.
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -44,3 +44,28 @@ Planning implementation before tests, omitting fixtures, and leaving verificatio
|
|
|
44
44
|
## Recovery workflow
|
|
45
45
|
If a plan becomes invalid, update the failing test and fixture first, then revise phases.
|
|
46
46
|
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 🏗️ 5-Phase MVP Roadmap Standards
|
|
50
|
+
|
|
51
|
+
When decomposing large-scale features or initializing new project modules, you must enforce the **5-Phase MVP Roadmap Standard** using the provided templates:
|
|
52
|
+
|
|
53
|
+
1. **Phase 1: Core Foundation & Base Setup** (Templates: `phase-1-core.md`, `phase-2-auth.md`)
|
|
54
|
+
- Establish environment skeletons, base CLI arguments, dependency configurations, and contract JSON structures.
|
|
55
|
+
- Core DB migrations, model schemes, and basic configurations.
|
|
56
|
+
2. **Phase 2: Contract-First & Skeletal Tests** (Template: `phase-3-features.md`)
|
|
57
|
+
- Compile exhaustive contract endpoints (`contracts/api/`) and mock fixture skeletons (`fixtures/api/`).
|
|
58
|
+
- Auto-generate test skeletons in `tests/integration/` (RED state).
|
|
59
|
+
3. **Phase 3: Logic Implementation & Self-Healing** (Template: `phase-3-features.md`)
|
|
60
|
+
- Implement minimal code handlers, controllers, or service endpoints.
|
|
61
|
+
- Execute closed-loop Verify-Fix cycles autonomously until all tests turn GREEN.
|
|
62
|
+
4. **Phase 4: Multi-Agent & External Integrations** (Template: `phase-4-integrations.md`)
|
|
63
|
+
- Wire up external components, API sync triggers, or media providers.
|
|
64
|
+
5. **Phase 5: E2E Visual QA & Release Readiness** (Template: `phase-5-readiness.md`)
|
|
65
|
+
- Execute full Playwright E2E smoke tests, visual regression checks, and packaging checklists.
|
|
66
|
+
|
|
67
|
+
### Related Planning Assets
|
|
68
|
+
* **Checklist**: `checklists/mvp-readiness.md`
|
|
69
|
+
* **Example**: `examples/5-phase-roadmap-example.md`
|
|
70
|
+
* **Templates**: `templates/phase-1-core.md`, `phase-2-auth.md`, `phase-3-features.md`, `phase-4-integrations.md`, `phase-5-readiness.md`
|
|
71
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: release
|
|
2
|
+
name: genesis-release
|
|
3
3
|
description: Prepare Codex harness package releases with version checks, package dry-runs, npm publish readiness, release notes, verification evidence, and rollback notes. Use before publishing or tagging releases.
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -44,3 +44,26 @@ Publishing cache files, missing executable scripts, and omitting npm 2FA/token r
|
|
|
44
44
|
## Recovery workflow
|
|
45
45
|
If publish fails, capture error, update known problems, do not change version until root cause is fixed.
|
|
46
46
|
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 🚀 Automated Release & Deployment Orchestration
|
|
50
|
+
|
|
51
|
+
This skill incorporates the **Release & Deployment Orchestration Standard** to manage production-ready releases and rollbacks using the provided templates and playbooks:
|
|
52
|
+
|
|
53
|
+
1. **Release Checklists** (`checklists/pre-release-validation.md`, `checklists/post-deployment-verification.md`)
|
|
54
|
+
- Mandatory gates before staging/production merges.
|
|
55
|
+
- Comprehensive post-deployment validations (health checks, API connectivity).
|
|
56
|
+
2. **Release Playbooks** (`playbooks/semantic-versioning-automation.md`, `playbooks/canary-deployment-orchestration.md`)
|
|
57
|
+
- Executable guidelines for version bump calculations (v1.0.0 → v1.1.0) and git tags.
|
|
58
|
+
- Closed-loop canary deployments (5% to 100% routing steps, metrics checks, instant triggers).
|
|
59
|
+
3. **Observability Tracking** (`observability/release-tracking.md`)
|
|
60
|
+
- Structured release audits, recording versions, commit hashes, pipelines results, and rollout windows.
|
|
61
|
+
4. **Release Templates** (`templates/deployment-strategy-template.md`, `templates/release-runbook-template.md`)
|
|
62
|
+
- Runbooks for critical steps and standardized strategy sheets.
|
|
63
|
+
|
|
64
|
+
### Related Release Assets
|
|
65
|
+
* **Checklists**: `checklists/checklist.md`, `checklists/pre-release-validation.md`, `checklists/post-deployment-verification.md`
|
|
66
|
+
* **Playbooks**: `playbooks/semantic-versioning-automation.md`, `playbooks/canary-deployment-orchestration.md`
|
|
67
|
+
* **Observability**: `observability/release-tracking.md`
|
|
68
|
+
* **Templates**: `templates/release-checklist-template.md`, `templates/deployment-strategy-template.md`, `templates/release-runbook-template.md`
|
|
69
|
+
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.7] - 2026-06-01
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- **Skill Consolidation**: Merged overlapping skills to resolve duplicated slash commands and clean up the architecture.
|
|
13
|
+
- `genesis-docs` consolidated into `genesis-docs-automation`.
|
|
14
|
+
- `genesis-mvp-planning` consolidated into `genesis-planning`.
|
|
15
|
+
- `genesis-release-orchestration` consolidated into `genesis-release`.
|
|
16
|
+
- `genesis-research` consolidated into `genesis-research-first`.
|
|
17
|
+
- `genesis-state-machine` consolidated into `genesis-harness`.
|
|
18
|
+
- **Harness & Verification Improvements**: Updated tests and scripts (`verify.sh`, `run-evals.sh`, `install.sh`, `uninstall.sh`, `genesis-harness.js`) to reflect the consolidated folder structure.
|
|
19
|
+
- **Documentation**: Updated `README.md`, `README.EN.md`, `README.VI.md`, and `AGENTS.md` to reflect the new standardized skill set.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
9
23
|
## [0.1.6] - 2026-06-01
|
|
10
24
|
|
|
11
25
|
### Added
|
package/README.EN.md
CHANGED
|
@@ -133,9 +133,9 @@ Genesis Codex Harness introduces five groundbreaking architectural subsystems to
|
|
|
133
133
|
|
|
134
134
|
---
|
|
135
135
|
|
|
136
|
-
## 🚀 Next-Gen Harness Engineering Upgrades (v0.1.
|
|
136
|
+
## 🚀 Next-Gen Harness Engineering Upgrades (v0.1.7)
|
|
137
137
|
|
|
138
|
-
Genesis v0.1.
|
|
138
|
+
Genesis v0.1.7 introduces five advanced, state-of-the-art tools under `scripts/` to enforce type-safety, automate tests, establish visual-code integrity, protect token consumption, and enable self-healing loop memory recall:
|
|
139
139
|
|
|
140
140
|
1. **Visual Architecture AST Sync (`scripts/spec_visual_sync.js`)**: Bidirectional compiler that syncs Mermaid ERD database diagrams (`database-erd.mmd`) to API contracts JSON schemas (`contracts/api/`) and vice-versa, establishing absolute visual-to-code design integrity.
|
|
141
141
|
2. **Contract-Driven Test Auto-Generator (`scripts/test_generator.js`)**: Automatically compiles fully executable Mocha/Jest integration test suites in `tests/integration/` directly from your API contracts JSON response schemas, providing instant TDD "RED" skeletons.
|
|
@@ -599,7 +599,7 @@ Genesis:
|
|
|
599
599
|
|
|
600
600
|
---
|
|
601
601
|
|
|
602
|
-
## 📚
|
|
602
|
+
## 📚 21 Skills (All Available)
|
|
603
603
|
|
|
604
604
|
Each skill follows the standard naming convention in `.codex/skills/`:
|
|
605
605
|
|
|
@@ -611,17 +611,13 @@ Each skill follows the standard naming convention in `.codex/skills/`:
|
|
|
611
611
|
| **genesis-api-sync** | Automate bi-directional contract & codebase synchronization | When endpoints are updated |
|
|
612
612
|
| **genesis-spec-propagation** | Automatically cascade design specification updates downstream | When specs change |
|
|
613
613
|
| **genesis-docs-automation** | Automatically synchronize system technical docs | Triggers after tests pass |
|
|
614
|
-
| **ui-ux-test
|
|
614
|
+
| **genesis-ui-ux-test** | Design and validate UI user journeys and visual test specs | Before frontend implementation |
|
|
615
615
|
| **genesis-debug-guide** | Systematic, evidence-based debugging and troubleshooting | On compile errors or test failures |
|
|
616
616
|
| **genesis-pipeline-orchestration** | Orchestrate multi-phase software development lifecycle | Complex multi-phase projects |
|
|
617
617
|
| **genesis-architecture** | High-level system design and architecture decisions (ADRs) | Major design changes |
|
|
618
618
|
| **genesis-planning** | Breakdown complex business requirements into micro-plans | Preparing large features |
|
|
619
|
-
| **genesis-mvp-planning** | Automate the setup of a 5-Phase MVP Roadmap post-initialization | Runs right after initialization |
|
|
620
619
|
| **genesis-codebase-map** | Build comprehensive dependency graphs and architecture maps | Navigating large codebases |
|
|
621
|
-
| **genesis-
|
|
622
|
-
| **genesis-research** | Search official docs, packages, and code patterns | Finding best practices |
|
|
623
|
-
| **genesis-release** | Manage semantic versioning and Git release tags | Preparing releases |
|
|
624
|
-
| **genesis-release-orchestration** | Generate release checklists, rollback plans, and runbooks | Before production deployment |
|
|
620
|
+
| **genesis-release** | Manage semantic versioning, Git tags, runbooks, and rollback plans | Preparing releases & deployments |
|
|
625
621
|
| **genesis-performance-profiling** | Measure system latency and execute runtime optimization | Before performance tuning |
|
|
626
622
|
| **genesis-observability-automation** | Log autonomous decisions, ADR history, and tool outputs | Maintaining execution trace |
|
|
627
623
|
| **genesis-ai-provider** | Monitor, budget, and optimize LLM token consumption | Safeguarding API token limits |
|
|
@@ -765,7 +761,7 @@ Thank you so much for supporting the development of this project! ❤️
|
|
|
765
761
|
- ✅ **Skills**: 25 fully implemented & verified (added 5-Phase MVP Roadmap planner, advanced self-healing and compaction engines)
|
|
766
762
|
- ✅ **Test Coverage**: 80%+ required
|
|
767
763
|
- ✅ **Token Savings**: 40-60%
|
|
768
|
-
- ✅ **Production Ready**: Yes (v0.1.
|
|
764
|
+
- ✅ **Production Ready**: Yes (v0.1.7)
|
|
769
765
|
- ✅ **Auto-Research Enforcement**: Active
|
|
770
766
|
- ✅ **Auto-Debug Verification**: Active
|
|
771
767
|
- ✅ **Auto-Spec-Propagation**: Active
|
|
@@ -777,7 +773,7 @@ Thank you so much for supporting the development of this project! ❤️
|
|
|
777
773
|
|
|
778
774
|
MIT License - See [LICENSE](LICENSE)
|
|
779
775
|
|
|
780
|
-
**Genesis Codex Harness** - Build production software with Codex | v0.1.
|
|
776
|
+
**Genesis Codex Harness** - Build production software with Codex | v0.1.7 | June 2026
|
|
781
777
|
|
|
782
778
|
---
|
|
783
779
|
|
package/README.VI.md
CHANGED
|
@@ -132,9 +132,9 @@ Genesis Codex Harness giới thiệu 5 phân hệ kỹ thuật mang tính đột
|
|
|
132
132
|
|
|
133
133
|
---
|
|
134
134
|
|
|
135
|
-
## 🚀 Nâng Cấp Kỹ Nghệ Harness Thế Hệ Mới (v0.1.
|
|
135
|
+
## 🚀 Nâng Cấp Kỹ Nghệ Harness Thế Hệ Mới (v0.1.7)
|
|
136
136
|
|
|
137
|
-
Phiên bản Genesis v0.1.
|
|
137
|
+
Phiên bản Genesis v0.1.7 giới thiệu năm công cụ cao cấp, đột phá trong thư mục `scripts/` nhằm áp đặt an toàn kiểu dữ liệu, tự động hóa test, thiết lập sự đồng nhất giữa sơ đồ trực quan và mã nguồn, chủ động kiểm soát token và khôi phục nhanh bài học sửa lỗi của Ralph Loop:
|
|
138
138
|
|
|
139
139
|
1. **Đồng bộ Sơ đồ Trực quan 2 Chiều (`scripts/spec_visual_sync.js`)**: Trình biên dịch hai chiều tự động đồng bộ hóa sơ đồ cơ sở dữ liệu ERD Mermaid (`database-erd.mmd`) sang các tệp JSON API contracts (`contracts/api/`) và ngược lại, bảo vệ tính nhất quán thiết kế tuyệt đối.
|
|
140
140
|
2. **Trình Tự Động Sinh Test từ Hợp Đồng (`scripts/test_generator.js`)**: Tự động biên dịch và tạo cấu trúc các bộ kiểm thử tích hợp (Node.js/Jest) hoàn chỉnh tại `tests/integration/` trực tiếp từ các file response contract JSON, hỗ trợ lập tức kịch bản TDD "RED" skeleton.
|
|
@@ -599,7 +599,7 @@ Genesis:
|
|
|
599
599
|
|
|
600
600
|
---
|
|
601
601
|
|
|
602
|
-
## 📚
|
|
602
|
+
## 📚 21 Skills (Tất Cả)
|
|
603
603
|
|
|
604
604
|
Mỗi skill tuân theo naming quy chuẩn trong thư mục `.codex/skills/`:
|
|
605
605
|
|
|
@@ -611,17 +611,13 @@ Mỗi skill tuân theo naming quy chuẩn trong thư mục `.codex/skills/`:
|
|
|
611
611
|
| **genesis-api-sync** | Đồng bộ hóa API contract và codebase tự động | Khi cập nhật endpoint |
|
|
612
612
|
| **genesis-spec-propagation** | Tự động lan tỏa thay đổi đặc tả xuống hạ nguồn | Khi spec thay đổi |
|
|
613
613
|
| **genesis-docs-automation** | Tự động hóa đồng bộ tài liệu hệ thống | Tự động chạy sau khi test pass |
|
|
614
|
-
| **ui-ux-test
|
|
614
|
+
| **genesis-ui-ux-test** | Thiết kế và xác thực UI flows, kịch bản test giao diện | Trước khi triển khai giao diện |
|
|
615
615
|
| **genesis-debug-guide** | Hướng dẫn chẩn đoán và khắc phục lỗi có hệ thống | Khi code lỗi hoặc test fail |
|
|
616
616
|
| **genesis-pipeline-orchestration** | Điều phối pipeline phát triển nhiều giai đoạn | Quản lý đa giai đoạn |
|
|
617
617
|
| **genesis-architecture** | Thiết kế hệ thống và ghi nhận quyết định kiến trúc (ADR) | Quyết định thiết kế lớn |
|
|
618
|
-
| **genesis-planning** | Lập kế hoạch phân rã công việc
|
|
619
|
-
| **genesis-mvp-planning** | Tự động lập kế hoạch và phân rã Lộ trình 5-Phase MVP | Chạy ngay sau khi khởi tạo dự án |
|
|
618
|
+
| **genesis-planning** | Lập kế hoạch phân rã công việc và Lộ trình 5-Phase MVP | Chuẩn bị feature phức tạp & thiết lập lộ trình |
|
|
620
619
|
| **genesis-codebase-map** | Vẽ bản đồ kiến trúc codebase | Tìm hiểu codebase lớn |
|
|
621
|
-
| **genesis-
|
|
622
|
-
| **genesis-research** | Nghiên cứu công nghệ, thư viện phù hợp | Tìm kiếm best practices |
|
|
623
|
-
| **genesis-release** | Quản lý quy trình phát hành phiên bản | Version control + git tag |
|
|
624
|
-
| **genesis-release-orchestration** | Tự động hóa lập kế hoạch và runbook phát hành | Chuẩn bị deploy hệ thống |
|
|
620
|
+
| **genesis-release** | Quản lý phiên bản, runbooks, và kế hoạch khôi phục (rollback) | Chuẩn bị phát hành & triển khai |
|
|
625
621
|
| **genesis-performance-profiling** | Đo lường hiệu suất và tối ưu hóa thời gian chạy | Trước khi tối ưu hiệu năng |
|
|
626
622
|
| **genesis-observability-automation** | Tự động ghi chép quyết định (ADR) và log hành vi hệ thống | Ghi chép lịch sử vận hành |
|
|
627
623
|
| **genesis-ai-provider** | Theo dõi và tối ưu hóa lượng token tiêu thụ | Giám sát chi phí API |
|
|
@@ -754,10 +750,10 @@ Cảm ơn bạn rất nhiều vì đã đồng hành cùng sự phát triển c
|
|
|
754
750
|
|
|
755
751
|
- ✅ **Architecture**: 10/10 (research-first + auto-debug + auto-spec-propagation + auto-docs + validation gates)
|
|
756
752
|
- ✅ **Codex-Only Enforcement**: 100%
|
|
757
|
-
- ✅ **
|
|
753
|
+
- ✅ **21 Skills**: Hoàn toàn kế thừa và triển khai đầy đủ (đã bổ sung lộ trình 5-Phase MVP, tự chữa lành & nén context)
|
|
758
754
|
- ✅ **Test Coverage**: 80%+ required
|
|
759
755
|
- ✅ **Token Savings**: 40-60%
|
|
760
|
-
- ✅ **Production Ready**: Yes (v0.1.
|
|
756
|
+
- ✅ **Production Ready**: Yes (v0.1.7)
|
|
761
757
|
- ✅ **Auto-Research Enforcement**: Active
|
|
762
758
|
- ✅ **Auto-Debug Verification**: Active
|
|
763
759
|
- ✅ **Auto-Spec-Propagation**: Active
|
|
@@ -769,7 +765,7 @@ Cảm ơn bạn rất nhiều vì đã đồng hành cùng sự phát triển c
|
|
|
769
765
|
|
|
770
766
|
MIT License - Xem [LICENSE](LICENSE)
|
|
771
767
|
|
|
772
|
-
**Genesis Codex Harness** - Xây dựng phần mềm production với Codex | v0.1.
|
|
768
|
+
**Genesis Codex Harness** - Xây dựng phần mềm production với Codex | v0.1.7 | Tháng 6, 2026
|
|
773
769
|
|
|
774
770
|
---
|
|
775
771
|
|
package/README.md
CHANGED
|
@@ -30,8 +30,8 @@ To cater to all developers, Genesis features separate, highly exhaustive step-by
|
|
|
30
30
|
|
|
31
31
|
| Language | Primary Link | Content Included |
|
|
32
32
|
| :--- | :--- | :--- |
|
|
33
|
-
| 🇬🇧 **English** | [README.EN.md](README.EN.md) | Exhaustive runbooks, all
|
|
34
|
-
| 🇻🇳 **Tiếng Việt** | [README.VI.md](README.VI.md) | Cẩm nang chi tiết bằng Tiếng Việt, giải nghĩa
|
|
33
|
+
| 🇬🇧 **English** | [README.EN.md](README.EN.md) | Exhaustive runbooks, all 21 skill details, learning paths, & production workflows. |
|
|
34
|
+
| 🇻🇳 **Tiếng Việt** | [README.VI.md](README.VI.md) | Cẩm nang chi tiết bằng Tiếng Việt, giải nghĩa 21 skills, quy trình TDD chuẩn. |
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
@@ -89,14 +89,14 @@ Genesis is built on five core, state-of-the-art technological breakthroughs that
|
|
|
89
89
|
1. **Context Compaction Engine (`compact-context.sh`)**: Automatically condenses architectural decisions, API states, and task history into `.codebase/context/` when prompt window boundaries are reached, freeing up massive context space while keeping 100% decision recall.
|
|
90
90
|
2. **Tool Call Offloading (`offload-log.sh`)**: Intercepts massive terminal outputs (such as verbose test suites or compiler logs) and offloads them to disk log files (`.system_generated/tasks/`), returning a clean, structural status summary back to the model.
|
|
91
91
|
3. **Verify-Fix Self-Healing Loop (`run-verify-loop.sh`)**: An autonomous, closed-loop debug engine that captures test failures, reads error output from disk logs, refactors implementation code, and re-runs tests autonomously up to 5 times until the build turns green.
|
|
92
|
-
4. **5-Phase MVP Planner (`genesis-
|
|
92
|
+
4. **5-Phase MVP Planner (`genesis-planning`)**: Guarantees architectural rigor. Breaks down requirements into 5 standard delivery phases, ensuring core contracts are validated before feature coding.
|
|
93
93
|
5. **Documentation Drift Check Validation Gates (`validation_gates.sh`)**: A hook-level scan that alerts the engineer on phase state changes if source code changes are detected without matching spec updates under `.codebase/`.
|
|
94
94
|
|
|
95
95
|
---
|
|
96
96
|
|
|
97
|
-
## 🚀 Next-Gen Harness Engineering Upgrades (v0.1.
|
|
97
|
+
## 🚀 Next-Gen Harness Engineering Upgrades (v0.1.7)
|
|
98
98
|
|
|
99
|
-
Genesis v0.1.
|
|
99
|
+
Genesis v0.1.7 introduces five advanced, state-of-the-art tools under `scripts/` to enforce type-safety, automate tests, establish visual-code integrity, protect token consumption, and enable self-healing loop memory recall:
|
|
100
100
|
|
|
101
101
|
1. **Visual Architecture AST Sync (`scripts/spec_visual_sync.js`)**: Bidirectional compiler that syncs Mermaid ERD database diagrams (`database-erd.mmd`) to API contracts JSON schemas (`contracts/api/`) and vice-versa, establishing absolute visual-to-code design integrity.
|
|
102
102
|
2. **Contract-Driven Test Auto-Generator (`scripts/test_generator.js`)**: Automatically compiles fully executable Mocha/Jest integration test suites in `tests/integration/` directly from your API contracts JSON response schemas, providing instant TDD "RED" skeletons.
|
|
@@ -145,8 +145,8 @@ After installation, simply type standard commands in your Codex chat interface t
|
|
|
145
145
|
├── genesis-upgrade-design/ # Existing visual audit and upgrade engine
|
|
146
146
|
├── genesis-api-contract/ # Enterprise API contract designer
|
|
147
147
|
├── genesis-spec-propagation/ # Automated spec propagation engine
|
|
148
|
-
├── genesis-
|
|
149
|
-
└── ... (
|
|
148
|
+
├── genesis-planning/ # 5-Phase MVP roadmap planner
|
|
149
|
+
└── ... (15 more skills, total 21 skills)
|
|
150
150
|
|
|
151
151
|
.codebase/ # Persistent repository memory system
|
|
152
152
|
contracts/ # Enterprise API, UI, and Data contracts
|
|
@@ -162,9 +162,9 @@ observability/ # Run records and architectural ADR lo
|
|
|
162
162
|
|
|
163
163
|
- ✅ **Architecture Rating**: `10/10` (Enforced research-first + self-healing + spec-propagation)
|
|
164
164
|
- ✅ **Codex-Only Enforcement**: `100%`
|
|
165
|
-
- ✅ **Skills Matrix**:
|
|
165
|
+
- ✅ **Skills Matrix**: 21 fully implemented, structured, and verified skills
|
|
166
166
|
- ✅ **Token Caching Savings**: `40% to 60%` verified per enterprise project
|
|
167
|
-
- ✅ **Stability & Readiness**: Production Ready (`v0.1.
|
|
167
|
+
- ✅ **Stability & Readiness**: Production Ready (`v0.1.7` - June 2026)
|
|
168
168
|
|
|
169
169
|
---
|
|
170
170
|
|
|
@@ -174,5 +174,5 @@ Licensed under the [MIT License](LICENSE). Contributions, bug reports, and featu
|
|
|
174
174
|
|
|
175
175
|
---
|
|
176
176
|
|
|
177
|
-
**Genesis Codex Harness** v0.1.
|
|
177
|
+
**Genesis Codex Harness** v0.1.7 | June 2026
|
|
178
178
|
👉 **[Full English Guide](README.EN.md) | [Tiếng Việt Hướng Dẫn](README.VI.md)**
|
package/VERSION
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.7
|
|
2
2
|
|