@tera-system/core 0.2.1 → 0.2.3
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/MANIFEST.json +5 -5
- package/README.md +26 -0
- package/RELEASES.md +34 -0
- package/WELCOME.md +7 -0
- package/agents/application-blueprint.md +4 -2
- package/agents/design-reviewer.md +51 -56
- package/agents/tera.md +21 -3
- package/core/tera-system/AGENT_ACTIVATION_MATRIX.md +6 -5
- package/core/tera-system/AGENT_DEPENDENCY_MAP.md +24 -21
- package/core/tera-system/AGENT_PERMISSION_MODEL.md +1 -1
- package/core/tera-system/TeraArchitectureMap.md +3 -2
- package/core/tera-system/TeraClientPolicy.md +28 -2
- package/core/tera-system/TeraPolicyMap.md +6 -4
- package/core/tera-system/TeraPreExecutionGate.md +1 -0
- package/core/tera-system/TeraProjectIntakePolicy.md +2 -2
- package/core/tera-system/TeraSubAgents.md +52 -2
- package/core/tera-system/TeraSystemMaintenanceChecklist.md +2 -0
- package/core/tera-system/Tera_Project_Preparation_Files.md +464 -1045
- package/core/tera-system/agent-helpers/Tera_Project_Preparation_Files_Conditional.md +597 -0
- package/core/tera-system/engineering-governance/ENGINEERING_AGENT_RESPONSIBILITIES.md +1 -1
- package/core/tera-system/runtime/TERA_RUNTIME_PROTOCOLS.md +3 -3
- package/core/tera-system/runtime/TERA_RUNTIME_PROTOCOLS_CLIENT.md +3 -3
- package/core/tera-system/runtime/TERA_RUNTIME_TEMPLATES.md +11 -7
- package/core/tera-system/runtime/TERA_RUNTIME_TEMPLATES_DELIVERY.md +2 -2
- package/core/tera-system/runtime/TERA_RUNTIME_TEMPLATES_PREPARATION.md +2 -2
- package/package.json +5 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Tera Runtime Templates — Delivery & Execution
|
|
2
2
|
|
|
3
|
-
These are the execution, delivery, and
|
|
3
|
+
These are the execution, delivery, closure, and operational-hardening templates (Sections 29–38) split from TERA_RUNTIME_TEMPLATES.md via INSPECTION-2026-08-01 (INS-02).
|
|
4
4
|
Main file: `tera-system/runtime/TERA_RUNTIME_TEMPLATES.md` (Sections 1–28).
|
|
5
|
-
Preparation-phase templates: `tera-system/runtime/TERA_RUNTIME_TEMPLATES_PREPARATION.md` (Sections 35–
|
|
5
|
+
Preparation-phase templates: `tera-system/runtime/TERA_RUNTIME_TEMPLATES_PREPARATION.md` (Sections 35–41).
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Tera Runtime Templates — Preparation & Blueprint Outputs
|
|
2
2
|
|
|
3
|
-
These are the preparation-phase templates (Sections 35–
|
|
3
|
+
These are the preparation-phase templates (Sections 35–41: TCEA outputs, ApplicationBlueprint outputs, and Content Requirements) split from TERA_RUNTIME_TEMPLATES.md via INSPECTION-2026-08-01 (INS-02).
|
|
4
4
|
Main file: `tera-system/runtime/TERA_RUNTIME_TEMPLATES.md` (Sections 1–28).
|
|
5
|
-
Delivery templates: `tera-system/runtime/TERA_RUNTIME_TEMPLATES_DELIVERY.md` (Sections 29–
|
|
5
|
+
Delivery templates: `tera-system/runtime/TERA_RUNTIME_TEMPLATES_DELIVERY.md` (Sections 29–38).
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tera-system/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Tera System OpenCode Plugin — governance core, 20 agents, 11 commands, distribution tools (personal edition)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"LICENSE.md",
|
|
21
21
|
"RELEASES.md"
|
|
22
22
|
],
|
|
23
|
+
"bin": {
|
|
24
|
+
"tera-restore": "scripts/install.js",
|
|
25
|
+
"tera-core-restore": "scripts/install.js"
|
|
26
|
+
},
|
|
23
27
|
"scripts": {
|
|
24
28
|
"postinstall": "node scripts/install.js"
|
|
25
29
|
},
|