@hallucination-studio/harness-engine 1.0.0-beta.11.2a4849a → 1.0.0-beta.12.d308768
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hallucination-studio/harness-engine",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.12.d308768",
|
|
4
4
|
"description": "Install the harness-engine Codex skill for initializing and reconciling advanced repository harness docs.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -201,6 +201,20 @@ def test_clean_removes_runtime_state_and_untracks_artifacts(tmp_root):
|
|
|
201
201
|
repo = tmp_root / "clean-repo"
|
|
202
202
|
repo.mkdir()
|
|
203
203
|
subprocess.run(["git", "init"], cwd=repo, text=True, capture_output=True, check=True)
|
|
204
|
+
subprocess.run(
|
|
205
|
+
["git", "config", "user.email", "harness-eval@example.com"],
|
|
206
|
+
cwd=repo,
|
|
207
|
+
text=True,
|
|
208
|
+
capture_output=True,
|
|
209
|
+
check=True,
|
|
210
|
+
)
|
|
211
|
+
subprocess.run(
|
|
212
|
+
["git", "config", "user.name", "Harness Eval"],
|
|
213
|
+
cwd=repo,
|
|
214
|
+
text=True,
|
|
215
|
+
capture_output=True,
|
|
216
|
+
check=True,
|
|
217
|
+
)
|
|
204
218
|
tracked_files = [
|
|
205
219
|
".codex/skills/harness-engine/SKILL.md",
|
|
206
220
|
"docs/generated/canvas-polish-desktop-final.png",
|