@kodevibe/harness 0.8.3 → 0.8.4
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.ko.md +2 -2
- package/README.md +2 -2
- package/harness/agents/planner.md +1 -1
- package/harness/skills/feature-breakdown.md +1 -0
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
kode:harness는 **harness engineering** 원칙을 기반으로 합니다. 멀티 개발자와 엔터프라이즈급 환경, 그리고 solo 개발 흐름까지 고려한 AI 개발 엔지니어링 방식을 제품 형태로 제공하는 구조입니다.
|
|
15
15
|
|
|
16
|
-
> **v0.8.
|
|
16
|
+
> **v0.8.4** — 6개 IDE 지원, Navigation Dispatcher, 5개 파이프라인 (🟢🔵🔴🟡🟣), Crew Artifact Integration, EXTERNAL_DEP 분류 체계.
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
@@ -309,7 +309,7 @@ Bootstrap이 `docs/crew/`, `docs/PM/`, `docs/Analyst/`, `docs/ARB/`에서 crew
|
|
|
309
309
|
|
|
310
310
|
## 로드맵
|
|
311
311
|
|
|
312
|
-
kode:harness는 현재 **v0.8.
|
|
312
|
+
kode:harness는 현재 **v0.8.4** — 6개 IDE 지원 완료, Navigation Dispatcher와 Crew Artifact Integration 안정화.
|
|
313
313
|
|
|
314
314
|
| 단계 | 버전 | 상태 | 초점 |
|
|
315
315
|
|------|------|------|------|
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
kode:harness is built on **harness engineering** for multi-developer, enterprise-grade AI-assisted development.
|
|
15
15
|
|
|
16
|
-
> **v0.8.
|
|
16
|
+
> **v0.8.4** — 6 IDE support, Navigation Dispatcher, 5 Pipelines ( 🟢🔵🔴🟡🟣), Crew Artifact Integration, EXTERNAL_DEP classification.
|
|
17
17
|
|
|
18
18
|
## From Harness to Enterprise Harness Engineering
|
|
19
19
|
|
|
@@ -277,7 +277,7 @@ Original crew documents are **never modified**. Only the index and tracker are c
|
|
|
277
277
|
|
|
278
278
|
## Roadmap
|
|
279
279
|
|
|
280
|
-
kode:harness is at **v0.8.
|
|
280
|
+
kode:harness is at **v0.8.4** — 6 IDE support complete, Navigation Dispatcher and Crew Artifact Integration stable.
|
|
281
281
|
|
|
282
282
|
| Phase | Version | Status | Focus |
|
|
283
283
|
|---|---|---|---|
|
|
@@ -36,7 +36,7 @@ One of:
|
|
|
36
36
|
- **New Feature**: "I want to add [feature description]"
|
|
37
37
|
- **Architecture Query**: "What depends on [module]?" / "Show me the current module map"
|
|
38
38
|
- **Refactor Plan**: "I need to refactor [module/area]"
|
|
39
|
-
- **Crew-Driven Feature**: "crew 산출물을 기반으로 [기능]을 계획해줘" — when
|
|
39
|
+
- **Crew-Driven Feature**: "crew 산출물을 기반으로 [기능]을 계획해줘" — when external planning artifacts exist in `docs/crew/`
|
|
40
40
|
|
|
41
41
|
## Procedure
|
|
42
42
|
|
|
@@ -30,6 +30,7 @@ Ensures bottom-up implementation: foundations first, then layers that depend on
|
|
|
30
30
|
- INTERFACE_CHANGE: Existing module's public interface changes
|
|
31
31
|
- INTERNAL_CHANGE: Only internal implementation changes
|
|
32
32
|
- TEST_ONLY: Only test updates needed
|
|
33
|
+
- EXTERNAL_DEP: External process/service dependency (DB, Docker, message queue, network API, etc.) — define mock boundary interface before implementation. No real external process execution in tests.
|
|
33
34
|
6. **Build dependency order**:
|
|
34
35
|
- List modules topologically: modules with zero dependencies first, then modules depending on first layer, etc.
|
|
35
36
|
- Example: Module A (no deps) → Module B (depends A) → Module C (depends A, B)
|