@moreih29/nexus-core 0.1.0 → 0.1.2
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.md +1 -0
- package/manifest.json +16 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,6 +76,7 @@ Plan session #2 (2026-04-11) 구현 결정 완료. 첫 release `v0.1.0` 준비
|
|
|
76
76
|
|
|
77
77
|
- [CHANGELOG.md](./CHANGELOG.md) — version history
|
|
78
78
|
- [CONSUMING.md](./CONSUMING.md) — consumer LLM upgrade protocol
|
|
79
|
+
- [RELEASING.md](./RELEASING.md) — harness-neutral release runbook (for LLM agents or humans cutting a release)
|
|
79
80
|
- [.nexus/context/boundaries.md](./.nexus/context/boundaries.md) — scope & rejection rationale
|
|
80
81
|
- [.nexus/context/ecosystem.md](./.nexus/context/ecosystem.md) — 3-layer model
|
|
81
82
|
- [.nexus/context/evolution.md](./.nexus/context/evolution.md) — Forward-only relaxation policy
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"nexus_core_version": "0.1.
|
|
3
|
-
"nexus_core_commit": "
|
|
2
|
+
"nexus_core_version": "0.1.2",
|
|
3
|
+
"nexus_core_commit": "93d8d74493b8897a80e9de1342c0da5f0d04f6e2",
|
|
4
4
|
"schema_contract_version": "1.0",
|
|
5
5
|
"agents": [
|
|
6
6
|
{
|
|
@@ -35,20 +35,6 @@
|
|
|
35
35
|
"id": "designer",
|
|
36
36
|
"body_hash": "sha256:9ccab5e29cca4b57250c41ffaea6656fc655bee2a19fc5e29c08e2e4ab669021"
|
|
37
37
|
},
|
|
38
|
-
{
|
|
39
|
-
"name": "engineer",
|
|
40
|
-
"description": "Implementation — writes code, debugs issues, follows specifications from Lead and architect",
|
|
41
|
-
"task": "Code implementation, edits, debugging",
|
|
42
|
-
"alias_ko": "엔지니어",
|
|
43
|
-
"category": "do",
|
|
44
|
-
"resume_tier": "bounded",
|
|
45
|
-
"model_tier": "standard",
|
|
46
|
-
"capabilities": [
|
|
47
|
-
"no_task_create"
|
|
48
|
-
],
|
|
49
|
-
"id": "engineer",
|
|
50
|
-
"body_hash": "sha256:79ce728ef86027c3301b26454ae5e1ed2db58cf4ce812521df4f6473661e3cd3"
|
|
51
|
-
},
|
|
52
38
|
{
|
|
53
39
|
"name": "reviewer",
|
|
54
40
|
"description": "Content verification — validates accuracy, checks facts, confirms grammar and format of non-code deliverables",
|
|
@@ -80,6 +66,20 @@
|
|
|
80
66
|
"id": "strategist",
|
|
81
67
|
"body_hash": "sha256:32e70f5ad8e1a37fb544c398147c39020b19fed8cde8c066fad02cea37481cc2"
|
|
82
68
|
},
|
|
69
|
+
{
|
|
70
|
+
"name": "engineer",
|
|
71
|
+
"description": "Implementation — writes code, debugs issues, follows specifications from Lead and architect",
|
|
72
|
+
"task": "Code implementation, edits, debugging",
|
|
73
|
+
"alias_ko": "엔지니어",
|
|
74
|
+
"category": "do",
|
|
75
|
+
"resume_tier": "bounded",
|
|
76
|
+
"model_tier": "standard",
|
|
77
|
+
"capabilities": [
|
|
78
|
+
"no_task_create"
|
|
79
|
+
],
|
|
80
|
+
"id": "engineer",
|
|
81
|
+
"body_hash": "sha256:79ce728ef86027c3301b26454ae5e1ed2db58cf4ce812521df4f6473661e3cd3"
|
|
82
|
+
},
|
|
83
83
|
{
|
|
84
84
|
"name": "researcher",
|
|
85
85
|
"description": "Independent investigation — conducts web searches, gathers evidence, and reports findings with citations",
|
package/package.json
CHANGED