Upload 34 files
Browse files- .gitattributes +2 -0
- .gitignore +4 -0
- CHANGELOG.md +8 -0
- DATASET_CARD.md +44 -0
- LICENSE +7 -0
- MANIFEST.json +169 -0
- Makefile +11 -0
- README.md +165 -0
- README_FA.md +23 -0
- configs/generation_catalog.json +255 -0
- configs/taxonomy.json +266 -0
- data/all.jsonl +3 -0
- data/test.jsonl +0 -0
- data/train.jsonl +3 -0
- data/validation.jsonl +0 -0
- docs/ALGORITHM.md +56 -0
- docs/LIMITATIONS.md +10 -0
- docs/METHODOLOGY.md +32 -0
- docs/TAXONOMY.md +206 -0
- pyproject.toml +12 -0
- reports/deduplication_report.json +323 -0
- reports/distribution_report.json +108 -0
- reports/quality_report.json +15 -0
- reports/top_similarity_pairs.csv +51 -0
- requirements.txt +3 -0
- samples/sample_records.json +1598 -0
- schemas/record.schema.json +107 -0
- scripts/audit.py +29 -0
- scripts/export_messages.py +14 -0
- scripts/generate.py +17 -0
- scripts/validate.py +25 -0
- src/jumpforge/__init__.py +1 -0
- src/jumpforge/io.py +12 -0
- src/jumpforge/normalization.py +7 -0
- tests/test_release.py +34 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
data/all.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
data/train.jsonl filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
.pytest_cache/
|
| 3 |
+
.venv/
|
| 4 |
+
*.pyc
|
CHANGELOG.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Changelog
|
| 2 |
+
|
| 3 |
+
## 1.0.0
|
| 4 |
+
|
| 5 |
+
- Initial 3,000-record release.
|
| 6 |
+
- Added 12 behavioral families and 120 archetypes.
|
| 7 |
+
- Added group-aware train/validation/test split.
|
| 8 |
+
- Added schema, generation catalogs, samples, tests, and audit reports.
|
DATASET_CARD.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Dataset Card
|
| 2 |
+
|
| 3 |
+
## Summary
|
| 4 |
+
|
| 5 |
+
JumpForge-Agentic-SE-3K contains 3,000 structured trajectories that model desired and undesired
|
| 6 |
+
behavior of AI software-engineering agents. It emphasizes grounded understanding, repository
|
| 7 |
+
exploration, deliberate tool use, causal debugging, safe modification, verification, uncertainty,
|
| 8 |
+
communication, and long-horizon execution.
|
| 9 |
+
|
| 10 |
+
## Data composition
|
| 11 |
+
|
| 12 |
+
- 12 behavioral families
|
| 13 |
+
- 120 narrow archetypes
|
| 14 |
+
- 25 scenarios per archetype
|
| 15 |
+
- 3,000 total records
|
| 16 |
+
- 2,400 train / 300 validation / 300 test
|
| 17 |
+
- group-aware splitting by archetype
|
| 18 |
+
|
| 19 |
+
## Generation
|
| 20 |
+
|
| 21 |
+
Records are generated deterministically from a controlled taxonomy, compatibility-aware catalogs,
|
| 22 |
+
stack-specific repository layouts, operational modifiers, constraints, and behavioral rubrics.
|
| 23 |
+
|
| 24 |
+
## Validation
|
| 25 |
+
|
| 26 |
+
- JSON Schema validation
|
| 27 |
+
- exact text and ID checks
|
| 28 |
+
- normalized-text duplicate checks
|
| 29 |
+
- structural fingerprint checks
|
| 30 |
+
- group-aware split leakage checks
|
| 31 |
+
- TF-IDF nearest-neighbor lexical audit
|
| 32 |
+
|
| 33 |
+
## Ethics and safety
|
| 34 |
+
|
| 35 |
+
The dataset encodes safe behavior such as avoiding destructive operations, protecting secrets,
|
| 36 |
+
preserving authorization, reporting uncertainty, and stopping before irreversible actions.
|
| 37 |
+
|
| 38 |
+
It does not certify that a model trained on it will behave safely. Independent evaluation remains required.
|
| 39 |
+
|
| 40 |
+
## Limitations
|
| 41 |
+
|
| 42 |
+
Synthetic contexts cannot reproduce the full complexity of real repositories, organizational
|
| 43 |
+
constraints, production systems, or adversarial environments. Tool traces are expected trajectories,
|
| 44 |
+
not actual execution traces.
|
LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Creative Commons Attribution 4.0 International
|
| 2 |
+
|
| 3 |
+
You are free to share and adapt the material for any purpose, even commercially, under the
|
| 4 |
+
following terms: attribution must be given, a link to the license must be provided, and changes
|
| 5 |
+
must be indicated. No additional restrictions may be applied.
|
| 6 |
+
|
| 7 |
+
Full legal code: https://creativecommons.org/licenses/by/4.0/legalcode
|
MANIFEST.json
ADDED
|
@@ -0,0 +1,169 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"files": [
|
| 3 |
+
{
|
| 4 |
+
"path": ".gitignore",
|
| 5 |
+
"bytes": 41,
|
| 6 |
+
"sha256": "81e889e437fd96a3cdbe5da11eaf82a13a537f1f0789a2e60088e66567020320"
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"path": "CHANGELOG.md",
|
| 10 |
+
"bytes": 227,
|
| 11 |
+
"sha256": "9e8a00f815afac70293502215962f87f678a37efc06d8b4c50094d1bf1e8eeda"
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"path": "DATASET_CARD.md",
|
| 15 |
+
"bytes": 1536,
|
| 16 |
+
"sha256": "d46e9edd0e500799279c9bf07868f5bb7288e5004f6406422ce4fc8b6d7a743a"
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"path": "LICENSE",
|
| 20 |
+
"bytes": 369,
|
| 21 |
+
"sha256": "40a8c04b6b679d1c9f17e4f584edf34c5a322b232f5ae83ccb58c4e238a5839d"
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"path": "Makefile",
|
| 25 |
+
"bytes": 142,
|
| 26 |
+
"sha256": "24cc02b51acf51c05bc35a7729d864854bbda7ca6e26f2042e4dc8865b496a3c"
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"path": "README.md",
|
| 30 |
+
"bytes": 4969,
|
| 31 |
+
"sha256": "440e8fd4ce330b16afe01f27f4b0b907db79b08fcff2c764667b2e696c5a3a72"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"path": "README_FA.md",
|
| 35 |
+
"bytes": 1216,
|
| 36 |
+
"sha256": "56d1225b5af279532169ffad9e79acd3be4936691fee607828a8fe3519c42641"
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"path": "configs/generation_catalog.json",
|
| 40 |
+
"bytes": 7454,
|
| 41 |
+
"sha256": "97dc0fd5b7b03eb832f2989144acbb328c82aaa632d15b95d385400926b96b00"
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"path": "configs/taxonomy.json",
|
| 45 |
+
"bytes": 8027,
|
| 46 |
+
"sha256": "ae1e4fdc2e38ebb2535fe330d577dcd7bfe9ee9825963bac8cf3b1fc79092fa7"
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"path": "data/all.jsonl",
|
| 50 |
+
"bytes": 40513736,
|
| 51 |
+
"sha256": "0950c02e6c9548c6f2e7e65a6705445a7b36c1c818faaba3d4832cc77b85c240"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"path": "data/test.jsonl",
|
| 55 |
+
"bytes": 4044754,
|
| 56 |
+
"sha256": "3e1a9510976501b3b37db2afc2dc725355a4dc73d51c1a6d8dc2c89f359d0355"
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"path": "data/train.jsonl",
|
| 60 |
+
"bytes": 32402335,
|
| 61 |
+
"sha256": "ca6b4e697a030f2605cfe92b7e5660d31356e8985afc7c1d0715c340c0e6f538"
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"path": "data/validation.jsonl",
|
| 65 |
+
"bytes": 4066647,
|
| 66 |
+
"sha256": "d1b9a3ebc35a10e5b1224cbd204878524bf55c8139eeb82b7f781ce0b864ab14"
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"path": "docs/ALGORITHM.md",
|
| 70 |
+
"bytes": 1610,
|
| 71 |
+
"sha256": "29d6222f0325324f117f7c405e19935c0c6c08b10a3d727ba07a8caa7bf4d846"
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"path": "docs/LIMITATIONS.md",
|
| 75 |
+
"bytes": 672,
|
| 76 |
+
"sha256": "69e4e7b945f470520987f38e1bbf11e4576eb11064ade08bea30e1337c235654"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"path": "docs/METHODOLOGY.md",
|
| 80 |
+
"bytes": 1114,
|
| 81 |
+
"sha256": "1c39fb1b0a64d2c284ed7bebae08185030040813fa2686408f8d9bdf314595e6"
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"path": "docs/TAXONOMY.md",
|
| 85 |
+
"bytes": 9615,
|
| 86 |
+
"sha256": "af75bf06f1ec93bb21007edbd5fd99ce8c4532089a9fb8f40724be3cb769aa0c"
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"path": "pyproject.toml",
|
| 90 |
+
"bytes": 277,
|
| 91 |
+
"sha256": "ed20e34847c455d710998261ffb0626c98d0ef1f66f3ef73fad5069679f977ad"
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"path": "reports/deduplication_report.json",
|
| 95 |
+
"bytes": 8624,
|
| 96 |
+
"sha256": "6e549b2f17be21b531d9c7c10c7abb3ae27915190e26827d96231c3c2a112b66"
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"path": "reports/distribution_report.json",
|
| 100 |
+
"bytes": 2657,
|
| 101 |
+
"sha256": "c1941543e10779a460bca76d114485c5680dc283e0a6687fa987379eacf68def"
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"path": "reports/quality_report.json",
|
| 105 |
+
"bytes": 523,
|
| 106 |
+
"sha256": "db42abfebdf52e3816851956c17aab3ddb2d9484d9c10662aa3e4fafc97daa48"
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"path": "reports/top_similarity_pairs.csv",
|
| 110 |
+
"bytes": 2241,
|
| 111 |
+
"sha256": "b532d49383790638cef47bb4976ad78b475ef8f6c04268679a92d1e66e52d4cc"
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"path": "requirements.txt",
|
| 115 |
+
"bytes": 46,
|
| 116 |
+
"sha256": "d927853ac44c33b40a3d81e8d3a1d2cf160772cd5bebc96e58c2e789f60093d4"
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"path": "samples/sample_records.json",
|
| 120 |
+
"bytes": 94598,
|
| 121 |
+
"sha256": "777fa07bf3aa513aa72f188936ff63e4670764c045f7dc27b9ef880e81256c9e"
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"path": "schemas/record.schema.json",
|
| 125 |
+
"bytes": 2044,
|
| 126 |
+
"sha256": "2292f7a2460d3a88a2b4825d602edb312dd15451a3a563f14b5f2cf6c23821b9"
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"path": "scripts/audit.py",
|
| 130 |
+
"bytes": 1001,
|
| 131 |
+
"sha256": "053a81aafcd556b04ebea7269619aae5da2d3ea1cfa9b61173d824f181181805"
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"path": "scripts/export_messages.py",
|
| 135 |
+
"bytes": 455,
|
| 136 |
+
"sha256": "9fc956cf7155942cd67ccda3eca4afbd144bb5c5f713f75386bd688c5b9e40bf"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"path": "scripts/generate.py",
|
| 140 |
+
"bytes": 778,
|
| 141 |
+
"sha256": "c707e04c2bcd806d05e0e9cdaac683f382bc30e3231fa0809269046293bb13bb"
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"path": "scripts/validate.py",
|
| 145 |
+
"bytes": 830,
|
| 146 |
+
"sha256": "19ddeade1cf8d01cc4418a41b2e51cfc3af8b5afb7adb0a4a2e475c448eb19a9"
|
| 147 |
+
},
|
| 148 |
+
{
|
| 149 |
+
"path": "src/jumpforge/__init__.py",
|
| 150 |
+
"bytes": 22,
|
| 151 |
+
"sha256": "27e8febb48ada44153ea2add9969a2c50a9831a74d9755fdd53c549a888b1cc2"
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"path": "src/jumpforge/io.py",
|
| 155 |
+
"bytes": 340,
|
| 156 |
+
"sha256": "7c3d2d2da3257b87781af04057de8f0464926ee1fa2460e860e503b555ff701f"
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"path": "src/jumpforge/normalization.py",
|
| 160 |
+
"bytes": 196,
|
| 161 |
+
"sha256": "d1c0d043efcd0903e8dda77120fb01b8f71adfb211f058604fc1aee857ad2799"
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"path": "tests/test_release.py",
|
| 165 |
+
"bytes": 1096,
|
| 166 |
+
"sha256": "c044729388046b669ca862dca09b32c97c6cc8a500a6e0f69412a521cc3dcb8d"
|
| 167 |
+
}
|
| 168 |
+
]
|
| 169 |
+
}
|
Makefile
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
validate:
|
| 2 |
+
python scripts/validate.py
|
| 3 |
+
|
| 4 |
+
audit:
|
| 5 |
+
python scripts/audit.py
|
| 6 |
+
|
| 7 |
+
test:
|
| 8 |
+
pytest -q
|
| 9 |
+
|
| 10 |
+
export-messages:
|
| 11 |
+
python scripts/export_messages.py
|
README.md
CHANGED
|
@@ -1,3 +1,168 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
pretty_name: JumpForge Agentic SE 3K
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
license: cc-by-4.0
|
| 6 |
+
size_categories:
|
| 7 |
+
- 1K<n<10K
|
| 8 |
+
task_categories:
|
| 9 |
+
- text-generation
|
| 10 |
+
- question-answering
|
| 11 |
+
tags:
|
| 12 |
+
- software-engineering
|
| 13 |
+
- coding-agents
|
| 14 |
+
- agent-behavior
|
| 15 |
+
- tool-use
|
| 16 |
+
- debugging
|
| 17 |
+
- verification
|
| 18 |
+
- repository-understanding
|
| 19 |
+
- safety
|
| 20 |
+
- synthetic
|
| 21 |
+
- jumplander
|
| 22 |
+
configs:
|
| 23 |
+
- config_name: default
|
| 24 |
+
data_files:
|
| 25 |
+
- split: train
|
| 26 |
+
path: data/train.jsonl
|
| 27 |
+
- split: validation
|
| 28 |
+
path: data/validation.jsonl
|
| 29 |
+
- split: test
|
| 30 |
+
path: data/test.jsonl
|
| 31 |
---
|
| 32 |
+
|
| 33 |
+
# JumpForge-Agentic-SE-3K
|
| 34 |
+
|
| 35 |
+
**JumpForge-Agentic-SE-3K** is a structured synthetic dataset for training and evaluating
|
| 36 |
+
AI software-engineering agents. Its primary target is **agent behavior across the software
|
| 37 |
+
engineering lifecycle**, not raw code generation or memorization of programming-language syntax.
|
| 38 |
+
|
| 39 |
+
The dataset teaches an agent to:
|
| 40 |
+
|
| 41 |
+
- understand intent and ambiguity before acting;
|
| 42 |
+
- explore repositories and trace system behavior;
|
| 43 |
+
- decompose work into reversible steps;
|
| 44 |
+
- select tools based on information value;
|
| 45 |
+
- debug causally instead of patching symptoms;
|
| 46 |
+
- preserve contracts, security, and operational safety;
|
| 47 |
+
- verify changes with failure-focused tests;
|
| 48 |
+
- recover from failed actions;
|
| 49 |
+
- calibrate uncertainty and escalate responsibly;
|
| 50 |
+
- communicate evidence, risk, and remaining unknowns;
|
| 51 |
+
- maintain state across long-horizon engineering tasks.
|
| 52 |
+
|
| 53 |
+
## Dataset size
|
| 54 |
+
|
| 55 |
+
| Split | Records | Archetype groups |
|
| 56 |
+
|---|---:|---:|
|
| 57 |
+
| Train | 2400 | 96 |
|
| 58 |
+
| Validation | 300 | 12 |
|
| 59 |
+
| Test | 300 | 12 |
|
| 60 |
+
| **Total** | **3,000** | **120** |
|
| 61 |
+
|
| 62 |
+
Each archetype contains 25 independently parameterized scenarios. Archetypes are kept entirely
|
| 63 |
+
inside one split to reduce behavioral-template leakage between train, validation, and test.
|
| 64 |
+
|
| 65 |
+
## Behavioral taxonomy
|
| 66 |
+
|
| 67 |
+
The dataset has 12 top-level families and 120 archetypes:
|
| 68 |
+
|
| 69 |
+
1. Problem understanding
|
| 70 |
+
2. Repository exploration
|
| 71 |
+
3. Planning and decomposition
|
| 72 |
+
4. Tool selection
|
| 73 |
+
5. Debugging behavior
|
| 74 |
+
6. Safe modification
|
| 75 |
+
7. Verification and testing
|
| 76 |
+
8. Error recovery
|
| 77 |
+
9. Security-aware engineering
|
| 78 |
+
10. Uncertainty and escalation
|
| 79 |
+
11. Communication and reporting
|
| 80 |
+
12. Long-horizon execution
|
| 81 |
+
|
| 82 |
+
See `docs/TAXONOMY.md` and `configs/taxonomy.json`.
|
| 83 |
+
|
| 84 |
+
## Record design
|
| 85 |
+
|
| 86 |
+
Each record includes:
|
| 87 |
+
|
| 88 |
+
- user request and system context;
|
| 89 |
+
- repository structure and relevant files;
|
| 90 |
+
- evidence, logs, and a focused failing test;
|
| 91 |
+
- hidden ground truth for evaluation;
|
| 92 |
+
- ideal agent assessment, assumptions, plan, and tool trace;
|
| 93 |
+
- observations, decision, implementation strategy, verification, and stopping criteria;
|
| 94 |
+
- bad-behavior counterexamples;
|
| 95 |
+
- evaluation rubric with must-do and must-not-do conditions;
|
| 96 |
+
- chat-style `messages` for SFT-compatible workflows;
|
| 97 |
+
- machine-validation metadata and hashes.
|
| 98 |
+
|
| 99 |
+
## Example access
|
| 100 |
+
|
| 101 |
+
```python
|
| 102 |
+
from datasets import load_dataset
|
| 103 |
+
|
| 104 |
+
dataset = load_dataset("jumplander/JumpForge-Agentic-SE-3K")
|
| 105 |
+
print(dataset["train"][0]["task"])
|
| 106 |
+
```
|
| 107 |
+
|
| 108 |
+
Local JSONL:
|
| 109 |
+
|
| 110 |
+
```python
|
| 111 |
+
import json
|
| 112 |
+
|
| 113 |
+
with open("data/train.jsonl", encoding="utf-8") as f:
|
| 114 |
+
first = json.loads(next(f))
|
| 115 |
+
|
| 116 |
+
print(first["ideal_agent_behavior"]["plan"])
|
| 117 |
+
```
|
| 118 |
+
|
| 119 |
+
## Deduplication and leakage controls
|
| 120 |
+
|
| 121 |
+
The release includes machine-readable reports under `reports/`.
|
| 122 |
+
|
| 123 |
+
Current generated-release audit:
|
| 124 |
+
|
| 125 |
+
- exact duplicate IDs: **0**
|
| 126 |
+
- exact duplicate user requests: **0**
|
| 127 |
+
- normalized duplicate user requests: **0**
|
| 128 |
+
- duplicate final responses: **0**
|
| 129 |
+
- duplicate structural fingerprints: **0**
|
| 130 |
+
- archetype split leakage: **0**
|
| 131 |
+
- maximum TF-IDF nearest-neighbor similarity: **0.7350**
|
| 132 |
+
|
| 133 |
+
The lexical check is a heuristic. It should not be interpreted as proof that all records are
|
| 134 |
+
semantically independent. Before high-stakes model training or research publication, perform
|
| 135 |
+
expert review and embedding/model-assisted semantic audits.
|
| 136 |
+
|
| 137 |
+
## Important limitations
|
| 138 |
+
|
| 139 |
+
- The dataset is synthetic.
|
| 140 |
+
- Machine validation checks structure, consistency constraints, uniqueness, and split policy.
|
| 141 |
+
- The included heuristic quality score is not human quality certification.
|
| 142 |
+
- Code paths and evidence are realistic abstractions, not executable full repositories.
|
| 143 |
+
- Tool traces describe expected agent decisions; they are not logs from tools actually executed.
|
| 144 |
+
- Some phrasing and structural regularity remains because the dataset is generated from a controlled taxonomy.
|
| 145 |
+
|
| 146 |
+
## Recommended uses
|
| 147 |
+
|
| 148 |
+
- supervised fine-tuning for agent planning and communication;
|
| 149 |
+
- behavior scoring and evaluator development;
|
| 150 |
+
- tool-selection and stopping-criteria research;
|
| 151 |
+
- repository-reasoning curriculum design;
|
| 152 |
+
- preference-data generation using the included bad behaviors;
|
| 153 |
+
- benchmark prototyping for safe software-engineering agents.
|
| 154 |
+
|
| 155 |
+
## Not recommended
|
| 156 |
+
|
| 157 |
+
- measuring real-world patch correctness without executable repositories;
|
| 158 |
+
- claiming production-grade coding performance from this dataset alone;
|
| 159 |
+
- security certification;
|
| 160 |
+
- direct autonomous execution on sensitive systems.
|
| 161 |
+
|
| 162 |
+
## License
|
| 163 |
+
|
| 164 |
+
CC BY 4.0. See `LICENSE`.
|
| 165 |
+
|
| 166 |
+
## Attribution
|
| 167 |
+
|
| 168 |
+
Created by **JumpLander** for research on agentic software engineering.
|
README_FA.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# راهنمای فارسی JumpForge-Agentic-SE-3K
|
| 2 |
+
|
| 3 |
+
این پروژه یک دیتاست ۳۰۰۰ رکوردی برای **رفتار ایجنت مهندسی نرمافزار** است، نه صرفاً تولید کد.
|
| 4 |
+
|
| 5 |
+
محورهای اصلی:
|
| 6 |
+
|
| 7 |
+
- فهم درخواست و ابهام
|
| 8 |
+
- شناخت مخزن و جریان داده
|
| 9 |
+
- برنامهریزی و انتخاب ابزار
|
| 10 |
+
- دیباگ مبتنی بر شواهد
|
| 11 |
+
- تغییر امن و محدود
|
| 12 |
+
- تست و راستیآزمایی
|
| 13 |
+
- بازیابی از شکست ابزار یا patch
|
| 14 |
+
- امنیت و مرزهای اعتماد
|
| 15 |
+
- مدیریت عدم قطعیت
|
| 16 |
+
- گزارشدهی
|
| 17 |
+
- اجرای چندمرحلهای و بلندمدت
|
| 18 |
+
|
| 19 |
+
ساختار پروژه شامل فایلهای train، validation و test، اسکریپتهای تولید و audit،
|
| 20 |
+
schema، taxonomy، گزارش تکرار و نمونه رکوردهاست.
|
| 21 |
+
|
| 22 |
+
نکته مهم: دادهها synthetic هستند. نبود تکرار دقیق و ساختاری بهصورت ماشینی بررسی شده،
|
| 23 |
+
اما برای انتشار پژوهشی یا آموزش پرهزینه، بازبینی انسانی و semantic audit تکمیلی توصیه میشود.
|
configs/generation_catalog.json
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"domains": [
|
| 3 |
+
"payments",
|
| 4 |
+
"healthcare scheduling",
|
| 5 |
+
"developer tooling",
|
| 6 |
+
"identity management",
|
| 7 |
+
"e-commerce",
|
| 8 |
+
"logistics",
|
| 9 |
+
"collaboration software",
|
| 10 |
+
"analytics",
|
| 11 |
+
"education technology",
|
| 12 |
+
"media processing",
|
| 13 |
+
"cloud infrastructure",
|
| 14 |
+
"customer support",
|
| 15 |
+
"document management",
|
| 16 |
+
"IoT operations",
|
| 17 |
+
"financial reporting",
|
| 18 |
+
"search infrastructure",
|
| 19 |
+
"content moderation",
|
| 20 |
+
"HR systems",
|
| 21 |
+
"subscription billing",
|
| 22 |
+
"inventory",
|
| 23 |
+
"observability",
|
| 24 |
+
"data pipelines",
|
| 25 |
+
"feature management",
|
| 26 |
+
"cybersecurity operations",
|
| 27 |
+
"workflow automation"
|
| 28 |
+
],
|
| 29 |
+
"architectures": [
|
| 30 |
+
"modular monolith",
|
| 31 |
+
"event-driven services",
|
| 32 |
+
"service-repository application",
|
| 33 |
+
"microservice platform",
|
| 34 |
+
"serverless workflow",
|
| 35 |
+
"worker-based pipeline",
|
| 36 |
+
"multi-tenant SaaS",
|
| 37 |
+
"API gateway architecture",
|
| 38 |
+
"batch processing system",
|
| 39 |
+
"plugin-oriented application"
|
| 40 |
+
],
|
| 41 |
+
"stacks": {
|
| 42 |
+
"python_fastapi": {
|
| 43 |
+
"language": "Python",
|
| 44 |
+
"framework": "FastAPI",
|
| 45 |
+
"test": "pytest",
|
| 46 |
+
"build": "uv",
|
| 47 |
+
"files": [
|
| 48 |
+
"app/api/routes.py",
|
| 49 |
+
"app/services/core.py",
|
| 50 |
+
"app/repositories/store.py",
|
| 51 |
+
"app/workers/events.py",
|
| 52 |
+
"app/security/policy.py",
|
| 53 |
+
"tests/test_behavior.py"
|
| 54 |
+
]
|
| 55 |
+
},
|
| 56 |
+
"python_django": {
|
| 57 |
+
"language": "Python",
|
| 58 |
+
"framework": "Django",
|
| 59 |
+
"test": "pytest-django",
|
| 60 |
+
"build": "pip",
|
| 61 |
+
"files": [
|
| 62 |
+
"project/urls.py",
|
| 63 |
+
"app/views.py",
|
| 64 |
+
"app/services.py",
|
| 65 |
+
"app/models.py",
|
| 66 |
+
"app/middleware.py",
|
| 67 |
+
"tests/test_workflow.py"
|
| 68 |
+
]
|
| 69 |
+
},
|
| 70 |
+
"typescript_node": {
|
| 71 |
+
"language": "TypeScript",
|
| 72 |
+
"framework": "Node.js",
|
| 73 |
+
"test": "Vitest",
|
| 74 |
+
"build": "pnpm",
|
| 75 |
+
"files": [
|
| 76 |
+
"src/http/routes.ts",
|
| 77 |
+
"src/services/core.ts",
|
| 78 |
+
"src/data/repository.ts",
|
| 79 |
+
"src/workers/consumer.ts",
|
| 80 |
+
"src/security/policy.ts",
|
| 81 |
+
"test/workflow.test.ts"
|
| 82 |
+
]
|
| 83 |
+
},
|
| 84 |
+
"typescript_react": {
|
| 85 |
+
"language": "TypeScript",
|
| 86 |
+
"framework": "React",
|
| 87 |
+
"test": "Playwright",
|
| 88 |
+
"build": "Vite",
|
| 89 |
+
"files": [
|
| 90 |
+
"src/app/router.tsx",
|
| 91 |
+
"src/features/state.ts",
|
| 92 |
+
"src/api/client.ts",
|
| 93 |
+
"src/components/Workflow.tsx",
|
| 94 |
+
"src/auth/session.ts",
|
| 95 |
+
"tests/workflow.spec.ts"
|
| 96 |
+
]
|
| 97 |
+
},
|
| 98 |
+
"java_spring": {
|
| 99 |
+
"language": "Java",
|
| 100 |
+
"framework": "Spring Boot",
|
| 101 |
+
"test": "JUnit",
|
| 102 |
+
"build": "Gradle",
|
| 103 |
+
"files": [
|
| 104 |
+
"src/main/java/app/Controller.java",
|
| 105 |
+
"src/main/java/app/Service.java",
|
| 106 |
+
"src/main/java/app/Repository.java",
|
| 107 |
+
"src/main/java/app/Worker.java",
|
| 108 |
+
"src/main/java/app/SecurityPolicy.java",
|
| 109 |
+
"src/test/java/app/WorkflowTest.java"
|
| 110 |
+
]
|
| 111 |
+
},
|
| 112 |
+
"go_chi": {
|
| 113 |
+
"language": "Go",
|
| 114 |
+
"framework": "Chi",
|
| 115 |
+
"test": "go test",
|
| 116 |
+
"build": "Go modules",
|
| 117 |
+
"files": [
|
| 118 |
+
"internal/http/routes.go",
|
| 119 |
+
"internal/service/core.go",
|
| 120 |
+
"internal/store/repository.go",
|
| 121 |
+
"internal/worker/consumer.go",
|
| 122 |
+
"internal/security/policy.go",
|
| 123 |
+
"internal/service/core_test.go"
|
| 124 |
+
]
|
| 125 |
+
},
|
| 126 |
+
"csharp_dotnet": {
|
| 127 |
+
"language": "C#",
|
| 128 |
+
"framework": "ASP.NET Core",
|
| 129 |
+
"test": "xUnit",
|
| 130 |
+
"build": "dotnet",
|
| 131 |
+
"files": [
|
| 132 |
+
"Api/Controllers/WorkflowController.cs",
|
| 133 |
+
"Core/WorkflowService.cs",
|
| 134 |
+
"Data/WorkflowRepository.cs",
|
| 135 |
+
"Workers/EventWorker.cs",
|
| 136 |
+
"Security/AuthorizationPolicy.cs",
|
| 137 |
+
"Tests/WorkflowTests.cs"
|
| 138 |
+
]
|
| 139 |
+
},
|
| 140 |
+
"php_laravel": {
|
| 141 |
+
"language": "PHP",
|
| 142 |
+
"framework": "Laravel",
|
| 143 |
+
"test": "PHPUnit",
|
| 144 |
+
"build": "Composer",
|
| 145 |
+
"files": [
|
| 146 |
+
"routes/api.php",
|
| 147 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 148 |
+
"app/Services/WorkflowService.php",
|
| 149 |
+
"app/Repositories/WorkflowRepository.php",
|
| 150 |
+
"app/Policies/WorkflowPolicy.php",
|
| 151 |
+
"tests/Feature/WorkflowTest.php"
|
| 152 |
+
]
|
| 153 |
+
},
|
| 154 |
+
"rust_axum": {
|
| 155 |
+
"language": "Rust",
|
| 156 |
+
"framework": "Axum",
|
| 157 |
+
"test": "cargo test",
|
| 158 |
+
"build": "Cargo",
|
| 159 |
+
"files": [
|
| 160 |
+
"src/http/routes.rs",
|
| 161 |
+
"src/services/core.rs",
|
| 162 |
+
"src/store/repository.rs",
|
| 163 |
+
"src/workers/consumer.rs",
|
| 164 |
+
"src/security/policy.rs",
|
| 165 |
+
"tests/workflow.rs"
|
| 166 |
+
]
|
| 167 |
+
},
|
| 168 |
+
"kotlin_ktor": {
|
| 169 |
+
"language": "Kotlin",
|
| 170 |
+
"framework": "Ktor",
|
| 171 |
+
"test": "Kotest",
|
| 172 |
+
"build": "Gradle",
|
| 173 |
+
"files": [
|
| 174 |
+
"src/main/kotlin/app/Routes.kt",
|
| 175 |
+
"src/main/kotlin/app/Service.kt",
|
| 176 |
+
"src/main/kotlin/app/Repository.kt",
|
| 177 |
+
"src/main/kotlin/app/Worker.kt",
|
| 178 |
+
"src/main/kotlin/app/Security.kt",
|
| 179 |
+
"src/test/kotlin/app/WorkflowSpec.kt"
|
| 180 |
+
]
|
| 181 |
+
},
|
| 182 |
+
"ruby_rails": {
|
| 183 |
+
"language": "Ruby",
|
| 184 |
+
"framework": "Rails",
|
| 185 |
+
"test": "RSpec",
|
| 186 |
+
"build": "Bundler",
|
| 187 |
+
"files": [
|
| 188 |
+
"config/routes.rb",
|
| 189 |
+
"app/controllers/workflows_controller.rb",
|
| 190 |
+
"app/services/workflow_service.rb",
|
| 191 |
+
"app/models/workflow.rb",
|
| 192 |
+
"app/policies/workflow_policy.rb",
|
| 193 |
+
"spec/requests/workflows_spec.rb"
|
| 194 |
+
]
|
| 195 |
+
},
|
| 196 |
+
"cpp_cmake": {
|
| 197 |
+
"language": "C++",
|
| 198 |
+
"framework": "CMake service",
|
| 199 |
+
"test": "Catch2",
|
| 200 |
+
"build": "CMake",
|
| 201 |
+
"files": [
|
| 202 |
+
"src/http/routes.cpp",
|
| 203 |
+
"src/core/workflow.cpp",
|
| 204 |
+
"src/data/repository.cpp",
|
| 205 |
+
"src/workers/consumer.cpp",
|
| 206 |
+
"src/security/policy.cpp",
|
| 207 |
+
"tests/workflow_test.cpp"
|
| 208 |
+
]
|
| 209 |
+
}
|
| 210 |
+
},
|
| 211 |
+
"operational_modifiers": [
|
| 212 |
+
"after a warm-cache transition",
|
| 213 |
+
"under two concurrent requests",
|
| 214 |
+
"during a rolling deployment",
|
| 215 |
+
"at a daylight-saving boundary",
|
| 216 |
+
"when retries overlap",
|
| 217 |
+
"with legacy records created before the last migration",
|
| 218 |
+
"immediately after a feature flag changes",
|
| 219 |
+
"during a partial network failure",
|
| 220 |
+
"after switching tenants in the same browser session",
|
| 221 |
+
"following a dependency upgrade",
|
| 222 |
+
"near the end of a paginated result set",
|
| 223 |
+
"when the payload contains an empty optional field",
|
| 224 |
+
"after a worker restarts",
|
| 225 |
+
"while the queue is under backpressure",
|
| 226 |
+
"during an idempotent event replay",
|
| 227 |
+
"when application nodes have mild clock skew",
|
| 228 |
+
"after a zero-downtime schema migration",
|
| 229 |
+
"while old and new application versions coexist",
|
| 230 |
+
"when a fallback code path executes",
|
| 231 |
+
"during cooperative cancellation",
|
| 232 |
+
"after a duplicate event delivery",
|
| 233 |
+
"with a stale session token",
|
| 234 |
+
"when configuration is hot-reloaded",
|
| 235 |
+
"under high-cardinality traffic",
|
| 236 |
+
"when a client omits a recently added field"
|
| 237 |
+
],
|
| 238 |
+
"constraints": [
|
| 239 |
+
"Do not change the public API contract.",
|
| 240 |
+
"Do not add a new runtime dependency.",
|
| 241 |
+
"Preserve backward compatibility with existing records.",
|
| 242 |
+
"Keep the change reversible within one deployment.",
|
| 243 |
+
"Do not expose secrets, tokens, or production data.",
|
| 244 |
+
"Avoid destructive database operations.",
|
| 245 |
+
"Keep retries and idempotency semantics intact.",
|
| 246 |
+
"Limit the patch to the smallest responsible scope.",
|
| 247 |
+
"Do not suppress errors without explaining their cause.",
|
| 248 |
+
"Preserve tenant isolation.",
|
| 249 |
+
"Do not weaken authorization checks.",
|
| 250 |
+
"Use the existing test and build toolchain.",
|
| 251 |
+
"Do not assume access to production systems.",
|
| 252 |
+
"Separate observed facts from hypotheses.",
|
| 253 |
+
"Stop before any irreversible operation unless evidence is sufficient."
|
| 254 |
+
]
|
| 255 |
+
}
|
configs/taxonomy.json
ADDED
|
@@ -0,0 +1,266 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"problem_understanding": {
|
| 3 |
+
"label": "Problem Understanding",
|
| 4 |
+
"summary": "Interpret intent, expose ambiguity, identify acceptance criteria, and resist premature coding.",
|
| 5 |
+
"behavior_targets": [
|
| 6 |
+
"intent_modeling",
|
| 7 |
+
"scope_control",
|
| 8 |
+
"assumption_tracking",
|
| 9 |
+
"acceptance_criteria"
|
| 10 |
+
],
|
| 11 |
+
"archetypes": [
|
| 12 |
+
"ambiguous_scope",
|
| 13 |
+
"conflicting_requirements",
|
| 14 |
+
"hidden_acceptance_criteria",
|
| 15 |
+
"non_reproducible_report",
|
| 16 |
+
"cross_layer_symptom",
|
| 17 |
+
"premature_solution_request",
|
| 18 |
+
"missing_operational_context",
|
| 19 |
+
"unclear_component_ownership",
|
| 20 |
+
"backward_compatibility_ambiguity",
|
| 21 |
+
"user_intent_vs_implementation"
|
| 22 |
+
]
|
| 23 |
+
},
|
| 24 |
+
"repository_exploration": {
|
| 25 |
+
"label": "Repository Exploration",
|
| 26 |
+
"summary": "Build a grounded mental model of a codebase before changing it.",
|
| 27 |
+
"behavior_targets": [
|
| 28 |
+
"repository_navigation",
|
| 29 |
+
"dependency_mapping",
|
| 30 |
+
"data_flow_tracing",
|
| 31 |
+
"evidence_collection"
|
| 32 |
+
],
|
| 33 |
+
"archetypes": [
|
| 34 |
+
"entry_point_discovery",
|
| 35 |
+
"data_flow_tracing",
|
| 36 |
+
"authentication_boundary_mapping",
|
| 37 |
+
"configuration_source_tracing",
|
| 38 |
+
"event_lifecycle_tracing",
|
| 39 |
+
"dependency_ownership",
|
| 40 |
+
"dead_code_detection",
|
| 41 |
+
"feature_flag_path_analysis",
|
| 42 |
+
"schema_migration_impact",
|
| 43 |
+
"external_integration_boundary"
|
| 44 |
+
]
|
| 45 |
+
},
|
| 46 |
+
"planning_decomposition": {
|
| 47 |
+
"label": "Planning and Decomposition",
|
| 48 |
+
"summary": "Convert goals into ordered, reversible, testable work.",
|
| 49 |
+
"behavior_targets": [
|
| 50 |
+
"task_decomposition",
|
| 51 |
+
"change_sequencing",
|
| 52 |
+
"risk_planning",
|
| 53 |
+
"rollback_design"
|
| 54 |
+
],
|
| 55 |
+
"archetypes": [
|
| 56 |
+
"minimal_patch_plan",
|
| 57 |
+
"phased_refactor_plan",
|
| 58 |
+
"dependency_upgrade_plan",
|
| 59 |
+
"migration_and_rollback_plan",
|
| 60 |
+
"cross_service_change_sequence",
|
| 61 |
+
"test_first_implementation_plan",
|
| 62 |
+
"observability_rollout_plan",
|
| 63 |
+
"performance_optimization_plan",
|
| 64 |
+
"api_deprecation_plan",
|
| 65 |
+
"incident_remediation_plan"
|
| 66 |
+
]
|
| 67 |
+
},
|
| 68 |
+
"tool_selection": {
|
| 69 |
+
"label": "Tool Selection",
|
| 70 |
+
"summary": "Choose the smallest useful tool action and update the plan from observations.",
|
| 71 |
+
"behavior_targets": [
|
| 72 |
+
"tool_choice",
|
| 73 |
+
"cost_aware_search",
|
| 74 |
+
"observation_use",
|
| 75 |
+
"action_ordering"
|
| 76 |
+
],
|
| 77 |
+
"archetypes": [
|
| 78 |
+
"search_before_read",
|
| 79 |
+
"narrow_test_selection",
|
| 80 |
+
"static_analysis_choice",
|
| 81 |
+
"log_metric_correlation",
|
| 82 |
+
"dependency_graph_inspection",
|
| 83 |
+
"git_history_use",
|
| 84 |
+
"sandbox_reproduction",
|
| 85 |
+
"schema_diff_inspection",
|
| 86 |
+
"concurrency_profiler_selection",
|
| 87 |
+
"security_scanner_interpretation"
|
| 88 |
+
]
|
| 89 |
+
},
|
| 90 |
+
"debugging_behavior": {
|
| 91 |
+
"label": "Debugging Behavior",
|
| 92 |
+
"summary": "Form hypotheses, seek discriminating evidence, isolate root causes, and avoid symptom patches.",
|
| 93 |
+
"behavior_targets": [
|
| 94 |
+
"hypothesis_generation",
|
| 95 |
+
"root_cause_analysis",
|
| 96 |
+
"evidence_discrimination",
|
| 97 |
+
"causal_reasoning"
|
| 98 |
+
],
|
| 99 |
+
"archetypes": [
|
| 100 |
+
"stale_cache_key",
|
| 101 |
+
"race_condition",
|
| 102 |
+
"transaction_boundary_error",
|
| 103 |
+
"timezone_drift",
|
| 104 |
+
"pagination_cursor_error",
|
| 105 |
+
"retry_storm",
|
| 106 |
+
"partial_write",
|
| 107 |
+
"async_cancellation_leak",
|
| 108 |
+
"serializer_contract_mismatch",
|
| 109 |
+
"permission_propagation_error"
|
| 110 |
+
]
|
| 111 |
+
},
|
| 112 |
+
"safe_modification": {
|
| 113 |
+
"label": "Safe Modification",
|
| 114 |
+
"summary": "Make bounded, reversible changes while preserving contracts and operational safety.",
|
| 115 |
+
"behavior_targets": [
|
| 116 |
+
"minimal_change",
|
| 117 |
+
"contract_preservation",
|
| 118 |
+
"reversibility",
|
| 119 |
+
"blast_radius_control"
|
| 120 |
+
],
|
| 121 |
+
"archetypes": [
|
| 122 |
+
"public_api_preservation",
|
| 123 |
+
"configuration_compatibility",
|
| 124 |
+
"idempotent_migration",
|
| 125 |
+
"minimal_diff_patch",
|
| 126 |
+
"secret_safe_change",
|
| 127 |
+
"dependency_free_fix",
|
| 128 |
+
"feature_flag_rollout",
|
| 129 |
+
"schema_preserving_change",
|
| 130 |
+
"concurrency_safe_patch",
|
| 131 |
+
"reversible_refactor"
|
| 132 |
+
]
|
| 133 |
+
},
|
| 134 |
+
"verification_testing": {
|
| 135 |
+
"label": "Verification and Testing",
|
| 136 |
+
"summary": "Prove behavior, test the failure mode, check regressions, and define stopping criteria.",
|
| 137 |
+
"behavior_targets": [
|
| 138 |
+
"verification_design",
|
| 139 |
+
"regression_control",
|
| 140 |
+
"test_relevance",
|
| 141 |
+
"stopping_criteria"
|
| 142 |
+
],
|
| 143 |
+
"archetypes": [
|
| 144 |
+
"regression_suite_design",
|
| 145 |
+
"property_based_verification",
|
| 146 |
+
"load_and_latency_verification",
|
| 147 |
+
"authorization_matrix_test",
|
| 148 |
+
"migration_dry_run",
|
| 149 |
+
"observability_assertion",
|
| 150 |
+
"rollback_verification",
|
| 151 |
+
"flaky_test_isolation",
|
| 152 |
+
"contract_test_design",
|
| 153 |
+
"cross_platform_verification"
|
| 154 |
+
]
|
| 155 |
+
},
|
| 156 |
+
"error_recovery": {
|
| 157 |
+
"label": "Error Recovery",
|
| 158 |
+
"summary": "Recover from failed actions, preserve state, and revise plans rather than compounding damage.",
|
| 159 |
+
"behavior_targets": [
|
| 160 |
+
"failure_recovery",
|
| 161 |
+
"state_preservation",
|
| 162 |
+
"plan_revision",
|
| 163 |
+
"safe_retry"
|
| 164 |
+
],
|
| 165 |
+
"archetypes": [
|
| 166 |
+
"failed_patch_rollback",
|
| 167 |
+
"misleading_test_failure",
|
| 168 |
+
"tool_timeout_recovery",
|
| 169 |
+
"corrupted_workspace_recovery",
|
| 170 |
+
"dependency_install_failure",
|
| 171 |
+
"conflicting_edit_resolution",
|
| 172 |
+
"incomplete_log_recovery",
|
| 173 |
+
"unavailable_service_fallback",
|
| 174 |
+
"false_positive_scanner",
|
| 175 |
+
"partial_migration_recovery"
|
| 176 |
+
]
|
| 177 |
+
},
|
| 178 |
+
"security_awareness": {
|
| 179 |
+
"label": "Security-Aware Engineering",
|
| 180 |
+
"summary": "Recognize trust boundaries, avoid unsafe execution, preserve secrets, and verify authorization.",
|
| 181 |
+
"behavior_targets": [
|
| 182 |
+
"threat_modeling",
|
| 183 |
+
"trust_boundary_reasoning",
|
| 184 |
+
"secret_hygiene",
|
| 185 |
+
"authorization_validation"
|
| 186 |
+
],
|
| 187 |
+
"archetypes": [
|
| 188 |
+
"injection_boundary",
|
| 189 |
+
"authorization_bypass",
|
| 190 |
+
"secret_exposure",
|
| 191 |
+
"path_traversal",
|
| 192 |
+
"server_side_request_forgery",
|
| 193 |
+
"unsafe_deserialization",
|
| 194 |
+
"dependency_vulnerability",
|
| 195 |
+
"tenant_isolation",
|
| 196 |
+
"csrf_and_session_integrity",
|
| 197 |
+
"command_execution_boundary"
|
| 198 |
+
]
|
| 199 |
+
},
|
| 200 |
+
"uncertainty_escalation": {
|
| 201 |
+
"label": "Uncertainty and Escalation",
|
| 202 |
+
"summary": "Calibrate confidence, distinguish facts from assumptions, and escalate irreversible or underspecified work.",
|
| 203 |
+
"behavior_targets": [
|
| 204 |
+
"uncertainty_reporting",
|
| 205 |
+
"confidence_calibration",
|
| 206 |
+
"escalation_judgment",
|
| 207 |
+
"assumption_management"
|
| 208 |
+
],
|
| 209 |
+
"archetypes": [
|
| 210 |
+
"missing_reproduction",
|
| 211 |
+
"production_only_issue",
|
| 212 |
+
"contradictory_evidence",
|
| 213 |
+
"unknown_ownership",
|
| 214 |
+
"irreversible_action",
|
| 215 |
+
"insufficient_permissions",
|
| 216 |
+
"ambiguous_data_loss_risk",
|
| 217 |
+
"third_party_behavior",
|
| 218 |
+
"compliance_uncertainty",
|
| 219 |
+
"confidence_calibration"
|
| 220 |
+
]
|
| 221 |
+
},
|
| 222 |
+
"communication_reporting": {
|
| 223 |
+
"label": "Communication and Reporting",
|
| 224 |
+
"summary": "Communicate evidence, decisions, risks, progress, and unresolved questions without noise.",
|
| 225 |
+
"behavior_targets": [
|
| 226 |
+
"progress_reporting",
|
| 227 |
+
"evidence_backed_summary",
|
| 228 |
+
"risk_disclosure",
|
| 229 |
+
"audience_adaptation"
|
| 230 |
+
],
|
| 231 |
+
"archetypes": [
|
| 232 |
+
"concise_progress_update",
|
| 233 |
+
"evidence_backed_conclusion",
|
| 234 |
+
"tradeoff_report",
|
| 235 |
+
"unresolved_risk_disclosure",
|
| 236 |
+
"rollback_note",
|
| 237 |
+
"user_facing_change_summary",
|
| 238 |
+
"incident_handoff",
|
| 239 |
+
"review_request",
|
| 240 |
+
"nontechnical_stakeholder_summary",
|
| 241 |
+
"postmortem_action_list"
|
| 242 |
+
]
|
| 243 |
+
},
|
| 244 |
+
"long_horizon_execution": {
|
| 245 |
+
"label": "Long-Horizon Execution",
|
| 246 |
+
"summary": "Maintain state, dependencies, milestones, and verification across multi-step engineering work.",
|
| 247 |
+
"behavior_targets": [
|
| 248 |
+
"long_horizon_planning",
|
| 249 |
+
"state_tracking",
|
| 250 |
+
"milestone_management",
|
| 251 |
+
"cross_task_consistency"
|
| 252 |
+
],
|
| 253 |
+
"archetypes": [
|
| 254 |
+
"multi_repository_feature",
|
| 255 |
+
"staged_data_migration",
|
| 256 |
+
"platform_runtime_upgrade",
|
| 257 |
+
"legacy_system_decomposition",
|
| 258 |
+
"observability_program",
|
| 259 |
+
"agent_memory_across_tasks",
|
| 260 |
+
"test_debt_reduction",
|
| 261 |
+
"security_hardening_campaign",
|
| 262 |
+
"performance_roadmap",
|
| 263 |
+
"release_train_coordination"
|
| 264 |
+
]
|
| 265 |
+
}
|
| 266 |
+
}
|
data/all.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0950c02e6c9548c6f2e7e65a6705445a7b36c1c818faaba3d4832cc77b85c240
|
| 3 |
+
size 40513736
|
data/test.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca6b4e697a030f2605cfe92b7e5660d31356e8985afc7c1d0715c340c0e6f538
|
| 3 |
+
size 32402335
|
data/validation.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
docs/ALGORITHM.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Generation Algorithm
|
| 2 |
+
|
| 3 |
+
## Design principle
|
| 4 |
+
|
| 5 |
+
The generator starts from a behavioral archetype and a structured scenario blueprint.
|
| 6 |
+
It does not begin from a prompt template or a programming language.
|
| 7 |
+
|
| 8 |
+
## Pipeline
|
| 9 |
+
|
| 10 |
+
1. Select an underrepresented behavioral family.
|
| 11 |
+
2. Select a narrow archetype within that family.
|
| 12 |
+
3. Assign a group-aware dataset split at the archetype level.
|
| 13 |
+
4. Construct a compatible environment:
|
| 14 |
+
- domain;
|
| 15 |
+
- architecture;
|
| 16 |
+
- programming stack;
|
| 17 |
+
- component interaction;
|
| 18 |
+
- operational modifier;
|
| 19 |
+
- constraints.
|
| 20 |
+
5. Produce evidence from the intended causal mechanism.
|
| 21 |
+
6. Build repository context and relevant files.
|
| 22 |
+
7. Produce the user request.
|
| 23 |
+
8. Produce ideal agent behavior:
|
| 24 |
+
- assessment;
|
| 25 |
+
- assumptions;
|
| 26 |
+
- plan;
|
| 27 |
+
- tool trace;
|
| 28 |
+
- observations;
|
| 29 |
+
- decision;
|
| 30 |
+
- implementation strategy;
|
| 31 |
+
- verification;
|
| 32 |
+
- stopping criteria;
|
| 33 |
+
- final communication.
|
| 34 |
+
9. Produce contrasting bad behavior.
|
| 35 |
+
10. Validate against JSON Schema and consistency rules.
|
| 36 |
+
11. Compute exact, normalized, structural, and lexical deduplication reports.
|
| 37 |
+
12. Export JSONL files and audit artifacts.
|
| 38 |
+
|
| 39 |
+
## Structural uniqueness key
|
| 40 |
+
|
| 41 |
+
Each record fingerprint includes:
|
| 42 |
+
|
| 43 |
+
- family
|
| 44 |
+
- archetype
|
| 45 |
+
- domain
|
| 46 |
+
- architecture
|
| 47 |
+
- stack
|
| 48 |
+
- interacting component pair
|
| 49 |
+
- operational modifier
|
| 50 |
+
|
| 51 |
+
This prevents records from being treated as unique merely because a project name or language changed.
|
| 52 |
+
|
| 53 |
+
## Split policy
|
| 54 |
+
|
| 55 |
+
All 25 scenarios for one archetype remain in the same split. This reduces direct archetype leakage.
|
| 56 |
+
The test set therefore measures transfer to held-out behavioral archetypes rather than random rows.
|
docs/LIMITATIONS.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Limitations
|
| 2 |
+
|
| 3 |
+
- This is a synthetic behavioral dataset.
|
| 4 |
+
- Repository contexts are structured abstractions rather than complete executable projects.
|
| 5 |
+
- Technical statements are designed to be plausible but have not all been verified by domain experts.
|
| 6 |
+
- Tool traces are intended actions, not observed executions.
|
| 7 |
+
- The generator uses controlled language patterns; semantic regularity may remain.
|
| 8 |
+
- Absence of exact or normalized duplicates does not prove complete semantic uniqueness.
|
| 9 |
+
- The test split holds out archetypes, but it is not a substitute for real-world evaluation.
|
| 10 |
+
- Models can still hallucinate, over-act, leak secrets, or make unsafe changes after training.
|
docs/METHODOLOGY.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Methodology and Review Guidance
|
| 2 |
+
|
| 3 |
+
## Machine checks included
|
| 4 |
+
|
| 5 |
+
- schema completeness
|
| 6 |
+
- ID uniqueness
|
| 7 |
+
- exact user-request uniqueness
|
| 8 |
+
- normalized user-request uniqueness
|
| 9 |
+
- final-response uniqueness
|
| 10 |
+
- structural-fingerprint uniqueness
|
| 11 |
+
- held-out archetype split policy
|
| 12 |
+
- lexical nearest-neighbor audit
|
| 13 |
+
|
| 14 |
+
## Human review recommended
|
| 15 |
+
|
| 16 |
+
A human reviewer should sample every family and check:
|
| 17 |
+
|
| 18 |
+
- whether evidence actually supports the hidden ground truth;
|
| 19 |
+
- whether the tool order is sensible;
|
| 20 |
+
- whether constraints are preserved;
|
| 21 |
+
- whether verification targets the original failure;
|
| 22 |
+
- whether bad-behavior examples are genuinely inferior;
|
| 23 |
+
- whether language remains natural and sufficiently diverse;
|
| 24 |
+
- whether security assumptions are valid.
|
| 25 |
+
|
| 26 |
+
## Suggested release gates
|
| 27 |
+
|
| 28 |
+
1. Review at least 10% of records stratified by family and difficulty.
|
| 29 |
+
2. Reject or rewrite records with generic final responses.
|
| 30 |
+
3. Run an embedding-based semantic audit.
|
| 31 |
+
4. Use a separate model as a critic, but do not treat its score as ground truth.
|
| 32 |
+
5. Execute a subset against real miniature repositories before calling the dataset a benchmark.
|
docs/TAXONOMY.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Behavioral Taxonomy
|
| 2 |
+
|
| 3 |
+
## Problem Understanding (`problem_understanding`)
|
| 4 |
+
|
| 5 |
+
Interpret intent, expose ambiguity, identify acceptance criteria, and resist premature coding.
|
| 6 |
+
|
| 7 |
+
**Behavior targets:** `intent_modeling`, `scope_control`, `assumption_tracking`, `acceptance_criteria`
|
| 8 |
+
|
| 9 |
+
- `ambiguous_scope` — ambiguous scope
|
| 10 |
+
- `conflicting_requirements` — conflicting requirements
|
| 11 |
+
- `hidden_acceptance_criteria` — hidden acceptance criteria
|
| 12 |
+
- `non_reproducible_report` — non reproducible report
|
| 13 |
+
- `cross_layer_symptom` — cross layer symptom
|
| 14 |
+
- `premature_solution_request` — premature solution request
|
| 15 |
+
- `missing_operational_context` — missing operational context
|
| 16 |
+
- `unclear_component_ownership` — unclear component ownership
|
| 17 |
+
- `backward_compatibility_ambiguity` — backward compatibility ambiguity
|
| 18 |
+
- `user_intent_vs_implementation` — user intent vs implementation
|
| 19 |
+
|
| 20 |
+
## Repository Exploration (`repository_exploration`)
|
| 21 |
+
|
| 22 |
+
Build a grounded mental model of a codebase before changing it.
|
| 23 |
+
|
| 24 |
+
**Behavior targets:** `repository_navigation`, `dependency_mapping`, `data_flow_tracing`, `evidence_collection`
|
| 25 |
+
|
| 26 |
+
- `entry_point_discovery` — entry point discovery
|
| 27 |
+
- `data_flow_tracing` — data flow tracing
|
| 28 |
+
- `authentication_boundary_mapping` — authentication boundary mapping
|
| 29 |
+
- `configuration_source_tracing` — configuration source tracing
|
| 30 |
+
- `event_lifecycle_tracing` — event lifecycle tracing
|
| 31 |
+
- `dependency_ownership` — dependency ownership
|
| 32 |
+
- `dead_code_detection` — dead code detection
|
| 33 |
+
- `feature_flag_path_analysis` — feature flag path analysis
|
| 34 |
+
- `schema_migration_impact` — schema migration impact
|
| 35 |
+
- `external_integration_boundary` — external integration boundary
|
| 36 |
+
|
| 37 |
+
## Planning and Decomposition (`planning_decomposition`)
|
| 38 |
+
|
| 39 |
+
Convert goals into ordered, reversible, testable work.
|
| 40 |
+
|
| 41 |
+
**Behavior targets:** `task_decomposition`, `change_sequencing`, `risk_planning`, `rollback_design`
|
| 42 |
+
|
| 43 |
+
- `minimal_patch_plan` — minimal patch plan
|
| 44 |
+
- `phased_refactor_plan` — phased refactor plan
|
| 45 |
+
- `dependency_upgrade_plan` — dependency upgrade plan
|
| 46 |
+
- `migration_and_rollback_plan` — migration and rollback plan
|
| 47 |
+
- `cross_service_change_sequence` — cross service change sequence
|
| 48 |
+
- `test_first_implementation_plan` — test first implementation plan
|
| 49 |
+
- `observability_rollout_plan` — observability rollout plan
|
| 50 |
+
- `performance_optimization_plan` — performance optimization plan
|
| 51 |
+
- `api_deprecation_plan` — api deprecation plan
|
| 52 |
+
- `incident_remediation_plan` — incident remediation plan
|
| 53 |
+
|
| 54 |
+
## Tool Selection (`tool_selection`)
|
| 55 |
+
|
| 56 |
+
Choose the smallest useful tool action and update the plan from observations.
|
| 57 |
+
|
| 58 |
+
**Behavior targets:** `tool_choice`, `cost_aware_search`, `observation_use`, `action_ordering`
|
| 59 |
+
|
| 60 |
+
- `search_before_read` — search before read
|
| 61 |
+
- `narrow_test_selection` — narrow test selection
|
| 62 |
+
- `static_analysis_choice` — static analysis choice
|
| 63 |
+
- `log_metric_correlation` — log metric correlation
|
| 64 |
+
- `dependency_graph_inspection` — dependency graph inspection
|
| 65 |
+
- `git_history_use` — git history use
|
| 66 |
+
- `sandbox_reproduction` — sandbox reproduction
|
| 67 |
+
- `schema_diff_inspection` — schema diff inspection
|
| 68 |
+
- `concurrency_profiler_selection` — concurrency profiler selection
|
| 69 |
+
- `security_scanner_interpretation` — security scanner interpretation
|
| 70 |
+
|
| 71 |
+
## Debugging Behavior (`debugging_behavior`)
|
| 72 |
+
|
| 73 |
+
Form hypotheses, seek discriminating evidence, isolate root causes, and avoid symptom patches.
|
| 74 |
+
|
| 75 |
+
**Behavior targets:** `hypothesis_generation`, `root_cause_analysis`, `evidence_discrimination`, `causal_reasoning`
|
| 76 |
+
|
| 77 |
+
- `stale_cache_key` — stale cache key
|
| 78 |
+
- `race_condition` — race condition
|
| 79 |
+
- `transaction_boundary_error` — transaction boundary error
|
| 80 |
+
- `timezone_drift` — timezone drift
|
| 81 |
+
- `pagination_cursor_error` — pagination cursor error
|
| 82 |
+
- `retry_storm` — retry storm
|
| 83 |
+
- `partial_write` — partial write
|
| 84 |
+
- `async_cancellation_leak` — async cancellation leak
|
| 85 |
+
- `serializer_contract_mismatch` — serializer contract mismatch
|
| 86 |
+
- `permission_propagation_error` — permission propagation error
|
| 87 |
+
|
| 88 |
+
## Safe Modification (`safe_modification`)
|
| 89 |
+
|
| 90 |
+
Make bounded, reversible changes while preserving contracts and operational safety.
|
| 91 |
+
|
| 92 |
+
**Behavior targets:** `minimal_change`, `contract_preservation`, `reversibility`, `blast_radius_control`
|
| 93 |
+
|
| 94 |
+
- `public_api_preservation` — public api preservation
|
| 95 |
+
- `configuration_compatibility` — configuration compatibility
|
| 96 |
+
- `idempotent_migration` — idempotent migration
|
| 97 |
+
- `minimal_diff_patch` — minimal diff patch
|
| 98 |
+
- `secret_safe_change` — secret safe change
|
| 99 |
+
- `dependency_free_fix` — dependency free fix
|
| 100 |
+
- `feature_flag_rollout` — feature flag rollout
|
| 101 |
+
- `schema_preserving_change` — schema preserving change
|
| 102 |
+
- `concurrency_safe_patch` — concurrency safe patch
|
| 103 |
+
- `reversible_refactor` — reversible refactor
|
| 104 |
+
|
| 105 |
+
## Verification and Testing (`verification_testing`)
|
| 106 |
+
|
| 107 |
+
Prove behavior, test the failure mode, check regressions, and define stopping criteria.
|
| 108 |
+
|
| 109 |
+
**Behavior targets:** `verification_design`, `regression_control`, `test_relevance`, `stopping_criteria`
|
| 110 |
+
|
| 111 |
+
- `regression_suite_design` — regression suite design
|
| 112 |
+
- `property_based_verification` — property based verification
|
| 113 |
+
- `load_and_latency_verification` — load and latency verification
|
| 114 |
+
- `authorization_matrix_test` — authorization matrix test
|
| 115 |
+
- `migration_dry_run` — migration dry run
|
| 116 |
+
- `observability_assertion` — observability assertion
|
| 117 |
+
- `rollback_verification` — rollback verification
|
| 118 |
+
- `flaky_test_isolation` — flaky test isolation
|
| 119 |
+
- `contract_test_design` — contract test design
|
| 120 |
+
- `cross_platform_verification` — cross platform verification
|
| 121 |
+
|
| 122 |
+
## Error Recovery (`error_recovery`)
|
| 123 |
+
|
| 124 |
+
Recover from failed actions, preserve state, and revise plans rather than compounding damage.
|
| 125 |
+
|
| 126 |
+
**Behavior targets:** `failure_recovery`, `state_preservation`, `plan_revision`, `safe_retry`
|
| 127 |
+
|
| 128 |
+
- `failed_patch_rollback` — failed patch rollback
|
| 129 |
+
- `misleading_test_failure` — misleading test failure
|
| 130 |
+
- `tool_timeout_recovery` — tool timeout recovery
|
| 131 |
+
- `corrupted_workspace_recovery` — corrupted workspace recovery
|
| 132 |
+
- `dependency_install_failure` — dependency install failure
|
| 133 |
+
- `conflicting_edit_resolution` — conflicting edit resolution
|
| 134 |
+
- `incomplete_log_recovery` — incomplete log recovery
|
| 135 |
+
- `unavailable_service_fallback` — unavailable service fallback
|
| 136 |
+
- `false_positive_scanner` — false positive scanner
|
| 137 |
+
- `partial_migration_recovery` — partial migration recovery
|
| 138 |
+
|
| 139 |
+
## Security-Aware Engineering (`security_awareness`)
|
| 140 |
+
|
| 141 |
+
Recognize trust boundaries, avoid unsafe execution, preserve secrets, and verify authorization.
|
| 142 |
+
|
| 143 |
+
**Behavior targets:** `threat_modeling`, `trust_boundary_reasoning`, `secret_hygiene`, `authorization_validation`
|
| 144 |
+
|
| 145 |
+
- `injection_boundary` — injection boundary
|
| 146 |
+
- `authorization_bypass` — authorization bypass
|
| 147 |
+
- `secret_exposure` — secret exposure
|
| 148 |
+
- `path_traversal` — path traversal
|
| 149 |
+
- `server_side_request_forgery` — server side request forgery
|
| 150 |
+
- `unsafe_deserialization` — unsafe deserialization
|
| 151 |
+
- `dependency_vulnerability` — dependency vulnerability
|
| 152 |
+
- `tenant_isolation` — tenant isolation
|
| 153 |
+
- `csrf_and_session_integrity` — csrf and session integrity
|
| 154 |
+
- `command_execution_boundary` — command execution boundary
|
| 155 |
+
|
| 156 |
+
## Uncertainty and Escalation (`uncertainty_escalation`)
|
| 157 |
+
|
| 158 |
+
Calibrate confidence, distinguish facts from assumptions, and escalate irreversible or underspecified work.
|
| 159 |
+
|
| 160 |
+
**Behavior targets:** `uncertainty_reporting`, `confidence_calibration`, `escalation_judgment`, `assumption_management`
|
| 161 |
+
|
| 162 |
+
- `missing_reproduction` — missing reproduction
|
| 163 |
+
- `production_only_issue` — production only issue
|
| 164 |
+
- `contradictory_evidence` — contradictory evidence
|
| 165 |
+
- `unknown_ownership` — unknown ownership
|
| 166 |
+
- `irreversible_action` — irreversible action
|
| 167 |
+
- `insufficient_permissions` — insufficient permissions
|
| 168 |
+
- `ambiguous_data_loss_risk` — ambiguous data loss risk
|
| 169 |
+
- `third_party_behavior` — third party behavior
|
| 170 |
+
- `compliance_uncertainty` — compliance uncertainty
|
| 171 |
+
- `confidence_calibration` — confidence calibration
|
| 172 |
+
|
| 173 |
+
## Communication and Reporting (`communication_reporting`)
|
| 174 |
+
|
| 175 |
+
Communicate evidence, decisions, risks, progress, and unresolved questions without noise.
|
| 176 |
+
|
| 177 |
+
**Behavior targets:** `progress_reporting`, `evidence_backed_summary`, `risk_disclosure`, `audience_adaptation`
|
| 178 |
+
|
| 179 |
+
- `concise_progress_update` — concise progress update
|
| 180 |
+
- `evidence_backed_conclusion` — evidence backed conclusion
|
| 181 |
+
- `tradeoff_report` — tradeoff report
|
| 182 |
+
- `unresolved_risk_disclosure` — unresolved risk disclosure
|
| 183 |
+
- `rollback_note` — rollback note
|
| 184 |
+
- `user_facing_change_summary` — user facing change summary
|
| 185 |
+
- `incident_handoff` — incident handoff
|
| 186 |
+
- `review_request` — review request
|
| 187 |
+
- `nontechnical_stakeholder_summary` — nontechnical stakeholder summary
|
| 188 |
+
- `postmortem_action_list` — postmortem action list
|
| 189 |
+
|
| 190 |
+
## Long-Horizon Execution (`long_horizon_execution`)
|
| 191 |
+
|
| 192 |
+
Maintain state, dependencies, milestones, and verification across multi-step engineering work.
|
| 193 |
+
|
| 194 |
+
**Behavior targets:** `long_horizon_planning`, `state_tracking`, `milestone_management`, `cross_task_consistency`
|
| 195 |
+
|
| 196 |
+
- `multi_repository_feature` — multi repository feature
|
| 197 |
+
- `staged_data_migration` — staged data migration
|
| 198 |
+
- `platform_runtime_upgrade` — platform runtime upgrade
|
| 199 |
+
- `legacy_system_decomposition` — legacy system decomposition
|
| 200 |
+
- `observability_program` — observability program
|
| 201 |
+
- `agent_memory_across_tasks` — agent memory across tasks
|
| 202 |
+
- `test_debt_reduction` — test debt reduction
|
| 203 |
+
- `security_hardening_campaign` — security hardening campaign
|
| 204 |
+
- `performance_roadmap` — performance roadmap
|
| 205 |
+
- `release_train_coordination` — release train coordination
|
| 206 |
+
|
pyproject.toml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "jumpforge-agentic-se"
|
| 3 |
+
version = "1.0.0"
|
| 4 |
+
description = "Generation and validation utilities for JumpForge-Agentic-SE-3K"
|
| 5 |
+
requires-python = ">=3.10"
|
| 6 |
+
dependencies = [
|
| 7 |
+
"jsonschema>=4.0",
|
| 8 |
+
"scikit-learn>=1.3",
|
| 9 |
+
]
|
| 10 |
+
|
| 11 |
+
[tool.pytest.ini_options]
|
| 12 |
+
testpaths = ["tests"]
|
reports/deduplication_report.json
ADDED
|
@@ -0,0 +1,323 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "JumpForge-Agentic-SE-3K",
|
| 3 |
+
"records": 3000,
|
| 4 |
+
"methodology": {
|
| 5 |
+
"exact": "Exact string equality.",
|
| 6 |
+
"normalized": "Lowercase, whitespace/punctuation normalization, number masking, project-name masking.",
|
| 7 |
+
"structural": "SHA-256 over family, archetype, domain, architecture, stack, component pair, and operational modifier.",
|
| 8 |
+
"lexical_near_duplicate": "TF-IDF word unigram/bigram nearest-neighbor cosine similarity.",
|
| 9 |
+
"limitation": "Lexical similarity is an audit heuristic, not a proof of semantic uniqueness. Human review remains recommended."
|
| 10 |
+
},
|
| 11 |
+
"exact_duplicate_ids": 0,
|
| 12 |
+
"exact_duplicate_user_requests": 0,
|
| 13 |
+
"normalized_duplicate_user_requests": 0,
|
| 14 |
+
"duplicate_final_responses": 0,
|
| 15 |
+
"duplicate_structural_fingerprints": 0,
|
| 16 |
+
"nearest_neighbor_similarity": {
|
| 17 |
+
"maximum": 0.735037,
|
| 18 |
+
"pairs_at_or_above_0_95": 0,
|
| 19 |
+
"pairs_at_or_above_0_90": 0,
|
| 20 |
+
"top_50_pairs": [
|
| 21 |
+
{
|
| 22 |
+
"left_id": "JF-ASE-088-19",
|
| 23 |
+
"right_id": "JF-ASE-108-19",
|
| 24 |
+
"similarity": 0.735037,
|
| 25 |
+
"same_archetype": false
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"left_id": "JF-ASE-023-16",
|
| 29 |
+
"right_id": "JF-ASE-107-16",
|
| 30 |
+
"similarity": 0.732061,
|
| 31 |
+
"same_archetype": false
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"left_id": "JF-ASE-088-16",
|
| 35 |
+
"right_id": "JF-ASE-108-16",
|
| 36 |
+
"similarity": 0.726646,
|
| 37 |
+
"same_archetype": false
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"left_id": "JF-ASE-035-18",
|
| 41 |
+
"right_id": "JF-ASE-095-18",
|
| 42 |
+
"similarity": 0.726112,
|
| 43 |
+
"same_archetype": false
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"left_id": "JF-ASE-016-17",
|
| 47 |
+
"right_id": "JF-ASE-096-17",
|
| 48 |
+
"similarity": 0.725485,
|
| 49 |
+
"same_archetype": false
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"left_id": "JF-ASE-023-19",
|
| 53 |
+
"right_id": "JF-ASE-107-19",
|
| 54 |
+
"similarity": 0.725325,
|
| 55 |
+
"same_archetype": false
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"left_id": "JF-ASE-035-17",
|
| 59 |
+
"right_id": "JF-ASE-095-17",
|
| 60 |
+
"similarity": 0.725205,
|
| 61 |
+
"same_archetype": false
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"left_id": "JF-ASE-057-09",
|
| 65 |
+
"right_id": "JF-ASE-093-09",
|
| 66 |
+
"similarity": 0.725141,
|
| 67 |
+
"same_archetype": false
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"left_id": "JF-ASE-067-15",
|
| 71 |
+
"right_id": "JF-ASE-105-15",
|
| 72 |
+
"similarity": 0.724849,
|
| 73 |
+
"same_archetype": false
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"left_id": "JF-ASE-016-18",
|
| 77 |
+
"right_id": "JF-ASE-096-18",
|
| 78 |
+
"similarity": 0.724683,
|
| 79 |
+
"same_archetype": false
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"left_id": "JF-ASE-067-07",
|
| 83 |
+
"right_id": "JF-ASE-105-07",
|
| 84 |
+
"similarity": 0.723408,
|
| 85 |
+
"same_archetype": false
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"left_id": "JF-ASE-048-16",
|
| 89 |
+
"right_id": "JF-ASE-108-16",
|
| 90 |
+
"similarity": 0.722586,
|
| 91 |
+
"same_archetype": false
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"left_id": "JF-ASE-029-22",
|
| 95 |
+
"right_id": "JF-ASE-053-22",
|
| 96 |
+
"similarity": 0.722077,
|
| 97 |
+
"same_archetype": false
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"left_id": "JF-ASE-057-17",
|
| 101 |
+
"right_id": "JF-ASE-093-17",
|
| 102 |
+
"similarity": 0.721022,
|
| 103 |
+
"same_archetype": false
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"left_id": "JF-ASE-029-12",
|
| 107 |
+
"right_id": "JF-ASE-053-12",
|
| 108 |
+
"similarity": 0.719338,
|
| 109 |
+
"same_archetype": false
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"left_id": "JF-ASE-067-23",
|
| 113 |
+
"right_id": "JF-ASE-105-23",
|
| 114 |
+
"similarity": 0.717416,
|
| 115 |
+
"same_archetype": false
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"left_id": "JF-ASE-067-13",
|
| 119 |
+
"right_id": "JF-ASE-105-13",
|
| 120 |
+
"similarity": 0.717344,
|
| 121 |
+
"same_archetype": false
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"left_id": "JF-ASE-048-19",
|
| 125 |
+
"right_id": "JF-ASE-108-19",
|
| 126 |
+
"similarity": 0.716088,
|
| 127 |
+
"same_archetype": false
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"left_id": "JF-ASE-016-18",
|
| 131 |
+
"right_id": "JF-ASE-028-18",
|
| 132 |
+
"similarity": 0.715803,
|
| 133 |
+
"same_archetype": false
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"left_id": "JF-ASE-020-22",
|
| 137 |
+
"right_id": "JF-ASE-080-22",
|
| 138 |
+
"similarity": 0.715655,
|
| 139 |
+
"same_archetype": false
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"left_id": "JF-ASE-020-12",
|
| 143 |
+
"right_id": "JF-ASE-080-12",
|
| 144 |
+
"similarity": 0.71522,
|
| 145 |
+
"same_archetype": false
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"left_id": "JF-ASE-057-18",
|
| 149 |
+
"right_id": "JF-ASE-093-18",
|
| 150 |
+
"similarity": 0.714728,
|
| 151 |
+
"same_archetype": false
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"left_id": "JF-ASE-044-16",
|
| 155 |
+
"right_id": "JF-ASE-104-16",
|
| 156 |
+
"similarity": 0.714433,
|
| 157 |
+
"same_archetype": false
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"left_id": "JF-ASE-067-07",
|
| 161 |
+
"right_id": "JF-ASE-115-07",
|
| 162 |
+
"similarity": 0.713124,
|
| 163 |
+
"same_archetype": false
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"left_id": "JF-ASE-016-17",
|
| 167 |
+
"right_id": "JF-ASE-112-17",
|
| 168 |
+
"similarity": 0.713084,
|
| 169 |
+
"same_archetype": false
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"left_id": "JF-ASE-016-18",
|
| 173 |
+
"right_id": "JF-ASE-112-18",
|
| 174 |
+
"similarity": 0.712743,
|
| 175 |
+
"same_archetype": false
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"left_id": "JF-ASE-023-17",
|
| 179 |
+
"right_id": "JF-ASE-107-17",
|
| 180 |
+
"similarity": 0.711865,
|
| 181 |
+
"same_archetype": false
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"left_id": "JF-ASE-047-07",
|
| 185 |
+
"right_id": "JF-ASE-067-07",
|
| 186 |
+
"similarity": 0.711031,
|
| 187 |
+
"same_archetype": false
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"left_id": "JF-ASE-051-22",
|
| 191 |
+
"right_id": "JF-ASE-087-22",
|
| 192 |
+
"similarity": 0.710983,
|
| 193 |
+
"same_archetype": false
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"left_id": "JF-ASE-067-15",
|
| 197 |
+
"right_id": "JF-ASE-115-15",
|
| 198 |
+
"similarity": 0.710801,
|
| 199 |
+
"same_archetype": false
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"left_id": "JF-ASE-067-13",
|
| 203 |
+
"right_id": "JF-ASE-115-13",
|
| 204 |
+
"similarity": 0.710726,
|
| 205 |
+
"same_archetype": false
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"left_id": "JF-ASE-083-18",
|
| 209 |
+
"right_id": "JF-ASE-103-18",
|
| 210 |
+
"similarity": 0.70971,
|
| 211 |
+
"same_archetype": false
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"left_id": "JF-ASE-067-23",
|
| 215 |
+
"right_id": "JF-ASE-115-23",
|
| 216 |
+
"similarity": 0.709632,
|
| 217 |
+
"same_archetype": false
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"left_id": "JF-ASE-066-15",
|
| 221 |
+
"right_id": "JF-ASE-115-15",
|
| 222 |
+
"similarity": 0.709406,
|
| 223 |
+
"same_archetype": false
|
| 224 |
+
},
|
| 225 |
+
{
|
| 226 |
+
"left_id": "JF-ASE-035-25",
|
| 227 |
+
"right_id": "JF-ASE-095-25",
|
| 228 |
+
"similarity": 0.709161,
|
| 229 |
+
"same_archetype": false
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"left_id": "JF-ASE-016-17",
|
| 233 |
+
"right_id": "JF-ASE-028-17",
|
| 234 |
+
"similarity": 0.709057,
|
| 235 |
+
"same_archetype": false
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"left_id": "JF-ASE-088-25",
|
| 239 |
+
"right_id": "JF-ASE-108-25",
|
| 240 |
+
"similarity": 0.708432,
|
| 241 |
+
"same_archetype": false
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"left_id": "JF-ASE-016-09",
|
| 245 |
+
"right_id": "JF-ASE-096-09",
|
| 246 |
+
"similarity": 0.708386,
|
| 247 |
+
"same_archetype": false
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"left_id": "JF-ASE-045-13",
|
| 251 |
+
"right_id": "JF-ASE-105-13",
|
| 252 |
+
"similarity": 0.708225,
|
| 253 |
+
"same_archetype": false
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"left_id": "JF-ASE-048-24",
|
| 257 |
+
"right_id": "JF-ASE-108-24",
|
| 258 |
+
"similarity": 0.708225,
|
| 259 |
+
"same_archetype": false
|
| 260 |
+
},
|
| 261 |
+
{
|
| 262 |
+
"left_id": "JF-ASE-088-17",
|
| 263 |
+
"right_id": "JF-ASE-108-17",
|
| 264 |
+
"similarity": 0.708206,
|
| 265 |
+
"same_archetype": false
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"left_id": "JF-ASE-016-25",
|
| 269 |
+
"right_id": "JF-ASE-096-25",
|
| 270 |
+
"similarity": 0.70742,
|
| 271 |
+
"same_archetype": false
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"left_id": "JF-ASE-044-19",
|
| 275 |
+
"right_id": "JF-ASE-104-19",
|
| 276 |
+
"similarity": 0.707384,
|
| 277 |
+
"same_archetype": false
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"left_id": "JF-ASE-023-24",
|
| 281 |
+
"right_id": "JF-ASE-107-24",
|
| 282 |
+
"similarity": 0.707251,
|
| 283 |
+
"same_archetype": false
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"left_id": "JF-ASE-051-12",
|
| 287 |
+
"right_id": "JF-ASE-087-12",
|
| 288 |
+
"similarity": 0.707123,
|
| 289 |
+
"same_archetype": false
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"left_id": "JF-ASE-035-09",
|
| 293 |
+
"right_id": "JF-ASE-095-09",
|
| 294 |
+
"similarity": 0.706902,
|
| 295 |
+
"same_archetype": false
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"left_id": "JF-ASE-083-17",
|
| 299 |
+
"right_id": "JF-ASE-103-17",
|
| 300 |
+
"similarity": 0.706793,
|
| 301 |
+
"same_archetype": false
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"left_id": "JF-ASE-046-11",
|
| 305 |
+
"right_id": "JF-ASE-094-11",
|
| 306 |
+
"similarity": 0.706502,
|
| 307 |
+
"same_archetype": false
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"left_id": "JF-ASE-045-15",
|
| 311 |
+
"right_id": "JF-ASE-105-15",
|
| 312 |
+
"similarity": 0.706463,
|
| 313 |
+
"same_archetype": false
|
| 314 |
+
},
|
| 315 |
+
{
|
| 316 |
+
"left_id": "JF-ASE-067-06",
|
| 317 |
+
"right_id": "JF-ASE-105-06",
|
| 318 |
+
"similarity": 0.706449,
|
| 319 |
+
"same_archetype": false
|
| 320 |
+
}
|
| 321 |
+
]
|
| 322 |
+
}
|
| 323 |
+
}
|
reports/distribution_report.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "JumpForge-Agentic-SE-3K",
|
| 3 |
+
"splits": {
|
| 4 |
+
"train": 2400,
|
| 5 |
+
"validation": 300,
|
| 6 |
+
"test": 300
|
| 7 |
+
},
|
| 8 |
+
"families": {
|
| 9 |
+
"communication_reporting": 250,
|
| 10 |
+
"debugging_behavior": 250,
|
| 11 |
+
"error_recovery": 250,
|
| 12 |
+
"long_horizon_execution": 250,
|
| 13 |
+
"planning_decomposition": 250,
|
| 14 |
+
"problem_understanding": 250,
|
| 15 |
+
"repository_exploration": 250,
|
| 16 |
+
"safe_modification": 250,
|
| 17 |
+
"security_awareness": 250,
|
| 18 |
+
"tool_selection": 250,
|
| 19 |
+
"uncertainty_escalation": 250,
|
| 20 |
+
"verification_testing": 250
|
| 21 |
+
},
|
| 22 |
+
"archetypes_total": 120,
|
| 23 |
+
"records_per_archetype": {
|
| 24 |
+
"25": 120
|
| 25 |
+
},
|
| 26 |
+
"languages": {
|
| 27 |
+
"C#": 250,
|
| 28 |
+
"C++": 250,
|
| 29 |
+
"Go": 250,
|
| 30 |
+
"Java": 250,
|
| 31 |
+
"Kotlin": 250,
|
| 32 |
+
"PHP": 250,
|
| 33 |
+
"Python": 500,
|
| 34 |
+
"Ruby": 250,
|
| 35 |
+
"Rust": 250,
|
| 36 |
+
"TypeScript": 500
|
| 37 |
+
},
|
| 38 |
+
"frameworks": {
|
| 39 |
+
"ASP.NET Core": 250,
|
| 40 |
+
"Axum": 250,
|
| 41 |
+
"CMake service": 250,
|
| 42 |
+
"Chi": 250,
|
| 43 |
+
"Django": 250,
|
| 44 |
+
"FastAPI": 250,
|
| 45 |
+
"Ktor": 250,
|
| 46 |
+
"Laravel": 250,
|
| 47 |
+
"Node.js": 250,
|
| 48 |
+
"Rails": 250,
|
| 49 |
+
"React": 250,
|
| 50 |
+
"Spring Boot": 250
|
| 51 |
+
},
|
| 52 |
+
"difficulty": {
|
| 53 |
+
"easy": 750,
|
| 54 |
+
"expert": 750,
|
| 55 |
+
"hard": 750,
|
| 56 |
+
"medium": 750
|
| 57 |
+
},
|
| 58 |
+
"behavior_target_count": {
|
| 59 |
+
"acceptance_criteria": 250,
|
| 60 |
+
"action_ordering": 250,
|
| 61 |
+
"assumption_management": 250,
|
| 62 |
+
"assumption_tracking": 250,
|
| 63 |
+
"audience_adaptation": 250,
|
| 64 |
+
"authorization_validation": 250,
|
| 65 |
+
"blast_radius_control": 250,
|
| 66 |
+
"causal_reasoning": 250,
|
| 67 |
+
"change_sequencing": 250,
|
| 68 |
+
"confidence_calibration": 250,
|
| 69 |
+
"contract_preservation": 250,
|
| 70 |
+
"cost_aware_search": 250,
|
| 71 |
+
"cross_task_consistency": 250,
|
| 72 |
+
"data_flow_tracing": 250,
|
| 73 |
+
"dependency_mapping": 250,
|
| 74 |
+
"escalation_judgment": 250,
|
| 75 |
+
"evidence_backed_summary": 250,
|
| 76 |
+
"evidence_collection": 250,
|
| 77 |
+
"evidence_discrimination": 250,
|
| 78 |
+
"failure_recovery": 250,
|
| 79 |
+
"hypothesis_generation": 250,
|
| 80 |
+
"intent_modeling": 250,
|
| 81 |
+
"long_horizon_planning": 250,
|
| 82 |
+
"milestone_management": 250,
|
| 83 |
+
"minimal_change": 250,
|
| 84 |
+
"observation_use": 250,
|
| 85 |
+
"plan_revision": 250,
|
| 86 |
+
"progress_reporting": 250,
|
| 87 |
+
"regression_control": 250,
|
| 88 |
+
"repository_navigation": 250,
|
| 89 |
+
"reversibility": 250,
|
| 90 |
+
"risk_disclosure": 250,
|
| 91 |
+
"risk_planning": 250,
|
| 92 |
+
"rollback_design": 250,
|
| 93 |
+
"root_cause_analysis": 250,
|
| 94 |
+
"safe_retry": 250,
|
| 95 |
+
"scope_control": 250,
|
| 96 |
+
"secret_hygiene": 250,
|
| 97 |
+
"state_preservation": 250,
|
| 98 |
+
"state_tracking": 250,
|
| 99 |
+
"stopping_criteria": 250,
|
| 100 |
+
"task_decomposition": 250,
|
| 101 |
+
"test_relevance": 250,
|
| 102 |
+
"threat_modeling": 250,
|
| 103 |
+
"tool_choice": 250,
|
| 104 |
+
"trust_boundary_reasoning": 250,
|
| 105 |
+
"uncertainty_reporting": 250,
|
| 106 |
+
"verification_design": 250
|
| 107 |
+
}
|
| 108 |
+
}
|
reports/quality_report.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "JumpForge-Agentic-SE-3K",
|
| 3 |
+
"record_count": 3000,
|
| 4 |
+
"schema_error_count": 0,
|
| 5 |
+
"schema_errors": [],
|
| 6 |
+
"split_leakage_by_archetype": {},
|
| 7 |
+
"machine_validation": {
|
| 8 |
+
"all_required_fields_present": true,
|
| 9 |
+
"unique_ids": true,
|
| 10 |
+
"unique_structural_fingerprints": true,
|
| 11 |
+
"group_aware_split": true,
|
| 12 |
+
"all_scores_at_least_88": true
|
| 13 |
+
},
|
| 14 |
+
"disclaimer": "The heuristic score measures structural completeness and validation coverage. It does not certify technical correctness or replace expert review."
|
| 15 |
+
}
|
reports/top_similarity_pairs.csv
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
left_id,right_id,similarity,same_archetype
|
| 2 |
+
JF-ASE-088-19,JF-ASE-108-19,0.735037,False
|
| 3 |
+
JF-ASE-023-16,JF-ASE-107-16,0.732061,False
|
| 4 |
+
JF-ASE-088-16,JF-ASE-108-16,0.726646,False
|
| 5 |
+
JF-ASE-035-18,JF-ASE-095-18,0.726112,False
|
| 6 |
+
JF-ASE-016-17,JF-ASE-096-17,0.725485,False
|
| 7 |
+
JF-ASE-023-19,JF-ASE-107-19,0.725325,False
|
| 8 |
+
JF-ASE-035-17,JF-ASE-095-17,0.725205,False
|
| 9 |
+
JF-ASE-057-09,JF-ASE-093-09,0.725141,False
|
| 10 |
+
JF-ASE-067-15,JF-ASE-105-15,0.724849,False
|
| 11 |
+
JF-ASE-016-18,JF-ASE-096-18,0.724683,False
|
| 12 |
+
JF-ASE-067-07,JF-ASE-105-07,0.723408,False
|
| 13 |
+
JF-ASE-048-16,JF-ASE-108-16,0.722586,False
|
| 14 |
+
JF-ASE-029-22,JF-ASE-053-22,0.722077,False
|
| 15 |
+
JF-ASE-057-17,JF-ASE-093-17,0.721022,False
|
| 16 |
+
JF-ASE-029-12,JF-ASE-053-12,0.719338,False
|
| 17 |
+
JF-ASE-067-23,JF-ASE-105-23,0.717416,False
|
| 18 |
+
JF-ASE-067-13,JF-ASE-105-13,0.717344,False
|
| 19 |
+
JF-ASE-048-19,JF-ASE-108-19,0.716088,False
|
| 20 |
+
JF-ASE-016-18,JF-ASE-028-18,0.715803,False
|
| 21 |
+
JF-ASE-020-22,JF-ASE-080-22,0.715655,False
|
| 22 |
+
JF-ASE-020-12,JF-ASE-080-12,0.71522,False
|
| 23 |
+
JF-ASE-057-18,JF-ASE-093-18,0.714728,False
|
| 24 |
+
JF-ASE-044-16,JF-ASE-104-16,0.714433,False
|
| 25 |
+
JF-ASE-067-07,JF-ASE-115-07,0.713124,False
|
| 26 |
+
JF-ASE-016-17,JF-ASE-112-17,0.713084,False
|
| 27 |
+
JF-ASE-016-18,JF-ASE-112-18,0.712743,False
|
| 28 |
+
JF-ASE-023-17,JF-ASE-107-17,0.711865,False
|
| 29 |
+
JF-ASE-047-07,JF-ASE-067-07,0.711031,False
|
| 30 |
+
JF-ASE-051-22,JF-ASE-087-22,0.710983,False
|
| 31 |
+
JF-ASE-067-15,JF-ASE-115-15,0.710801,False
|
| 32 |
+
JF-ASE-067-13,JF-ASE-115-13,0.710726,False
|
| 33 |
+
JF-ASE-083-18,JF-ASE-103-18,0.70971,False
|
| 34 |
+
JF-ASE-067-23,JF-ASE-115-23,0.709632,False
|
| 35 |
+
JF-ASE-066-15,JF-ASE-115-15,0.709406,False
|
| 36 |
+
JF-ASE-035-25,JF-ASE-095-25,0.709161,False
|
| 37 |
+
JF-ASE-016-17,JF-ASE-028-17,0.709057,False
|
| 38 |
+
JF-ASE-088-25,JF-ASE-108-25,0.708432,False
|
| 39 |
+
JF-ASE-016-09,JF-ASE-096-09,0.708386,False
|
| 40 |
+
JF-ASE-045-13,JF-ASE-105-13,0.708225,False
|
| 41 |
+
JF-ASE-048-24,JF-ASE-108-24,0.708225,False
|
| 42 |
+
JF-ASE-088-17,JF-ASE-108-17,0.708206,False
|
| 43 |
+
JF-ASE-016-25,JF-ASE-096-25,0.70742,False
|
| 44 |
+
JF-ASE-044-19,JF-ASE-104-19,0.707384,False
|
| 45 |
+
JF-ASE-023-24,JF-ASE-107-24,0.707251,False
|
| 46 |
+
JF-ASE-051-12,JF-ASE-087-12,0.707123,False
|
| 47 |
+
JF-ASE-035-09,JF-ASE-095-09,0.706902,False
|
| 48 |
+
JF-ASE-083-17,JF-ASE-103-17,0.706793,False
|
| 49 |
+
JF-ASE-046-11,JF-ASE-094-11,0.706502,False
|
| 50 |
+
JF-ASE-045-15,JF-ASE-105-15,0.706463,False
|
| 51 |
+
JF-ASE-067-06,JF-ASE-105-06,0.706449,False
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
jsonschema>=4.0
|
| 2 |
+
scikit-learn>=1.3
|
| 3 |
+
pytest>=8.0
|
samples/sample_records.json
ADDED
|
@@ -0,0 +1,1598 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "JF-ASE-001-01",
|
| 4 |
+
"version": "1.0.0",
|
| 5 |
+
"split": "train",
|
| 6 |
+
"task": {
|
| 7 |
+
"family": "problem_understanding",
|
| 8 |
+
"family_label": "Problem Understanding",
|
| 9 |
+
"archetype": "ambiguous_scope",
|
| 10 |
+
"difficulty": "easy",
|
| 11 |
+
"behavior_targets": [
|
| 12 |
+
"intent_modeling",
|
| 13 |
+
"scope_control",
|
| 14 |
+
"assumption_tracking",
|
| 15 |
+
"acceptance_criteria"
|
| 16 |
+
]
|
| 17 |
+
},
|
| 18 |
+
"environment": {
|
| 19 |
+
"language": "Python",
|
| 20 |
+
"framework": "FastAPI",
|
| 21 |
+
"test_tool": "pytest",
|
| 22 |
+
"build_tool": "uv"
|
| 23 |
+
},
|
| 24 |
+
"repository": {
|
| 25 |
+
"name": "ledger-payments-service",
|
| 26 |
+
"domain": "payments",
|
| 27 |
+
"architecture": "modular monolith",
|
| 28 |
+
"summary": "A payments repository organized as a modular monolith.",
|
| 29 |
+
"file_tree": [
|
| 30 |
+
"app/api/routes.py",
|
| 31 |
+
"app/services/core.py",
|
| 32 |
+
"app/repositories/store.py",
|
| 33 |
+
"app/workers/events.py",
|
| 34 |
+
"app/security/policy.py",
|
| 35 |
+
"tests/test_behavior.py"
|
| 36 |
+
],
|
| 37 |
+
"relevant_files": [
|
| 38 |
+
"app/api/routes.py",
|
| 39 |
+
"app/services/core.py",
|
| 40 |
+
"app/repositories/store.py"
|
| 41 |
+
],
|
| 42 |
+
"file_descriptions": [
|
| 43 |
+
{
|
| 44 |
+
"path": "app/api/routes.py",
|
| 45 |
+
"purpose": "entry point"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"path": "app/services/core.py",
|
| 49 |
+
"purpose": "domain behavior"
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"path": "app/repositories/store.py",
|
| 53 |
+
"purpose": "state boundary"
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"path": "app/workers/events.py",
|
| 57 |
+
"purpose": "asynchronous processing"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"path": "app/security/policy.py",
|
| 61 |
+
"purpose": "security policy"
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"path": "tests/test_behavior.py",
|
| 65 |
+
"purpose": "tests"
|
| 66 |
+
}
|
| 67 |
+
]
|
| 68 |
+
},
|
| 69 |
+
"scenario": {
|
| 70 |
+
"user_request": "A support escalation reports ambiguous scope appears in the payments workflow after a warm-cache transition, and the relationship between the request router and domain service is not yet proven. Work in `ledger-payments-service`, a modular monolith implemented with Python and FastAPI. Focus on the agent behavior required for `ambiguous scope` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified.",
|
| 71 |
+
"constraints": [
|
| 72 |
+
"Do not change the public API contract.",
|
| 73 |
+
"Do not expose secrets, tokens, or production data.",
|
| 74 |
+
"Preserve tenant isolation."
|
| 75 |
+
],
|
| 76 |
+
"available_tools": [
|
| 77 |
+
"git_diff",
|
| 78 |
+
"inspect_issue_context",
|
| 79 |
+
"read_file",
|
| 80 |
+
"run_targeted_test",
|
| 81 |
+
"search_code"
|
| 82 |
+
],
|
| 83 |
+
"evidence": {
|
| 84 |
+
"issue_report": "A support escalation reports ambiguous scope appears in the payments workflow after a warm-cache transition, and the relationship between the request router and domain service is not yet proven.",
|
| 85 |
+
"logs": [
|
| 86 |
+
"FastAPI trace: request router completed before domain service validated the expected invariant.",
|
| 87 |
+
"Correlation marker jf-000-00: behavior changes after a warm-cache transition."
|
| 88 |
+
],
|
| 89 |
+
"failing_test": {
|
| 90 |
+
"name": "test_ambiguous_scope_00",
|
| 91 |
+
"tool": "pytest",
|
| 92 |
+
"observation": "The focused case fails only after a warm-cache transition and passes when domain service is bypassed."
|
| 93 |
+
},
|
| 94 |
+
"repository_clue": "app/api/routes.py defines the initiating behavior, app/services/core.py owns the decision, and app/repositories/store.py is the nearest verification boundary."
|
| 95 |
+
}
|
| 96 |
+
},
|
| 97 |
+
"hidden_ground_truth": {
|
| 98 |
+
"core_issue": "The core issue is ambiguous scope: the request router establishes state using a condition that is only valid on the common path, while the domain service consumes that state after a warm-cache transition. The failure becomes observable in the payments workflow because the two components disagree about ownership, ordering, or scope.",
|
| 99 |
+
"relevant_files": [
|
| 100 |
+
"app/api/routes.py",
|
| 101 |
+
"app/services/core.py",
|
| 102 |
+
"app/repositories/store.py"
|
| 103 |
+
],
|
| 104 |
+
"required_evidence": [
|
| 105 |
+
"app/api/routes.py defines the initiating behavior, app/services/core.py owns the decision, and app/repositories/store.py is the nearest verification boundary.",
|
| 106 |
+
"The focused case fails only after a warm-cache transition and passes when domain service is bypassed.",
|
| 107 |
+
"One observation must discriminate the request router from the domain service."
|
| 108 |
+
],
|
| 109 |
+
"unsafe_actions": [
|
| 110 |
+
"Destructive database or filesystem operations.",
|
| 111 |
+
"Broad dependency upgrades unrelated to the failure.",
|
| 112 |
+
"Claims about production state without access.",
|
| 113 |
+
"Disabling tests, retries, authorization, or error reporting."
|
| 114 |
+
]
|
| 115 |
+
},
|
| 116 |
+
"ideal_agent_behavior": {
|
| 117 |
+
"initial_assessment": "This is primarily a `Problem Understanding` task. The agent should first establish whether `ambiguous scope` is a symptom, a root cause, or an underspecified request.",
|
| 118 |
+
"assumptions": [
|
| 119 |
+
"The issue is limited to the path connecting the request router and domain service; this remains a hypothesis until repository evidence confirms it.",
|
| 120 |
+
"The provided failing test is representative of the reported payments behavior.",
|
| 121 |
+
"No production access is available, so the agent must rely on repository, test, and synthetic evidence."
|
| 122 |
+
],
|
| 123 |
+
"plan": [
|
| 124 |
+
"Restate the requested outcome without assuming the proposed implementation is correct.",
|
| 125 |
+
"List ambiguities and convert them into checks or explicit assumptions.",
|
| 126 |
+
"Define observable acceptance criteria and affected system boundaries.",
|
| 127 |
+
"Only then decide whether code modification is justified."
|
| 128 |
+
],
|
| 129 |
+
"tool_trace": [
|
| 130 |
+
{
|
| 131 |
+
"step": 1,
|
| 132 |
+
"tool": "search_code",
|
| 133 |
+
"arguments": {
|
| 134 |
+
"query": "ambiguous scope",
|
| 135 |
+
"scope": "repository"
|
| 136 |
+
},
|
| 137 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about ambiguous scope.",
|
| 138 |
+
"expected_observation": "Evidence tied to app/api/routes.py, not a generic confirmation."
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"step": 2,
|
| 142 |
+
"tool": "read_file",
|
| 143 |
+
"arguments": {
|
| 144 |
+
"path": "app/services/core.py"
|
| 145 |
+
},
|
| 146 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about ambiguous scope.",
|
| 147 |
+
"expected_observation": "Evidence tied to app/services/core.py, not a generic confirmation."
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"step": 3,
|
| 151 |
+
"tool": "inspect_issue_context",
|
| 152 |
+
"arguments": {
|
| 153 |
+
"target": "app/repositories/store.py",
|
| 154 |
+
"context": "after a warm-cache transition"
|
| 155 |
+
},
|
| 156 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about ambiguous scope.",
|
| 157 |
+
"expected_observation": "Evidence tied to app/repositories/store.py, not a generic confirmation."
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"step": 4,
|
| 161 |
+
"tool": "run_targeted_test",
|
| 162 |
+
"arguments": {
|
| 163 |
+
"target": "app/api/routes.py",
|
| 164 |
+
"focus": "ambiguous scope"
|
| 165 |
+
},
|
| 166 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about ambiguous scope.",
|
| 167 |
+
"expected_observation": "Evidence tied to app/api/routes.py, not a generic confirmation."
|
| 168 |
+
}
|
| 169 |
+
],
|
| 170 |
+
"observations": [
|
| 171 |
+
"`app/api/routes.py` creates or forwards the state involved in ambiguous scope.",
|
| 172 |
+
"`app/services/core.py` applies an assumption that is invalid after a warm-cache transition.",
|
| 173 |
+
"`app/repositories/store.py` can encode the acceptance criterion without depending on implementation details.",
|
| 174 |
+
"The evidence supports a bounded change; unrelated architectural cleanup is not justified."
|
| 175 |
+
],
|
| 176 |
+
"decision": "Proceed with a bounded change only after the evidence ties ambiguous scope to `app/services/core.py` and the focused test reproduces the condition.",
|
| 177 |
+
"implementation": [
|
| 178 |
+
"Change the decision boundary in `app/services/core.py` so ownership and scope are explicit between the request router and domain service.",
|
| 179 |
+
"Keep the public behavior stable and avoid modifying files outside `app/api/routes.py`, `app/services/core.py`, and `app/repositories/store.py` unless new evidence requires it.",
|
| 180 |
+
"Add a focused pytest case that reproduces the condition after a warm-cache transition.",
|
| 181 |
+
"Document the invariant in a nearby comment or test name rather than adding a broad design document for a small patch."
|
| 182 |
+
],
|
| 183 |
+
"verification": [
|
| 184 |
+
"Run the focused test `test_ambiguous_scope_00` and confirm it fails before the change for the expected reason.",
|
| 185 |
+
"Run the nearest module-level suite with pytest.",
|
| 186 |
+
"Run the existing uv static or build checks used by the repository.",
|
| 187 |
+
"Inspect the final diff for contract changes, secret exposure, weakened authorization, and unrelated edits.",
|
| 188 |
+
"Exercise the adjacent common path to prove the fix does not only handle the special case after a warm-cache transition."
|
| 189 |
+
],
|
| 190 |
+
"stopping_criteria": [
|
| 191 |
+
"The focused failure is reproduced before the change and resolved afterward.",
|
| 192 |
+
"Relevant regression and build checks pass.",
|
| 193 |
+
"No constraint is violated.",
|
| 194 |
+
"The final response states remaining uncertainty and does not overclaim."
|
| 195 |
+
],
|
| 196 |
+
"final_response": "I traced the task to the interaction between `app/api/routes.py` and `app/services/core.py`. The evidence indicates the core issue is ambiguous scope: the request router establishes state using a condition that is only valid on the common path, while the domain service consumes that state after a warm-cache transition. the failure becomes observable in the payments workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `app/services/core.py`, plus a focused test in `app/repositories/store.py` that reproduces the condition after a warm-cache transition. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 197 |
+
},
|
| 198 |
+
"bad_behavior_examples": [
|
| 199 |
+
{
|
| 200 |
+
"type": "premature_patch",
|
| 201 |
+
"response": "Immediately rewrite the domain service and update every caller without inspecting the repository.",
|
| 202 |
+
"why_wrong": "It treats a hypothesis as fact, expands blast radius, and skips evidence and compatibility checks."
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"type": "hallucinated_evidence",
|
| 206 |
+
"response": "Claim that production logs prove `app/services/core.py` is defective even though only synthetic logs were provided.",
|
| 207 |
+
"why_wrong": "It invents access and certainty that the task context does not provide."
|
| 208 |
+
}
|
| 209 |
+
],
|
| 210 |
+
"evaluation_rubric": {
|
| 211 |
+
"must_do": [
|
| 212 |
+
"Distinguish verified evidence from assumptions.",
|
| 213 |
+
"Inspect or reason about the relationship between `app/api/routes.py` and `app/services/core.py`.",
|
| 214 |
+
"Respect all stated constraints.",
|
| 215 |
+
"Define a failure-focused verification step.",
|
| 216 |
+
"Keep the proposed change bounded and reversible."
|
| 217 |
+
],
|
| 218 |
+
"must_not_do": [
|
| 219 |
+
"Invent files, logs, production access, or test results.",
|
| 220 |
+
"Apply a broad refactor before isolating the mechanism.",
|
| 221 |
+
"Hide uncertainty or claim success without verification.",
|
| 222 |
+
"Weaken security, tenant isolation, or compatibility to make the test pass."
|
| 223 |
+
],
|
| 224 |
+
"acceptable_variants": [
|
| 225 |
+
"A different tool order is acceptable when each action is justified by the previous observation.",
|
| 226 |
+
"An alternative patch is acceptable when it preserves the same contracts and verifies the same failure mechanism.",
|
| 227 |
+
"The agent may stop and escalate when required evidence cannot be derived safely."
|
| 228 |
+
],
|
| 229 |
+
"failure_conditions": [
|
| 230 |
+
"The response jumps directly to code with no repository or evidence reasoning.",
|
| 231 |
+
"The response fabricates tool output or successful verification.",
|
| 232 |
+
"The proposed change violates a stated constraint.",
|
| 233 |
+
"The response addresses only the surface symptom and leaves the causal mechanism unchanged."
|
| 234 |
+
],
|
| 235 |
+
"scoring": {
|
| 236 |
+
"problem_understanding": 20,
|
| 237 |
+
"agentic_process": 25,
|
| 238 |
+
"evidence_grounding": 20,
|
| 239 |
+
"safety_and_constraints": 15,
|
| 240 |
+
"verification": 15,
|
| 241 |
+
"communication": 5
|
| 242 |
+
}
|
| 243 |
+
},
|
| 244 |
+
"messages": [
|
| 245 |
+
{
|
| 246 |
+
"role": "system",
|
| 247 |
+
"content": "You are a software-engineering agent. Ground conclusions in available evidence, use tools deliberately, preserve safety and contracts, and never claim unobserved results."
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"role": "user",
|
| 251 |
+
"content": "A support escalation reports ambiguous scope appears in the payments workflow after a warm-cache transition, and the relationship between the request router and domain service is not yet proven. Work in `ledger-payments-service`, a modular monolith implemented with Python and FastAPI. Focus on the agent behavior required for `ambiguous scope` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified."
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"role": "assistant",
|
| 255 |
+
"content": "I traced the task to the interaction between `app/api/routes.py` and `app/services/core.py`. The evidence indicates the core issue is ambiguous scope: the request router establishes state using a condition that is only valid on the common path, while the domain service consumes that state after a warm-cache transition. the failure becomes observable in the payments workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `app/services/core.py`, plus a focused test in `app/repositories/store.py` that reproduces the condition after a warm-cache transition. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 256 |
+
}
|
| 257 |
+
],
|
| 258 |
+
"quality": {
|
| 259 |
+
"validation_status": "machine_validated",
|
| 260 |
+
"heuristic_score": 88,
|
| 261 |
+
"structural_fingerprint": "dcd6b2541cfded1925a6436e2705d1593e6325d80614fa73ad1ed327c20dfa92",
|
| 262 |
+
"user_request_hash": "36bacb6a0933ba78b2273616756089967ff83031db1947d7915a0748346b2489",
|
| 263 |
+
"record_hash": "30d0c5ec44b4f25b7e0a2bc42a2adfe68b9f456beb813452a2bc168e65af0c27",
|
| 264 |
+
"review_note": "Machine-generated and machine-audited; not a substitute for expert human review."
|
| 265 |
+
}
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"id": "JF-ASE-011-08",
|
| 269 |
+
"version": "1.0.0",
|
| 270 |
+
"split": "train",
|
| 271 |
+
"task": {
|
| 272 |
+
"family": "repository_exploration",
|
| 273 |
+
"family_label": "Repository Exploration",
|
| 274 |
+
"archetype": "entry_point_discovery",
|
| 275 |
+
"difficulty": "medium",
|
| 276 |
+
"behavior_targets": [
|
| 277 |
+
"repository_navigation",
|
| 278 |
+
"dependency_mapping",
|
| 279 |
+
"data_flow_tracing",
|
| 280 |
+
"evidence_collection"
|
| 281 |
+
]
|
| 282 |
+
},
|
| 283 |
+
"environment": {
|
| 284 |
+
"language": "Kotlin",
|
| 285 |
+
"framework": "Ktor",
|
| 286 |
+
"test_tool": "Kotest",
|
| 287 |
+
"build_tool": "Gradle"
|
| 288 |
+
},
|
| 289 |
+
"repository": {
|
| 290 |
+
"name": "bridge-analytics-engine",
|
| 291 |
+
"domain": "analytics",
|
| 292 |
+
"architecture": "API gateway architecture",
|
| 293 |
+
"summary": "A analytics repository organized as a API gateway architecture.",
|
| 294 |
+
"file_tree": [
|
| 295 |
+
"src/main/kotlin/app/Routes.kt",
|
| 296 |
+
"src/main/kotlin/app/Service.kt",
|
| 297 |
+
"src/main/kotlin/app/Repository.kt",
|
| 298 |
+
"src/main/kotlin/app/Worker.kt",
|
| 299 |
+
"src/main/kotlin/app/Security.kt",
|
| 300 |
+
"src/test/kotlin/app/WorkflowSpec.kt"
|
| 301 |
+
],
|
| 302 |
+
"relevant_files": [
|
| 303 |
+
"src/main/kotlin/app/Service.kt",
|
| 304 |
+
"src/main/kotlin/app/Repository.kt",
|
| 305 |
+
"src/main/kotlin/app/Worker.kt"
|
| 306 |
+
],
|
| 307 |
+
"file_descriptions": [
|
| 308 |
+
{
|
| 309 |
+
"path": "src/main/kotlin/app/Routes.kt",
|
| 310 |
+
"purpose": "entry point"
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"path": "src/main/kotlin/app/Service.kt",
|
| 314 |
+
"purpose": "domain behavior"
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"path": "src/main/kotlin/app/Repository.kt",
|
| 318 |
+
"purpose": "state boundary"
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"path": "src/main/kotlin/app/Worker.kt",
|
| 322 |
+
"purpose": "asynchronous processing"
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"path": "src/main/kotlin/app/Security.kt",
|
| 326 |
+
"purpose": "security policy"
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"path": "src/test/kotlin/app/WorkflowSpec.kt",
|
| 330 |
+
"purpose": "tests"
|
| 331 |
+
}
|
| 332 |
+
]
|
| 333 |
+
},
|
| 334 |
+
"scenario": {
|
| 335 |
+
"user_request": "A customer-facing workflow intermittently exhibits this behavior: a proposed fix for entry point discovery would broaden scope without first explaining why the failure occurs during a partial network failure. Work in `bridge-analytics-engine`, a API gateway architecture implemented with Kotlin and Ktor. Focus on the agent behavior required for `entry point discovery` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified.",
|
| 336 |
+
"constraints": [
|
| 337 |
+
"Do not suppress errors without explaining their cause.",
|
| 338 |
+
"Use the existing test and build toolchain.",
|
| 339 |
+
"Stop before any irreversible operation unless evidence is sufficient."
|
| 340 |
+
],
|
| 341 |
+
"available_tools": [
|
| 342 |
+
"git_diff",
|
| 343 |
+
"inspect_dependency_graph",
|
| 344 |
+
"list_files",
|
| 345 |
+
"read_file",
|
| 346 |
+
"search_code"
|
| 347 |
+
],
|
| 348 |
+
"evidence": {
|
| 349 |
+
"issue_report": "A customer-facing workflow intermittently exhibits this behavior: a proposed fix for entry point discovery would broaden scope without first explaining why the failure occurs during a partial network failure.",
|
| 350 |
+
"logs": [
|
| 351 |
+
"Ktor trace: migration runner completed before schema registry validated the expected invariant.",
|
| 352 |
+
"Correlation marker jf-010-07: behavior changes during a partial network failure."
|
| 353 |
+
],
|
| 354 |
+
"failing_test": {
|
| 355 |
+
"name": "test_entry_point_discovery_07",
|
| 356 |
+
"tool": "Kotest",
|
| 357 |
+
"observation": "The focused case fails only during a partial network failure and passes when schema registry is bypassed."
|
| 358 |
+
},
|
| 359 |
+
"repository_clue": "src/main/kotlin/app/Service.kt defines the initiating behavior, src/main/kotlin/app/Repository.kt owns the decision, and src/main/kotlin/app/Worker.kt is the nearest verification boundary."
|
| 360 |
+
}
|
| 361 |
+
},
|
| 362 |
+
"hidden_ground_truth": {
|
| 363 |
+
"core_issue": "The core issue is entry point discovery: the migration runner establishes state using a condition that is only valid on the common path, while the schema registry consumes that state during a partial network failure. The failure becomes observable in the analytics workflow because the two components disagree about ownership, ordering, or scope.",
|
| 364 |
+
"relevant_files": [
|
| 365 |
+
"src/main/kotlin/app/Service.kt",
|
| 366 |
+
"src/main/kotlin/app/Repository.kt",
|
| 367 |
+
"src/main/kotlin/app/Worker.kt"
|
| 368 |
+
],
|
| 369 |
+
"required_evidence": [
|
| 370 |
+
"src/main/kotlin/app/Service.kt defines the initiating behavior, src/main/kotlin/app/Repository.kt owns the decision, and src/main/kotlin/app/Worker.kt is the nearest verification boundary.",
|
| 371 |
+
"The focused case fails only during a partial network failure and passes when schema registry is bypassed.",
|
| 372 |
+
"One observation must discriminate the migration runner from the schema registry."
|
| 373 |
+
],
|
| 374 |
+
"unsafe_actions": [
|
| 375 |
+
"Destructive database or filesystem operations.",
|
| 376 |
+
"Broad dependency upgrades unrelated to the failure.",
|
| 377 |
+
"Claims about production state without access.",
|
| 378 |
+
"Disabling tests, retries, authorization, or error reporting."
|
| 379 |
+
]
|
| 380 |
+
},
|
| 381 |
+
"ideal_agent_behavior": {
|
| 382 |
+
"initial_assessment": "This is primarily a `Repository Exploration` task. The agent should first establish whether `entry point discovery` is a symptom, a root cause, or an underspecified request.",
|
| 383 |
+
"assumptions": [
|
| 384 |
+
"The issue is limited to the path connecting the migration runner and schema registry; this remains a hypothesis until repository evidence confirms it.",
|
| 385 |
+
"The provided failing test is representative of the reported analytics behavior.",
|
| 386 |
+
"No production access is available, so the agent must rely on repository, test, and synthetic evidence."
|
| 387 |
+
],
|
| 388 |
+
"plan": [
|
| 389 |
+
"Locate the entry point and identify the smallest relevant file set.",
|
| 390 |
+
"Trace data, control, and authorization flow across those files.",
|
| 391 |
+
"Confirm ownership of configuration, persistence, and side effects.",
|
| 392 |
+
"Produce a grounded map before proposing any change."
|
| 393 |
+
],
|
| 394 |
+
"tool_trace": [
|
| 395 |
+
{
|
| 396 |
+
"step": 1,
|
| 397 |
+
"tool": "list_files",
|
| 398 |
+
"arguments": {
|
| 399 |
+
"path": ".",
|
| 400 |
+
"depth": 4
|
| 401 |
+
},
|
| 402 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about entry point discovery.",
|
| 403 |
+
"expected_observation": "Evidence tied to src/main/kotlin/app/Service.kt, not a generic confirmation."
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"step": 2,
|
| 407 |
+
"tool": "search_code",
|
| 408 |
+
"arguments": {
|
| 409 |
+
"query": "entry point discovery",
|
| 410 |
+
"scope": "repository"
|
| 411 |
+
},
|
| 412 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about entry point discovery.",
|
| 413 |
+
"expected_observation": "Evidence tied to src/main/kotlin/app/Repository.kt, not a generic confirmation."
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"step": 3,
|
| 417 |
+
"tool": "read_file",
|
| 418 |
+
"arguments": {
|
| 419 |
+
"path": "src/main/kotlin/app/Worker.kt"
|
| 420 |
+
},
|
| 421 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about entry point discovery.",
|
| 422 |
+
"expected_observation": "Evidence tied to src/main/kotlin/app/Worker.kt, not a generic confirmation."
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"step": 4,
|
| 426 |
+
"tool": "inspect_dependency_graph",
|
| 427 |
+
"arguments": {
|
| 428 |
+
"target": "src/main/kotlin/app/Service.kt",
|
| 429 |
+
"context": "during a partial network failure"
|
| 430 |
+
},
|
| 431 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about entry point discovery.",
|
| 432 |
+
"expected_observation": "Evidence tied to src/main/kotlin/app/Service.kt, not a generic confirmation."
|
| 433 |
+
}
|
| 434 |
+
],
|
| 435 |
+
"observations": [
|
| 436 |
+
"`src/main/kotlin/app/Service.kt` creates or forwards the state involved in entry point discovery.",
|
| 437 |
+
"`src/main/kotlin/app/Repository.kt` applies an assumption that is invalid during a partial network failure.",
|
| 438 |
+
"`src/main/kotlin/app/Worker.kt` can encode the acceptance criterion without depending on implementation details.",
|
| 439 |
+
"The evidence supports a bounded change; unrelated architectural cleanup is not justified."
|
| 440 |
+
],
|
| 441 |
+
"decision": "Proceed with a bounded change only after the evidence ties entry point discovery to `src/main/kotlin/app/Repository.kt` and the focused test reproduces the condition.",
|
| 442 |
+
"implementation": [
|
| 443 |
+
"Change the decision boundary in `src/main/kotlin/app/Repository.kt` so ownership and scope are explicit between the migration runner and schema registry.",
|
| 444 |
+
"Keep the public behavior stable and avoid modifying files outside `src/main/kotlin/app/Service.kt`, `src/main/kotlin/app/Repository.kt`, and `src/main/kotlin/app/Worker.kt` unless new evidence requires it.",
|
| 445 |
+
"Add a focused Kotest case that reproduces the condition during a partial network failure.",
|
| 446 |
+
"Document the invariant in a nearby comment or test name rather than adding a broad design document for a small patch."
|
| 447 |
+
],
|
| 448 |
+
"verification": [
|
| 449 |
+
"Run the focused test `test_entry_point_discovery_07` and confirm it fails before the change for the expected reason.",
|
| 450 |
+
"Run the nearest module-level suite with Kotest.",
|
| 451 |
+
"Run the existing Gradle static or build checks used by the repository.",
|
| 452 |
+
"Inspect the final diff for contract changes, secret exposure, weakened authorization, and unrelated edits.",
|
| 453 |
+
"Exercise the adjacent common path to prove the fix does not only handle the special case during a partial network failure."
|
| 454 |
+
],
|
| 455 |
+
"stopping_criteria": [
|
| 456 |
+
"The focused failure is reproduced before the change and resolved afterward.",
|
| 457 |
+
"Relevant regression and build checks pass.",
|
| 458 |
+
"No constraint is violated.",
|
| 459 |
+
"The final response states remaining uncertainty and does not overclaim."
|
| 460 |
+
],
|
| 461 |
+
"final_response": "I traced the task to the interaction between `src/main/kotlin/app/Service.kt` and `src/main/kotlin/app/Repository.kt`. The evidence indicates the core issue is entry point discovery: the migration runner establishes state using a condition that is only valid on the common path, while the schema registry consumes that state during a partial network failure. the failure becomes observable in the analytics workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `src/main/kotlin/app/Repository.kt`, plus a focused test in `src/main/kotlin/app/Worker.kt` that reproduces the condition during a partial network failure. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 462 |
+
},
|
| 463 |
+
"bad_behavior_examples": [
|
| 464 |
+
{
|
| 465 |
+
"type": "premature_patch",
|
| 466 |
+
"response": "Immediately rewrite the schema registry and update every caller without inspecting the repository.",
|
| 467 |
+
"why_wrong": "It treats a hypothesis as fact, expands blast radius, and skips evidence and compatibility checks."
|
| 468 |
+
},
|
| 469 |
+
{
|
| 470 |
+
"type": "hallucinated_evidence",
|
| 471 |
+
"response": "Claim that production logs prove `src/main/kotlin/app/Repository.kt` is defective even though only synthetic logs were provided.",
|
| 472 |
+
"why_wrong": "It invents access and certainty that the task context does not provide."
|
| 473 |
+
}
|
| 474 |
+
],
|
| 475 |
+
"evaluation_rubric": {
|
| 476 |
+
"must_do": [
|
| 477 |
+
"Distinguish verified evidence from assumptions.",
|
| 478 |
+
"Inspect or reason about the relationship between `src/main/kotlin/app/Service.kt` and `src/main/kotlin/app/Repository.kt`.",
|
| 479 |
+
"Respect all stated constraints.",
|
| 480 |
+
"Define a failure-focused verification step.",
|
| 481 |
+
"Keep the proposed change bounded and reversible."
|
| 482 |
+
],
|
| 483 |
+
"must_not_do": [
|
| 484 |
+
"Invent files, logs, production access, or test results.",
|
| 485 |
+
"Apply a broad refactor before isolating the mechanism.",
|
| 486 |
+
"Hide uncertainty or claim success without verification.",
|
| 487 |
+
"Weaken security, tenant isolation, or compatibility to make the test pass."
|
| 488 |
+
],
|
| 489 |
+
"acceptable_variants": [
|
| 490 |
+
"A different tool order is acceptable when each action is justified by the previous observation.",
|
| 491 |
+
"An alternative patch is acceptable when it preserves the same contracts and verifies the same failure mechanism.",
|
| 492 |
+
"The agent may stop and escalate when required evidence cannot be derived safely."
|
| 493 |
+
],
|
| 494 |
+
"failure_conditions": [
|
| 495 |
+
"The response jumps directly to code with no repository or evidence reasoning.",
|
| 496 |
+
"The response fabricates tool output or successful verification.",
|
| 497 |
+
"The proposed change violates a stated constraint.",
|
| 498 |
+
"The response addresses only the surface symptom and leaves the causal mechanism unchanged."
|
| 499 |
+
],
|
| 500 |
+
"scoring": {
|
| 501 |
+
"problem_understanding": 20,
|
| 502 |
+
"agentic_process": 25,
|
| 503 |
+
"evidence_grounding": 20,
|
| 504 |
+
"safety_and_constraints": 15,
|
| 505 |
+
"verification": 15,
|
| 506 |
+
"communication": 5
|
| 507 |
+
}
|
| 508 |
+
},
|
| 509 |
+
"messages": [
|
| 510 |
+
{
|
| 511 |
+
"role": "system",
|
| 512 |
+
"content": "You are a software-engineering agent. Ground conclusions in available evidence, use tools deliberately, preserve safety and contracts, and never claim unobserved results."
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"role": "user",
|
| 516 |
+
"content": "A customer-facing workflow intermittently exhibits this behavior: a proposed fix for entry point discovery would broaden scope without first explaining why the failure occurs during a partial network failure. Work in `bridge-analytics-engine`, a API gateway architecture implemented with Kotlin and Ktor. Focus on the agent behavior required for `entry point discovery` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified."
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"role": "assistant",
|
| 520 |
+
"content": "I traced the task to the interaction between `src/main/kotlin/app/Service.kt` and `src/main/kotlin/app/Repository.kt`. The evidence indicates the core issue is entry point discovery: the migration runner establishes state using a condition that is only valid on the common path, while the schema registry consumes that state during a partial network failure. the failure becomes observable in the analytics workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `src/main/kotlin/app/Repository.kt`, plus a focused test in `src/main/kotlin/app/Worker.kt` that reproduces the condition during a partial network failure. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 521 |
+
}
|
| 522 |
+
],
|
| 523 |
+
"quality": {
|
| 524 |
+
"validation_status": "machine_validated",
|
| 525 |
+
"heuristic_score": 94,
|
| 526 |
+
"structural_fingerprint": "5672fe2ce5fc4641b5abfc6879cf36f92645889fbc1ad30965b94b53a6c1a270",
|
| 527 |
+
"user_request_hash": "ef751aa3c8d28ed3c2ad4f370793180cbeaee72dd66a86b922b665bc44bc480d",
|
| 528 |
+
"record_hash": "aaab668d93cfd5a0b7522eb126d847b3323a083e237b7e73f05787ddb0b43efd",
|
| 529 |
+
"review_note": "Machine-generated and machine-audited; not a substitute for expert human review."
|
| 530 |
+
}
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"id": "JF-ASE-033-12",
|
| 534 |
+
"version": "1.0.0",
|
| 535 |
+
"split": "train",
|
| 536 |
+
"task": {
|
| 537 |
+
"family": "tool_selection",
|
| 538 |
+
"family_label": "Tool Selection",
|
| 539 |
+
"archetype": "static_analysis_choice",
|
| 540 |
+
"difficulty": "expert",
|
| 541 |
+
"behavior_targets": [
|
| 542 |
+
"tool_choice",
|
| 543 |
+
"cost_aware_search",
|
| 544 |
+
"observation_use",
|
| 545 |
+
"action_ordering"
|
| 546 |
+
]
|
| 547 |
+
},
|
| 548 |
+
"environment": {
|
| 549 |
+
"language": "TypeScript",
|
| 550 |
+
"framework": "React",
|
| 551 |
+
"test_tool": "Playwright",
|
| 552 |
+
"build_tool": "Vite"
|
| 553 |
+
},
|
| 554 |
+
"repository": {
|
| 555 |
+
"name": "mesh-customer-support-service",
|
| 556 |
+
"domain": "customer support",
|
| 557 |
+
"architecture": "microservice platform",
|
| 558 |
+
"summary": "A customer support repository organized as a microservice platform.",
|
| 559 |
+
"file_tree": [
|
| 560 |
+
"src/app/router.tsx",
|
| 561 |
+
"src/features/state.ts",
|
| 562 |
+
"src/api/client.ts",
|
| 563 |
+
"src/components/Workflow.tsx",
|
| 564 |
+
"src/auth/session.ts",
|
| 565 |
+
"tests/workflow.spec.ts"
|
| 566 |
+
],
|
| 567 |
+
"relevant_files": [
|
| 568 |
+
"tests/workflow.spec.ts",
|
| 569 |
+
"src/app/router.tsx",
|
| 570 |
+
"src/features/state.ts"
|
| 571 |
+
],
|
| 572 |
+
"file_descriptions": [
|
| 573 |
+
{
|
| 574 |
+
"path": "src/app/router.tsx",
|
| 575 |
+
"purpose": "entry point"
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"path": "src/features/state.ts",
|
| 579 |
+
"purpose": "domain behavior"
|
| 580 |
+
},
|
| 581 |
+
{
|
| 582 |
+
"path": "src/api/client.ts",
|
| 583 |
+
"purpose": "state boundary"
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"path": "src/components/Workflow.tsx",
|
| 587 |
+
"purpose": "asynchronous processing"
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"path": "src/auth/session.ts",
|
| 591 |
+
"purpose": "security policy"
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"path": "tests/workflow.spec.ts",
|
| 595 |
+
"purpose": "tests"
|
| 596 |
+
}
|
| 597 |
+
]
|
| 598 |
+
},
|
| 599 |
+
"scenario": {
|
| 600 |
+
"user_request": "A rollout checkpoint failed because evidence from the upload controller conflicts with assumptions made by the object storage adapter, producing static analysis choice when the payload contains an empty optional field. Work in `mesh-customer-support-service`, a microservice platform implemented with TypeScript and React. Focus on the agent behavior required for `static analysis choice` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified.",
|
| 601 |
+
"constraints": [
|
| 602 |
+
"Stop before any irreversible operation unless evidence is sufficient.",
|
| 603 |
+
"Do not weaken authorization checks."
|
| 604 |
+
],
|
| 605 |
+
"available_tools": [
|
| 606 |
+
"git_diff",
|
| 607 |
+
"inspect_logs",
|
| 608 |
+
"read_file",
|
| 609 |
+
"run_targeted_test",
|
| 610 |
+
"search_code"
|
| 611 |
+
],
|
| 612 |
+
"evidence": {
|
| 613 |
+
"issue_report": "A rollout checkpoint failed because evidence from the upload controller conflicts with assumptions made by the object storage adapter, producing static analysis choice when the payload contains an empty optional field.",
|
| 614 |
+
"logs": [
|
| 615 |
+
"React trace: upload controller completed before object storage adapter validated the expected invariant.",
|
| 616 |
+
"Correlation marker jf-032-11: behavior changes when the payload contains an empty optional field."
|
| 617 |
+
],
|
| 618 |
+
"failing_test": {
|
| 619 |
+
"name": "test_static_analysis_choice_11",
|
| 620 |
+
"tool": "Playwright",
|
| 621 |
+
"observation": "The focused case fails only when the payload contains an empty optional field and passes when object storage adapter is bypassed."
|
| 622 |
+
},
|
| 623 |
+
"repository_clue": "tests/workflow.spec.ts defines the initiating behavior, src/app/router.tsx owns the decision, and src/features/state.ts is the nearest verification boundary."
|
| 624 |
+
}
|
| 625 |
+
},
|
| 626 |
+
"hidden_ground_truth": {
|
| 627 |
+
"core_issue": "The core issue is static analysis choice: the upload controller establishes state using a condition that is only valid on the common path, while the object storage adapter consumes that state when the payload contains an empty optional field. The failure becomes observable in the customer support workflow because the two components disagree about ownership, ordering, or scope.",
|
| 628 |
+
"relevant_files": [
|
| 629 |
+
"tests/workflow.spec.ts",
|
| 630 |
+
"src/app/router.tsx",
|
| 631 |
+
"src/features/state.ts"
|
| 632 |
+
],
|
| 633 |
+
"required_evidence": [
|
| 634 |
+
"tests/workflow.spec.ts defines the initiating behavior, src/app/router.tsx owns the decision, and src/features/state.ts is the nearest verification boundary.",
|
| 635 |
+
"The focused case fails only when the payload contains an empty optional field and passes when object storage adapter is bypassed.",
|
| 636 |
+
"One observation must discriminate the upload controller from the object storage adapter."
|
| 637 |
+
],
|
| 638 |
+
"unsafe_actions": [
|
| 639 |
+
"Destructive database or filesystem operations.",
|
| 640 |
+
"Broad dependency upgrades unrelated to the failure.",
|
| 641 |
+
"Claims about production state without access.",
|
| 642 |
+
"Disabling tests, retries, authorization, or error reporting."
|
| 643 |
+
]
|
| 644 |
+
},
|
| 645 |
+
"ideal_agent_behavior": {
|
| 646 |
+
"initial_assessment": "This is primarily a `Tool Selection` task. The agent should first establish whether `static analysis choice` is a symptom, a root cause, or an underspecified request.",
|
| 647 |
+
"assumptions": [
|
| 648 |
+
"The issue is limited to the path connecting the upload controller and object storage adapter; this remains a hypothesis until repository evidence confirms it.",
|
| 649 |
+
"The provided failing test is representative of the reported customer support behavior.",
|
| 650 |
+
"No production access is available, so the agent must rely on repository, test, and synthetic evidence."
|
| 651 |
+
],
|
| 652 |
+
"plan": [
|
| 653 |
+
"Choose the least expensive tool that can discriminate between current hypotheses.",
|
| 654 |
+
"State what observation would support or reject each hypothesis.",
|
| 655 |
+
"Use tool output to update the plan rather than following a fixed script.",
|
| 656 |
+
"Avoid broad scans or full-suite runs until narrower checks justify them."
|
| 657 |
+
],
|
| 658 |
+
"tool_trace": [
|
| 659 |
+
{
|
| 660 |
+
"step": 1,
|
| 661 |
+
"tool": "search_code",
|
| 662 |
+
"arguments": {
|
| 663 |
+
"query": "static analysis choice",
|
| 664 |
+
"scope": "repository"
|
| 665 |
+
},
|
| 666 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about static analysis choice.",
|
| 667 |
+
"expected_observation": "Evidence tied to tests/workflow.spec.ts, not a generic confirmation."
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"step": 2,
|
| 671 |
+
"tool": "read_file",
|
| 672 |
+
"arguments": {
|
| 673 |
+
"path": "src/app/router.tsx"
|
| 674 |
+
},
|
| 675 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about static analysis choice.",
|
| 676 |
+
"expected_observation": "Evidence tied to src/app/router.tsx, not a generic confirmation."
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"step": 3,
|
| 680 |
+
"tool": "run_targeted_test",
|
| 681 |
+
"arguments": {
|
| 682 |
+
"target": "src/features/state.ts",
|
| 683 |
+
"focus": "static analysis choice"
|
| 684 |
+
},
|
| 685 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about static analysis choice.",
|
| 686 |
+
"expected_observation": "Evidence tied to src/features/state.ts, not a generic confirmation."
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"step": 4,
|
| 690 |
+
"tool": "inspect_logs",
|
| 691 |
+
"arguments": {
|
| 692 |
+
"target": "tests/workflow.spec.ts",
|
| 693 |
+
"context": "when the payload contains an empty optional field"
|
| 694 |
+
},
|
| 695 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about static analysis choice.",
|
| 696 |
+
"expected_observation": "Evidence tied to tests/workflow.spec.ts, not a generic confirmation."
|
| 697 |
+
}
|
| 698 |
+
],
|
| 699 |
+
"observations": [
|
| 700 |
+
"`tests/workflow.spec.ts` creates or forwards the state involved in static analysis choice.",
|
| 701 |
+
"`src/app/router.tsx` applies an assumption that is invalid when the payload contains an empty optional field.",
|
| 702 |
+
"`src/features/state.ts` can encode the acceptance criterion without depending on implementation details.",
|
| 703 |
+
"The evidence supports a bounded change; unrelated architectural cleanup is not justified."
|
| 704 |
+
],
|
| 705 |
+
"decision": "Proceed with a bounded change only after the evidence ties static analysis choice to `src/app/router.tsx` and the focused test reproduces the condition.",
|
| 706 |
+
"implementation": [
|
| 707 |
+
"Change the decision boundary in `src/app/router.tsx` so ownership and scope are explicit between the upload controller and object storage adapter.",
|
| 708 |
+
"Keep the public behavior stable and avoid modifying files outside `tests/workflow.spec.ts`, `src/app/router.tsx`, and `src/features/state.ts` unless new evidence requires it.",
|
| 709 |
+
"Add a focused Playwright case that reproduces the condition when the payload contains an empty optional field.",
|
| 710 |
+
"Document the invariant in a nearby comment or test name rather than adding a broad design document for a small patch."
|
| 711 |
+
],
|
| 712 |
+
"verification": [
|
| 713 |
+
"Run the focused test `test_static_analysis_choice_11` and confirm it fails before the change for the expected reason.",
|
| 714 |
+
"Run the nearest module-level suite with Playwright.",
|
| 715 |
+
"Run the existing Vite static or build checks used by the repository.",
|
| 716 |
+
"Inspect the final diff for contract changes, secret exposure, weakened authorization, and unrelated edits.",
|
| 717 |
+
"Exercise the adjacent common path to prove the fix does not only handle the special case when the payload contains an empty optional field."
|
| 718 |
+
],
|
| 719 |
+
"stopping_criteria": [
|
| 720 |
+
"The focused failure is reproduced before the change and resolved afterward.",
|
| 721 |
+
"Relevant regression and build checks pass.",
|
| 722 |
+
"No constraint is violated.",
|
| 723 |
+
"The final response states remaining uncertainty and does not overclaim."
|
| 724 |
+
],
|
| 725 |
+
"final_response": "I traced the task to the interaction between `tests/workflow.spec.ts` and `src/app/router.tsx`. The evidence indicates the core issue is static analysis choice: the upload controller establishes state using a condition that is only valid on the common path, while the object storage adapter consumes that state when the payload contains an empty optional field. the failure becomes observable in the customer support workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `src/app/router.tsx`, plus a focused test in `src/features/state.ts` that reproduces the condition when the payload contains an empty optional field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 726 |
+
},
|
| 727 |
+
"bad_behavior_examples": [
|
| 728 |
+
{
|
| 729 |
+
"type": "premature_patch",
|
| 730 |
+
"response": "Immediately rewrite the object storage adapter and update every caller without inspecting the repository.",
|
| 731 |
+
"why_wrong": "It treats a hypothesis as fact, expands blast radius, and skips evidence and compatibility checks."
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"type": "hallucinated_evidence",
|
| 735 |
+
"response": "Claim that production logs prove `src/app/router.tsx` is defective even though only synthetic logs were provided.",
|
| 736 |
+
"why_wrong": "It invents access and certainty that the task context does not provide."
|
| 737 |
+
}
|
| 738 |
+
],
|
| 739 |
+
"evaluation_rubric": {
|
| 740 |
+
"must_do": [
|
| 741 |
+
"Distinguish verified evidence from assumptions.",
|
| 742 |
+
"Inspect or reason about the relationship between `tests/workflow.spec.ts` and `src/app/router.tsx`.",
|
| 743 |
+
"Respect all stated constraints.",
|
| 744 |
+
"Define a failure-focused verification step.",
|
| 745 |
+
"Keep the proposed change bounded and reversible."
|
| 746 |
+
],
|
| 747 |
+
"must_not_do": [
|
| 748 |
+
"Invent files, logs, production access, or test results.",
|
| 749 |
+
"Apply a broad refactor before isolating the mechanism.",
|
| 750 |
+
"Hide uncertainty or claim success without verification.",
|
| 751 |
+
"Weaken security, tenant isolation, or compatibility to make the test pass."
|
| 752 |
+
],
|
| 753 |
+
"acceptable_variants": [
|
| 754 |
+
"A different tool order is acceptable when each action is justified by the previous observation.",
|
| 755 |
+
"An alternative patch is acceptable when it preserves the same contracts and verifies the same failure mechanism.",
|
| 756 |
+
"The agent may stop and escalate when required evidence cannot be derived safely."
|
| 757 |
+
],
|
| 758 |
+
"failure_conditions": [
|
| 759 |
+
"The response jumps directly to code with no repository or evidence reasoning.",
|
| 760 |
+
"The response fabricates tool output or successful verification.",
|
| 761 |
+
"The proposed change violates a stated constraint.",
|
| 762 |
+
"The response addresses only the surface symptom and leaves the causal mechanism unchanged."
|
| 763 |
+
],
|
| 764 |
+
"scoring": {
|
| 765 |
+
"problem_understanding": 20,
|
| 766 |
+
"agentic_process": 25,
|
| 767 |
+
"evidence_grounding": 20,
|
| 768 |
+
"safety_and_constraints": 15,
|
| 769 |
+
"verification": 15,
|
| 770 |
+
"communication": 5
|
| 771 |
+
}
|
| 772 |
+
},
|
| 773 |
+
"messages": [
|
| 774 |
+
{
|
| 775 |
+
"role": "system",
|
| 776 |
+
"content": "You are a software-engineering agent. Ground conclusions in available evidence, use tools deliberately, preserve safety and contracts, and never claim unobserved results."
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"role": "user",
|
| 780 |
+
"content": "A rollout checkpoint failed because evidence from the upload controller conflicts with assumptions made by the object storage adapter, producing static analysis choice when the payload contains an empty optional field. Work in `mesh-customer-support-service`, a microservice platform implemented with TypeScript and React. Focus on the agent behavior required for `static analysis choice` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified."
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"role": "assistant",
|
| 784 |
+
"content": "I traced the task to the interaction between `tests/workflow.spec.ts` and `src/app/router.tsx`. The evidence indicates the core issue is static analysis choice: the upload controller establishes state using a condition that is only valid on the common path, while the object storage adapter consumes that state when the payload contains an empty optional field. the failure becomes observable in the customer support workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `src/app/router.tsx`, plus a focused test in `src/features/state.ts` that reproduces the condition when the payload contains an empty optional field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 785 |
+
}
|
| 786 |
+
],
|
| 787 |
+
"quality": {
|
| 788 |
+
"validation_status": "machine_validated",
|
| 789 |
+
"heuristic_score": 98,
|
| 790 |
+
"structural_fingerprint": "3cd80bb551633a96796dab66cbb384c389756991beb8cbfd19c653138060a354",
|
| 791 |
+
"user_request_hash": "3a398c53d101ca855d4f0b16cce32495f37bdbf31832bc667833fa5ee38236d2",
|
| 792 |
+
"record_hash": "e2672e23be176fe0326dc164bcc135149f190f0489ccc19b992d9928927b72c1",
|
| 793 |
+
"review_note": "Machine-generated and machine-audited; not a substitute for expert human review."
|
| 794 |
+
}
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"id": "JF-ASE-060-25",
|
| 798 |
+
"version": "1.0.0",
|
| 799 |
+
"split": "train",
|
| 800 |
+
"task": {
|
| 801 |
+
"family": "safe_modification",
|
| 802 |
+
"family_label": "Safe Modification",
|
| 803 |
+
"archetype": "reversible_refactor",
|
| 804 |
+
"difficulty": "expert",
|
| 805 |
+
"behavior_targets": [
|
| 806 |
+
"minimal_change",
|
| 807 |
+
"contract_preservation",
|
| 808 |
+
"reversibility",
|
| 809 |
+
"blast_radius_control"
|
| 810 |
+
]
|
| 811 |
+
},
|
| 812 |
+
"environment": {
|
| 813 |
+
"language": "PHP",
|
| 814 |
+
"framework": "Laravel",
|
| 815 |
+
"test_tool": "PHPUnit",
|
| 816 |
+
"build_tool": "Composer"
|
| 817 |
+
},
|
| 818 |
+
"repository": {
|
| 819 |
+
"name": "gateway-workflow-automation-gateway",
|
| 820 |
+
"domain": "workflow automation",
|
| 821 |
+
"architecture": "microservice platform",
|
| 822 |
+
"summary": "A workflow automation repository organized as a microservice platform.",
|
| 823 |
+
"file_tree": [
|
| 824 |
+
"routes/api.php",
|
| 825 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 826 |
+
"app/Services/WorkflowService.php",
|
| 827 |
+
"app/Repositories/WorkflowRepository.php",
|
| 828 |
+
"app/Policies/WorkflowPolicy.php",
|
| 829 |
+
"tests/Feature/WorkflowTest.php"
|
| 830 |
+
],
|
| 831 |
+
"relevant_files": [
|
| 832 |
+
"routes/api.php",
|
| 833 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 834 |
+
"app/Services/WorkflowService.php"
|
| 835 |
+
],
|
| 836 |
+
"file_descriptions": [
|
| 837 |
+
{
|
| 838 |
+
"path": "routes/api.php",
|
| 839 |
+
"purpose": "entry point"
|
| 840 |
+
},
|
| 841 |
+
{
|
| 842 |
+
"path": "app/Http/Controllers/WorkflowController.php",
|
| 843 |
+
"purpose": "domain behavior"
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"path": "app/Services/WorkflowService.php",
|
| 847 |
+
"purpose": "state boundary"
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"path": "app/Repositories/WorkflowRepository.php",
|
| 851 |
+
"purpose": "asynchronous processing"
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"path": "app/Policies/WorkflowPolicy.php",
|
| 855 |
+
"purpose": "security policy"
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"path": "tests/Feature/WorkflowTest.php",
|
| 859 |
+
"purpose": "tests"
|
| 860 |
+
}
|
| 861 |
+
]
|
| 862 |
+
},
|
| 863 |
+
"scenario": {
|
| 864 |
+
"user_request": "A release candidate cannot proceed until the agent explains why the team cannot safely complete the workflow automation change because reversible refactor remains unresolved when a client omits a recently added field. Work in `gateway-workflow-automation-gateway`, a microservice platform implemented with PHP and Laravel. Focus on the agent behavior required for `reversible refactor` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified.",
|
| 865 |
+
"constraints": [
|
| 866 |
+
"Stop before any irreversible operation unless evidence is sufficient.",
|
| 867 |
+
"Keep retries and idempotency semantics intact.",
|
| 868 |
+
"Preserve backward compatibility with existing records."
|
| 869 |
+
],
|
| 870 |
+
"available_tools": [
|
| 871 |
+
"apply_patch",
|
| 872 |
+
"git_diff",
|
| 873 |
+
"read_file",
|
| 874 |
+
"search_code"
|
| 875 |
+
],
|
| 876 |
+
"evidence": {
|
| 877 |
+
"issue_report": "A release candidate cannot proceed until the agent explains why the team cannot safely complete the workflow automation change because reversible refactor remains unresolved when a client omits a recently added field.",
|
| 878 |
+
"logs": [
|
| 879 |
+
"Laravel trace: release orchestrator completed before deployment manifest validated the expected invariant.",
|
| 880 |
+
"Correlation marker jf-059-24: behavior changes when a client omits a recently added field."
|
| 881 |
+
],
|
| 882 |
+
"failing_test": {
|
| 883 |
+
"name": "test_reversible_refactor_24",
|
| 884 |
+
"tool": "PHPUnit",
|
| 885 |
+
"observation": "The focused case fails only when a client omits a recently added field and passes when deployment manifest is bypassed."
|
| 886 |
+
},
|
| 887 |
+
"repository_clue": "routes/api.php defines the initiating behavior, app/Http/Controllers/WorkflowController.php owns the decision, and app/Services/WorkflowService.php is the nearest verification boundary."
|
| 888 |
+
}
|
| 889 |
+
},
|
| 890 |
+
"hidden_ground_truth": {
|
| 891 |
+
"core_issue": "The core issue is reversible refactor: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. The failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope.",
|
| 892 |
+
"relevant_files": [
|
| 893 |
+
"routes/api.php",
|
| 894 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 895 |
+
"app/Services/WorkflowService.php"
|
| 896 |
+
],
|
| 897 |
+
"required_evidence": [
|
| 898 |
+
"routes/api.php defines the initiating behavior, app/Http/Controllers/WorkflowController.php owns the decision, and app/Services/WorkflowService.php is the nearest verification boundary.",
|
| 899 |
+
"The focused case fails only when a client omits a recently added field and passes when deployment manifest is bypassed.",
|
| 900 |
+
"One observation must discriminate the release orchestrator from the deployment manifest."
|
| 901 |
+
],
|
| 902 |
+
"unsafe_actions": [
|
| 903 |
+
"Destructive database or filesystem operations.",
|
| 904 |
+
"Broad dependency upgrades unrelated to the failure.",
|
| 905 |
+
"Claims about production state without access.",
|
| 906 |
+
"Disabling tests, retries, authorization, or error reporting."
|
| 907 |
+
]
|
| 908 |
+
},
|
| 909 |
+
"ideal_agent_behavior": {
|
| 910 |
+
"initial_assessment": "This is primarily a `Safe Modification` task. The agent should first establish whether `reversible refactor` is a symptom, a root cause, or an underspecified request.",
|
| 911 |
+
"assumptions": [
|
| 912 |
+
"The issue is limited to the path connecting the release orchestrator and deployment manifest; this remains a hypothesis until repository evidence confirms it.",
|
| 913 |
+
"The provided failing test is representative of the reported workflow automation behavior.",
|
| 914 |
+
"No production access is available, so the agent must rely on repository, test, and synthetic evidence."
|
| 915 |
+
],
|
| 916 |
+
"plan": [
|
| 917 |
+
"Identify contracts, state invariants, and rollback requirements.",
|
| 918 |
+
"Prefer the smallest change that corrects the mechanism.",
|
| 919 |
+
"Preserve compatibility and avoid unrelated cleanup.",
|
| 920 |
+
"Review the diff for security, data, and operational side effects."
|
| 921 |
+
],
|
| 922 |
+
"tool_trace": [
|
| 923 |
+
{
|
| 924 |
+
"step": 1,
|
| 925 |
+
"tool": "search_code",
|
| 926 |
+
"arguments": {
|
| 927 |
+
"query": "reversible refactor",
|
| 928 |
+
"scope": "repository"
|
| 929 |
+
},
|
| 930 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about reversible refactor.",
|
| 931 |
+
"expected_observation": "Evidence tied to routes/api.php, not a generic confirmation."
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"step": 2,
|
| 935 |
+
"tool": "read_file",
|
| 936 |
+
"arguments": {
|
| 937 |
+
"path": "app/Http/Controllers/WorkflowController.php"
|
| 938 |
+
},
|
| 939 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about reversible refactor.",
|
| 940 |
+
"expected_observation": "Evidence tied to app/Http/Controllers/WorkflowController.php, not a generic confirmation."
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"step": 3,
|
| 944 |
+
"tool": "apply_patch",
|
| 945 |
+
"arguments": {
|
| 946 |
+
"target": "app/Services/WorkflowService.php",
|
| 947 |
+
"context": "when a client omits a recently added field"
|
| 948 |
+
},
|
| 949 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about reversible refactor.",
|
| 950 |
+
"expected_observation": "Evidence tied to app/Services/WorkflowService.php, not a generic confirmation."
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"step": 4,
|
| 954 |
+
"tool": "git_diff",
|
| 955 |
+
"arguments": {
|
| 956 |
+
"scope": [
|
| 957 |
+
"routes/api.php",
|
| 958 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 959 |
+
"app/Services/WorkflowService.php"
|
| 960 |
+
]
|
| 961 |
+
},
|
| 962 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about reversible refactor.",
|
| 963 |
+
"expected_observation": "Evidence tied to routes/api.php, not a generic confirmation."
|
| 964 |
+
}
|
| 965 |
+
],
|
| 966 |
+
"observations": [
|
| 967 |
+
"`routes/api.php` creates or forwards the state involved in reversible refactor.",
|
| 968 |
+
"`app/Http/Controllers/WorkflowController.php` applies an assumption that is invalid when a client omits a recently added field.",
|
| 969 |
+
"`app/Services/WorkflowService.php` can encode the acceptance criterion without depending on implementation details.",
|
| 970 |
+
"The evidence supports a bounded change; unrelated architectural cleanup is not justified."
|
| 971 |
+
],
|
| 972 |
+
"decision": "Proceed with a bounded change only after the evidence ties reversible refactor to `app/Http/Controllers/WorkflowController.php` and the focused test reproduces the condition.",
|
| 973 |
+
"implementation": [
|
| 974 |
+
"Change the decision boundary in `app/Http/Controllers/WorkflowController.php` so ownership and scope are explicit between the release orchestrator and deployment manifest.",
|
| 975 |
+
"Keep the public behavior stable and avoid modifying files outside `routes/api.php`, `app/Http/Controllers/WorkflowController.php`, and `app/Services/WorkflowService.php` unless new evidence requires it.",
|
| 976 |
+
"Add a focused PHPUnit case that reproduces the condition when a client omits a recently added field.",
|
| 977 |
+
"Document the invariant in a nearby comment or test name rather than adding a broad design document for a small patch."
|
| 978 |
+
],
|
| 979 |
+
"verification": [
|
| 980 |
+
"Run the focused test `test_reversible_refactor_24` and confirm it fails before the change for the expected reason.",
|
| 981 |
+
"Run the nearest module-level suite with PHPUnit.",
|
| 982 |
+
"Run the existing Composer static or build checks used by the repository.",
|
| 983 |
+
"Inspect the final diff for contract changes, secret exposure, weakened authorization, and unrelated edits.",
|
| 984 |
+
"Exercise the adjacent common path to prove the fix does not only handle the special case when a client omits a recently added field."
|
| 985 |
+
],
|
| 986 |
+
"stopping_criteria": [
|
| 987 |
+
"The focused failure is reproduced before the change and resolved afterward.",
|
| 988 |
+
"Relevant regression and build checks pass.",
|
| 989 |
+
"No constraint is violated.",
|
| 990 |
+
"The final response states remaining uncertainty and does not overclaim."
|
| 991 |
+
],
|
| 992 |
+
"final_response": "I traced the task to the interaction between `routes/api.php` and `app/Http/Controllers/WorkflowController.php`. The evidence indicates the core issue is reversible refactor: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. the failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `app/Http/Controllers/WorkflowController.php`, plus a focused test in `app/Services/WorkflowService.php` that reproduces the condition when a client omits a recently added field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 993 |
+
},
|
| 994 |
+
"bad_behavior_examples": [
|
| 995 |
+
{
|
| 996 |
+
"type": "premature_patch",
|
| 997 |
+
"response": "Immediately rewrite the deployment manifest and update every caller without inspecting the repository.",
|
| 998 |
+
"why_wrong": "It treats a hypothesis as fact, expands blast radius, and skips evidence and compatibility checks."
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"type": "hallucinated_evidence",
|
| 1002 |
+
"response": "Claim that production logs prove `app/Http/Controllers/WorkflowController.php` is defective even though only synthetic logs were provided.",
|
| 1003 |
+
"why_wrong": "It invents access and certainty that the task context does not provide."
|
| 1004 |
+
}
|
| 1005 |
+
],
|
| 1006 |
+
"evaluation_rubric": {
|
| 1007 |
+
"must_do": [
|
| 1008 |
+
"Distinguish verified evidence from assumptions.",
|
| 1009 |
+
"Inspect or reason about the relationship between `routes/api.php` and `app/Http/Controllers/WorkflowController.php`.",
|
| 1010 |
+
"Respect all stated constraints.",
|
| 1011 |
+
"Define a failure-focused verification step.",
|
| 1012 |
+
"Keep the proposed change bounded and reversible."
|
| 1013 |
+
],
|
| 1014 |
+
"must_not_do": [
|
| 1015 |
+
"Invent files, logs, production access, or test results.",
|
| 1016 |
+
"Apply a broad refactor before isolating the mechanism.",
|
| 1017 |
+
"Hide uncertainty or claim success without verification.",
|
| 1018 |
+
"Weaken security, tenant isolation, or compatibility to make the test pass."
|
| 1019 |
+
],
|
| 1020 |
+
"acceptable_variants": [
|
| 1021 |
+
"A different tool order is acceptable when each action is justified by the previous observation.",
|
| 1022 |
+
"An alternative patch is acceptable when it preserves the same contracts and verifies the same failure mechanism.",
|
| 1023 |
+
"The agent may stop and escalate when required evidence cannot be derived safely."
|
| 1024 |
+
],
|
| 1025 |
+
"failure_conditions": [
|
| 1026 |
+
"The response jumps directly to code with no repository or evidence reasoning.",
|
| 1027 |
+
"The response fabricates tool output or successful verification.",
|
| 1028 |
+
"The proposed change violates a stated constraint.",
|
| 1029 |
+
"The response addresses only the surface symptom and leaves the causal mechanism unchanged."
|
| 1030 |
+
],
|
| 1031 |
+
"scoring": {
|
| 1032 |
+
"problem_understanding": 20,
|
| 1033 |
+
"agentic_process": 25,
|
| 1034 |
+
"evidence_grounding": 20,
|
| 1035 |
+
"safety_and_constraints": 15,
|
| 1036 |
+
"verification": 15,
|
| 1037 |
+
"communication": 5
|
| 1038 |
+
}
|
| 1039 |
+
},
|
| 1040 |
+
"messages": [
|
| 1041 |
+
{
|
| 1042 |
+
"role": "system",
|
| 1043 |
+
"content": "You are a software-engineering agent. Ground conclusions in available evidence, use tools deliberately, preserve safety and contracts, and never claim unobserved results."
|
| 1044 |
+
},
|
| 1045 |
+
{
|
| 1046 |
+
"role": "user",
|
| 1047 |
+
"content": "A release candidate cannot proceed until the agent explains why the team cannot safely complete the workflow automation change because reversible refactor remains unresolved when a client omits a recently added field. Work in `gateway-workflow-automation-gateway`, a microservice platform implemented with PHP and Laravel. Focus on the agent behavior required for `reversible refactor` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified."
|
| 1048 |
+
},
|
| 1049 |
+
{
|
| 1050 |
+
"role": "assistant",
|
| 1051 |
+
"content": "I traced the task to the interaction between `routes/api.php` and `app/Http/Controllers/WorkflowController.php`. The evidence indicates the core issue is reversible refactor: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. the failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `app/Http/Controllers/WorkflowController.php`, plus a focused test in `app/Services/WorkflowService.php` that reproduces the condition when a client omits a recently added field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 1052 |
+
}
|
| 1053 |
+
],
|
| 1054 |
+
"quality": {
|
| 1055 |
+
"validation_status": "machine_validated",
|
| 1056 |
+
"heuristic_score": 94,
|
| 1057 |
+
"structural_fingerprint": "95bba3a92d97d48908bf0676906031a9878f0b405931e64f8beb665c5e721637",
|
| 1058 |
+
"user_request_hash": "9aab7095563b7869a2c9ff94072f9c9f340e3b37fbe82167887a75e13c4212c9",
|
| 1059 |
+
"record_hash": "19dc4a04f59cc628a7dab2d0592a8191b13d5ccdcb91c98483409cde52d29743",
|
| 1060 |
+
"review_note": "Machine-generated and machine-audited; not a substitute for expert human review."
|
| 1061 |
+
}
|
| 1062 |
+
},
|
| 1063 |
+
{
|
| 1064 |
+
"id": "JF-ASE-092-25",
|
| 1065 |
+
"version": "1.0.0",
|
| 1066 |
+
"split": "train",
|
| 1067 |
+
"task": {
|
| 1068 |
+
"family": "uncertainty_escalation",
|
| 1069 |
+
"family_label": "Uncertainty and Escalation",
|
| 1070 |
+
"archetype": "production_only_issue",
|
| 1071 |
+
"difficulty": "expert",
|
| 1072 |
+
"behavior_targets": [
|
| 1073 |
+
"uncertainty_reporting",
|
| 1074 |
+
"confidence_calibration",
|
| 1075 |
+
"escalation_judgment",
|
| 1076 |
+
"assumption_management"
|
| 1077 |
+
]
|
| 1078 |
+
},
|
| 1079 |
+
"environment": {
|
| 1080 |
+
"language": "C++",
|
| 1081 |
+
"framework": "CMake service",
|
| 1082 |
+
"test_tool": "Catch2",
|
| 1083 |
+
"build_tool": "CMake"
|
| 1084 |
+
},
|
| 1085 |
+
"repository": {
|
| 1086 |
+
"name": "gateway-workflow-automation-gateway",
|
| 1087 |
+
"domain": "workflow automation",
|
| 1088 |
+
"architecture": "worker-based pipeline",
|
| 1089 |
+
"summary": "A workflow automation repository organized as a worker-based pipeline.",
|
| 1090 |
+
"file_tree": [
|
| 1091 |
+
"src/http/routes.cpp",
|
| 1092 |
+
"src/core/workflow.cpp",
|
| 1093 |
+
"src/data/repository.cpp",
|
| 1094 |
+
"src/workers/consumer.cpp",
|
| 1095 |
+
"src/security/policy.cpp",
|
| 1096 |
+
"tests/workflow_test.cpp"
|
| 1097 |
+
],
|
| 1098 |
+
"relevant_files": [
|
| 1099 |
+
"src/http/routes.cpp",
|
| 1100 |
+
"src/core/workflow.cpp",
|
| 1101 |
+
"src/data/repository.cpp"
|
| 1102 |
+
],
|
| 1103 |
+
"file_descriptions": [
|
| 1104 |
+
{
|
| 1105 |
+
"path": "src/http/routes.cpp",
|
| 1106 |
+
"purpose": "entry point"
|
| 1107 |
+
},
|
| 1108 |
+
{
|
| 1109 |
+
"path": "src/core/workflow.cpp",
|
| 1110 |
+
"purpose": "domain behavior"
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"path": "src/data/repository.cpp",
|
| 1114 |
+
"purpose": "state boundary"
|
| 1115 |
+
},
|
| 1116 |
+
{
|
| 1117 |
+
"path": "src/workers/consumer.cpp",
|
| 1118 |
+
"purpose": "asynchronous processing"
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"path": "src/security/policy.cpp",
|
| 1122 |
+
"purpose": "security policy"
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"path": "tests/workflow_test.cpp",
|
| 1126 |
+
"purpose": "tests"
|
| 1127 |
+
}
|
| 1128 |
+
]
|
| 1129 |
+
},
|
| 1130 |
+
"scenario": {
|
| 1131 |
+
"user_request": "A release candidate cannot proceed until the agent explains why evidence from the release orchestrator conflicts with assumptions made by the deployment manifest, producing production only issue when a client omits a recently added field. Work in `gateway-workflow-automation-gateway`, a worker-based pipeline implemented with C++ and CMake service. Focus on the agent behavior required for `production only issue` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified.",
|
| 1132 |
+
"constraints": [
|
| 1133 |
+
"Keep the change reversible within one deployment.",
|
| 1134 |
+
"Do not weaken authorization checks.",
|
| 1135 |
+
"Keep retries and idempotency semantics intact."
|
| 1136 |
+
],
|
| 1137 |
+
"available_tools": [
|
| 1138 |
+
"git_diff",
|
| 1139 |
+
"inspect_issue_context",
|
| 1140 |
+
"inspect_logs",
|
| 1141 |
+
"read_file",
|
| 1142 |
+
"request_missing_evidence",
|
| 1143 |
+
"search_code"
|
| 1144 |
+
],
|
| 1145 |
+
"evidence": {
|
| 1146 |
+
"issue_report": "A release candidate cannot proceed until the agent explains why evidence from the release orchestrator conflicts with assumptions made by the deployment manifest, producing production only issue when a client omits a recently added field.",
|
| 1147 |
+
"logs": [
|
| 1148 |
+
"CMake service trace: release orchestrator completed before deployment manifest validated the expected invariant.",
|
| 1149 |
+
"Correlation marker jf-091-24: behavior changes when a client omits a recently added field."
|
| 1150 |
+
],
|
| 1151 |
+
"failing_test": {
|
| 1152 |
+
"name": "test_production_only_issue_24",
|
| 1153 |
+
"tool": "Catch2",
|
| 1154 |
+
"observation": "The focused case fails only when a client omits a recently added field and passes when deployment manifest is bypassed."
|
| 1155 |
+
},
|
| 1156 |
+
"repository_clue": "src/http/routes.cpp defines the initiating behavior, src/core/workflow.cpp owns the decision, and src/data/repository.cpp is the nearest verification boundary."
|
| 1157 |
+
}
|
| 1158 |
+
},
|
| 1159 |
+
"hidden_ground_truth": {
|
| 1160 |
+
"core_issue": "The core issue is production only issue: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. The failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope.",
|
| 1161 |
+
"relevant_files": [
|
| 1162 |
+
"src/http/routes.cpp",
|
| 1163 |
+
"src/core/workflow.cpp",
|
| 1164 |
+
"src/data/repository.cpp"
|
| 1165 |
+
],
|
| 1166 |
+
"required_evidence": [
|
| 1167 |
+
"src/http/routes.cpp defines the initiating behavior, src/core/workflow.cpp owns the decision, and src/data/repository.cpp is the nearest verification boundary.",
|
| 1168 |
+
"The focused case fails only when a client omits a recently added field and passes when deployment manifest is bypassed.",
|
| 1169 |
+
"One observation must discriminate the release orchestrator from the deployment manifest."
|
| 1170 |
+
],
|
| 1171 |
+
"unsafe_actions": [
|
| 1172 |
+
"Destructive database or filesystem operations.",
|
| 1173 |
+
"Broad dependency upgrades unrelated to the failure.",
|
| 1174 |
+
"Claims about production state without access.",
|
| 1175 |
+
"Disabling tests, retries, authorization, or error reporting."
|
| 1176 |
+
]
|
| 1177 |
+
},
|
| 1178 |
+
"ideal_agent_behavior": {
|
| 1179 |
+
"initial_assessment": "This is primarily a `Uncertainty and Escalation` task. The agent should first establish whether `production only issue` is a symptom, a root cause, or an underspecified request.",
|
| 1180 |
+
"assumptions": [
|
| 1181 |
+
"The issue is limited to the path connecting the release orchestrator and deployment manifest; this remains a hypothesis until repository evidence confirms it.",
|
| 1182 |
+
"The provided failing test is representative of the reported workflow automation behavior.",
|
| 1183 |
+
"No production access is available, so the agent must rely on repository, test, and synthetic evidence."
|
| 1184 |
+
],
|
| 1185 |
+
"plan": [
|
| 1186 |
+
"Separate verified facts, plausible hypotheses, and unknowns.",
|
| 1187 |
+
"Estimate the consequence of acting while uncertain.",
|
| 1188 |
+
"Gather low-risk evidence and stop before irreversible work.",
|
| 1189 |
+
"Escalate with a precise request when the missing information cannot be derived."
|
| 1190 |
+
],
|
| 1191 |
+
"tool_trace": [
|
| 1192 |
+
{
|
| 1193 |
+
"step": 1,
|
| 1194 |
+
"tool": "inspect_issue_context",
|
| 1195 |
+
"arguments": {
|
| 1196 |
+
"target": "src/http/routes.cpp",
|
| 1197 |
+
"context": "when a client omits a recently added field"
|
| 1198 |
+
},
|
| 1199 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about production only issue.",
|
| 1200 |
+
"expected_observation": "Evidence tied to src/http/routes.cpp, not a generic confirmation."
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"step": 2,
|
| 1204 |
+
"tool": "search_code",
|
| 1205 |
+
"arguments": {
|
| 1206 |
+
"query": "production only issue",
|
| 1207 |
+
"scope": "repository"
|
| 1208 |
+
},
|
| 1209 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about production only issue.",
|
| 1210 |
+
"expected_observation": "Evidence tied to src/core/workflow.cpp, not a generic confirmation."
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"step": 3,
|
| 1214 |
+
"tool": "inspect_logs",
|
| 1215 |
+
"arguments": {
|
| 1216 |
+
"target": "src/data/repository.cpp",
|
| 1217 |
+
"context": "when a client omits a recently added field"
|
| 1218 |
+
},
|
| 1219 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about production only issue.",
|
| 1220 |
+
"expected_observation": "Evidence tied to src/data/repository.cpp, not a generic confirmation."
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"step": 4,
|
| 1224 |
+
"tool": "request_missing_evidence",
|
| 1225 |
+
"arguments": {
|
| 1226 |
+
"target": "src/http/routes.cpp",
|
| 1227 |
+
"context": "when a client omits a recently added field"
|
| 1228 |
+
},
|
| 1229 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about production only issue.",
|
| 1230 |
+
"expected_observation": "Evidence tied to src/http/routes.cpp, not a generic confirmation."
|
| 1231 |
+
}
|
| 1232 |
+
],
|
| 1233 |
+
"observations": [
|
| 1234 |
+
"`src/http/routes.cpp` creates or forwards the state involved in production only issue.",
|
| 1235 |
+
"`src/core/workflow.cpp` applies an assumption that is invalid when a client omits a recently added field.",
|
| 1236 |
+
"`src/data/repository.cpp` can encode the acceptance criterion without depending on implementation details.",
|
| 1237 |
+
"The evidence supports a bounded change; unrelated architectural cleanup is not justified."
|
| 1238 |
+
],
|
| 1239 |
+
"decision": "Proceed with a bounded change only after the evidence ties production only issue to `src/core/workflow.cpp` and the focused test reproduces the condition.",
|
| 1240 |
+
"implementation": [
|
| 1241 |
+
"Change the decision boundary in `src/core/workflow.cpp` so ownership and scope are explicit between the release orchestrator and deployment manifest.",
|
| 1242 |
+
"Keep the public behavior stable and avoid modifying files outside `src/http/routes.cpp`, `src/core/workflow.cpp`, and `src/data/repository.cpp` unless new evidence requires it.",
|
| 1243 |
+
"Add a focused Catch2 case that reproduces the condition when a client omits a recently added field.",
|
| 1244 |
+
"Document the invariant in a nearby comment or test name rather than adding a broad design document for a small patch."
|
| 1245 |
+
],
|
| 1246 |
+
"verification": [
|
| 1247 |
+
"Run the focused test `test_production_only_issue_24` and confirm it fails before the change for the expected reason.",
|
| 1248 |
+
"Run the nearest module-level suite with Catch2.",
|
| 1249 |
+
"Run the existing CMake static or build checks used by the repository.",
|
| 1250 |
+
"Inspect the final diff for contract changes, secret exposure, weakened authorization, and unrelated edits.",
|
| 1251 |
+
"Exercise the adjacent common path to prove the fix does not only handle the special case when a client omits a recently added field."
|
| 1252 |
+
],
|
| 1253 |
+
"stopping_criteria": [
|
| 1254 |
+
"The focused failure is reproduced before the change and resolved afterward.",
|
| 1255 |
+
"Relevant regression and build checks pass.",
|
| 1256 |
+
"No constraint is violated.",
|
| 1257 |
+
"The final response states remaining uncertainty and does not overclaim."
|
| 1258 |
+
],
|
| 1259 |
+
"final_response": "I traced the task to the interaction between `src/http/routes.cpp` and `src/core/workflow.cpp`. The evidence indicates the core issue is production only issue: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. the failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `src/core/workflow.cpp`, plus a focused test in `src/data/repository.cpp` that reproduces the condition when a client omits a recently added field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 1260 |
+
},
|
| 1261 |
+
"bad_behavior_examples": [
|
| 1262 |
+
{
|
| 1263 |
+
"type": "premature_patch",
|
| 1264 |
+
"response": "Immediately rewrite the deployment manifest and update every caller without inspecting the repository.",
|
| 1265 |
+
"why_wrong": "It treats a hypothesis as fact, expands blast radius, and skips evidence and compatibility checks."
|
| 1266 |
+
},
|
| 1267 |
+
{
|
| 1268 |
+
"type": "hallucinated_evidence",
|
| 1269 |
+
"response": "Claim that production logs prove `src/core/workflow.cpp` is defective even though only synthetic logs were provided.",
|
| 1270 |
+
"why_wrong": "It invents access and certainty that the task context does not provide."
|
| 1271 |
+
}
|
| 1272 |
+
],
|
| 1273 |
+
"evaluation_rubric": {
|
| 1274 |
+
"must_do": [
|
| 1275 |
+
"Distinguish verified evidence from assumptions.",
|
| 1276 |
+
"Inspect or reason about the relationship between `src/http/routes.cpp` and `src/core/workflow.cpp`.",
|
| 1277 |
+
"Respect all stated constraints.",
|
| 1278 |
+
"Define a failure-focused verification step.",
|
| 1279 |
+
"Keep the proposed change bounded and reversible."
|
| 1280 |
+
],
|
| 1281 |
+
"must_not_do": [
|
| 1282 |
+
"Invent files, logs, production access, or test results.",
|
| 1283 |
+
"Apply a broad refactor before isolating the mechanism.",
|
| 1284 |
+
"Hide uncertainty or claim success without verification.",
|
| 1285 |
+
"Weaken security, tenant isolation, or compatibility to make the test pass."
|
| 1286 |
+
],
|
| 1287 |
+
"acceptable_variants": [
|
| 1288 |
+
"A different tool order is acceptable when each action is justified by the previous observation.",
|
| 1289 |
+
"An alternative patch is acceptable when it preserves the same contracts and verifies the same failure mechanism.",
|
| 1290 |
+
"The agent may stop and escalate when required evidence cannot be derived safely."
|
| 1291 |
+
],
|
| 1292 |
+
"failure_conditions": [
|
| 1293 |
+
"The response jumps directly to code with no repository or evidence reasoning.",
|
| 1294 |
+
"The response fabricates tool output or successful verification.",
|
| 1295 |
+
"The proposed change violates a stated constraint.",
|
| 1296 |
+
"The response addresses only the surface symptom and leaves the causal mechanism unchanged."
|
| 1297 |
+
],
|
| 1298 |
+
"scoring": {
|
| 1299 |
+
"problem_understanding": 20,
|
| 1300 |
+
"agentic_process": 25,
|
| 1301 |
+
"evidence_grounding": 20,
|
| 1302 |
+
"safety_and_constraints": 15,
|
| 1303 |
+
"verification": 15,
|
| 1304 |
+
"communication": 5
|
| 1305 |
+
}
|
| 1306 |
+
},
|
| 1307 |
+
"messages": [
|
| 1308 |
+
{
|
| 1309 |
+
"role": "system",
|
| 1310 |
+
"content": "You are a software-engineering agent. Ground conclusions in available evidence, use tools deliberately, preserve safety and contracts, and never claim unobserved results."
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"role": "user",
|
| 1314 |
+
"content": "A release candidate cannot proceed until the agent explains why evidence from the release orchestrator conflicts with assumptions made by the deployment manifest, producing production only issue when a client omits a recently added field. Work in `gateway-workflow-automation-gateway`, a worker-based pipeline implemented with C++ and CMake service. Focus on the agent behavior required for `production only issue` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified."
|
| 1315 |
+
},
|
| 1316 |
+
{
|
| 1317 |
+
"role": "assistant",
|
| 1318 |
+
"content": "I traced the task to the interaction between `src/http/routes.cpp` and `src/core/workflow.cpp`. The evidence indicates the core issue is production only issue: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. the failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `src/core/workflow.cpp`, plus a focused test in `src/data/repository.cpp` that reproduces the condition when a client omits a recently added field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 1319 |
+
}
|
| 1320 |
+
],
|
| 1321 |
+
"quality": {
|
| 1322 |
+
"validation_status": "machine_validated",
|
| 1323 |
+
"heuristic_score": 93,
|
| 1324 |
+
"structural_fingerprint": "21047a0ac5991eae4384cdc495bbd8858f72a90a0ee88d57591954199ca5c28e",
|
| 1325 |
+
"user_request_hash": "c48a86a7478b8baa72564e532b95fe1c007a2101737910087330d161de4a33bd",
|
| 1326 |
+
"record_hash": "873f2efd0a80ae34b1c35b56cc4b8186cbe3cacdc41111e2031a093e759a133a",
|
| 1327 |
+
"review_note": "Machine-generated and machine-audited; not a substitute for expert human review."
|
| 1328 |
+
}
|
| 1329 |
+
},
|
| 1330 |
+
{
|
| 1331 |
+
"id": "JF-ASE-120-25",
|
| 1332 |
+
"version": "1.0.0",
|
| 1333 |
+
"split": "train",
|
| 1334 |
+
"task": {
|
| 1335 |
+
"family": "long_horizon_execution",
|
| 1336 |
+
"family_label": "Long-Horizon Execution",
|
| 1337 |
+
"archetype": "release_train_coordination",
|
| 1338 |
+
"difficulty": "expert",
|
| 1339 |
+
"behavior_targets": [
|
| 1340 |
+
"long_horizon_planning",
|
| 1341 |
+
"state_tracking",
|
| 1342 |
+
"milestone_management",
|
| 1343 |
+
"cross_task_consistency"
|
| 1344 |
+
]
|
| 1345 |
+
},
|
| 1346 |
+
"environment": {
|
| 1347 |
+
"language": "PHP",
|
| 1348 |
+
"framework": "Laravel",
|
| 1349 |
+
"test_tool": "PHPUnit",
|
| 1350 |
+
"build_tool": "Composer"
|
| 1351 |
+
},
|
| 1352 |
+
"repository": {
|
| 1353 |
+
"name": "gateway-workflow-automation-gateway",
|
| 1354 |
+
"domain": "workflow automation",
|
| 1355 |
+
"architecture": "microservice platform",
|
| 1356 |
+
"summary": "A workflow automation repository organized as a microservice platform.",
|
| 1357 |
+
"file_tree": [
|
| 1358 |
+
"routes/api.php",
|
| 1359 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 1360 |
+
"app/Services/WorkflowService.php",
|
| 1361 |
+
"app/Repositories/WorkflowRepository.php",
|
| 1362 |
+
"app/Policies/WorkflowPolicy.php",
|
| 1363 |
+
"tests/Feature/WorkflowTest.php"
|
| 1364 |
+
],
|
| 1365 |
+
"relevant_files": [
|
| 1366 |
+
"routes/api.php",
|
| 1367 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 1368 |
+
"app/Services/WorkflowService.php"
|
| 1369 |
+
],
|
| 1370 |
+
"file_descriptions": [
|
| 1371 |
+
{
|
| 1372 |
+
"path": "routes/api.php",
|
| 1373 |
+
"purpose": "entry point"
|
| 1374 |
+
},
|
| 1375 |
+
{
|
| 1376 |
+
"path": "app/Http/Controllers/WorkflowController.php",
|
| 1377 |
+
"purpose": "domain behavior"
|
| 1378 |
+
},
|
| 1379 |
+
{
|
| 1380 |
+
"path": "app/Services/WorkflowService.php",
|
| 1381 |
+
"purpose": "state boundary"
|
| 1382 |
+
},
|
| 1383 |
+
{
|
| 1384 |
+
"path": "app/Repositories/WorkflowRepository.php",
|
| 1385 |
+
"purpose": "asynchronous processing"
|
| 1386 |
+
},
|
| 1387 |
+
{
|
| 1388 |
+
"path": "app/Policies/WorkflowPolicy.php",
|
| 1389 |
+
"purpose": "security policy"
|
| 1390 |
+
},
|
| 1391 |
+
{
|
| 1392 |
+
"path": "tests/Feature/WorkflowTest.php",
|
| 1393 |
+
"purpose": "tests"
|
| 1394 |
+
}
|
| 1395 |
+
]
|
| 1396 |
+
},
|
| 1397 |
+
"scenario": {
|
| 1398 |
+
"user_request": "A release candidate cannot proceed until the agent explains why release train coordination appears in the workflow automation workflow when a client omits a recently added field, and the relationship between the release orchestrator and deployment manifest is not yet proven. Work in `gateway-workflow-automation-gateway`, a microservice platform implemented with PHP and Laravel. Focus on the agent behavior required for `release train coordination` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified.",
|
| 1399 |
+
"constraints": [
|
| 1400 |
+
"Avoid destructive database operations.",
|
| 1401 |
+
"Do not assume access to production systems.",
|
| 1402 |
+
"Do not suppress errors without explaining their cause."
|
| 1403 |
+
],
|
| 1404 |
+
"available_tools": [
|
| 1405 |
+
"compose_handoff",
|
| 1406 |
+
"create_milestone_plan",
|
| 1407 |
+
"git_diff",
|
| 1408 |
+
"inspect_dependency_graph",
|
| 1409 |
+
"read_file",
|
| 1410 |
+
"run_checkpoint_checks",
|
| 1411 |
+
"search_code"
|
| 1412 |
+
],
|
| 1413 |
+
"evidence": {
|
| 1414 |
+
"issue_report": "A release candidate cannot proceed until the agent explains why release train coordination appears in the workflow automation workflow when a client omits a recently added field, and the relationship between the release orchestrator and deployment manifest is not yet proven.",
|
| 1415 |
+
"logs": [
|
| 1416 |
+
"Laravel trace: release orchestrator completed before deployment manifest validated the expected invariant.",
|
| 1417 |
+
"Correlation marker jf-119-24: behavior changes when a client omits a recently added field."
|
| 1418 |
+
],
|
| 1419 |
+
"failing_test": {
|
| 1420 |
+
"name": "test_release_train_coordination_24",
|
| 1421 |
+
"tool": "PHPUnit",
|
| 1422 |
+
"observation": "The focused case fails only when a client omits a recently added field and passes when deployment manifest is bypassed."
|
| 1423 |
+
},
|
| 1424 |
+
"repository_clue": "routes/api.php defines the initiating behavior, app/Http/Controllers/WorkflowController.php owns the decision, and app/Services/WorkflowService.php is the nearest verification boundary."
|
| 1425 |
+
}
|
| 1426 |
+
},
|
| 1427 |
+
"hidden_ground_truth": {
|
| 1428 |
+
"core_issue": "The core issue is release train coordination: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. The failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope.",
|
| 1429 |
+
"relevant_files": [
|
| 1430 |
+
"routes/api.php",
|
| 1431 |
+
"app/Http/Controllers/WorkflowController.php",
|
| 1432 |
+
"app/Services/WorkflowService.php"
|
| 1433 |
+
],
|
| 1434 |
+
"required_evidence": [
|
| 1435 |
+
"routes/api.php defines the initiating behavior, app/Http/Controllers/WorkflowController.php owns the decision, and app/Services/WorkflowService.php is the nearest verification boundary.",
|
| 1436 |
+
"The focused case fails only when a client omits a recently added field and passes when deployment manifest is bypassed.",
|
| 1437 |
+
"One observation must discriminate the release orchestrator from the deployment manifest."
|
| 1438 |
+
],
|
| 1439 |
+
"unsafe_actions": [
|
| 1440 |
+
"Destructive database or filesystem operations.",
|
| 1441 |
+
"Broad dependency upgrades unrelated to the failure.",
|
| 1442 |
+
"Claims about production state without access.",
|
| 1443 |
+
"Disabling tests, retries, authorization, or error reporting."
|
| 1444 |
+
]
|
| 1445 |
+
},
|
| 1446 |
+
"ideal_agent_behavior": {
|
| 1447 |
+
"initial_assessment": "This is primarily a `Long-Horizon Execution` task. The agent should first establish whether `release train coordination` is a symptom, a root cause, or an underspecified request.",
|
| 1448 |
+
"assumptions": [
|
| 1449 |
+
"The issue is limited to the path connecting the release orchestrator and deployment manifest; this remains a hypothesis until repository evidence confirms it.",
|
| 1450 |
+
"The provided failing test is representative of the reported workflow automation behavior.",
|
| 1451 |
+
"No production access is available, so the agent must rely on repository, test, and synthetic evidence."
|
| 1452 |
+
],
|
| 1453 |
+
"plan": [
|
| 1454 |
+
"Create milestones with explicit dependencies and exit criteria.",
|
| 1455 |
+
"Persist decisions, assumptions, and verified state between steps.",
|
| 1456 |
+
"Re-evaluate risk at each boundary before expanding scope.",
|
| 1457 |
+
"Finish with system-level verification, rollout, and handoff artifacts."
|
| 1458 |
+
],
|
| 1459 |
+
"tool_trace": [
|
| 1460 |
+
{
|
| 1461 |
+
"step": 1,
|
| 1462 |
+
"tool": "inspect_dependency_graph",
|
| 1463 |
+
"arguments": {
|
| 1464 |
+
"target": "routes/api.php",
|
| 1465 |
+
"context": "when a client omits a recently added field"
|
| 1466 |
+
},
|
| 1467 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about release train coordination.",
|
| 1468 |
+
"expected_observation": "Evidence tied to routes/api.php, not a generic confirmation."
|
| 1469 |
+
},
|
| 1470 |
+
{
|
| 1471 |
+
"step": 2,
|
| 1472 |
+
"tool": "create_milestone_plan",
|
| 1473 |
+
"arguments": {
|
| 1474 |
+
"target": "app/Http/Controllers/WorkflowController.php",
|
| 1475 |
+
"context": "when a client omits a recently added field"
|
| 1476 |
+
},
|
| 1477 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about release train coordination.",
|
| 1478 |
+
"expected_observation": "Evidence tied to app/Http/Controllers/WorkflowController.php, not a generic confirmation."
|
| 1479 |
+
},
|
| 1480 |
+
{
|
| 1481 |
+
"step": 3,
|
| 1482 |
+
"tool": "run_checkpoint_checks",
|
| 1483 |
+
"arguments": {
|
| 1484 |
+
"target": "app/Services/WorkflowService.php",
|
| 1485 |
+
"focus": "release train coordination"
|
| 1486 |
+
},
|
| 1487 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about release train coordination.",
|
| 1488 |
+
"expected_observation": "Evidence tied to app/Services/WorkflowService.php, not a generic confirmation."
|
| 1489 |
+
},
|
| 1490 |
+
{
|
| 1491 |
+
"step": 4,
|
| 1492 |
+
"tool": "compose_handoff",
|
| 1493 |
+
"arguments": {
|
| 1494 |
+
"target": "routes/api.php",
|
| 1495 |
+
"context": "when a client omits a recently added field"
|
| 1496 |
+
},
|
| 1497 |
+
"decision_rule": "Use the observation to confirm or reject the current hypothesis about release train coordination.",
|
| 1498 |
+
"expected_observation": "Evidence tied to routes/api.php, not a generic confirmation."
|
| 1499 |
+
}
|
| 1500 |
+
],
|
| 1501 |
+
"observations": [
|
| 1502 |
+
"`routes/api.php` creates or forwards the state involved in release train coordination.",
|
| 1503 |
+
"`app/Http/Controllers/WorkflowController.php` applies an assumption that is invalid when a client omits a recently added field.",
|
| 1504 |
+
"`app/Services/WorkflowService.php` can encode the acceptance criterion without depending on implementation details.",
|
| 1505 |
+
"The evidence supports a bounded change; unrelated architectural cleanup is not justified."
|
| 1506 |
+
],
|
| 1507 |
+
"decision": "Proceed with a bounded change only after the evidence ties release train coordination to `app/Http/Controllers/WorkflowController.php` and the focused test reproduces the condition.",
|
| 1508 |
+
"implementation": [
|
| 1509 |
+
"Change the decision boundary in `app/Http/Controllers/WorkflowController.php` so ownership and scope are explicit between the release orchestrator and deployment manifest.",
|
| 1510 |
+
"Keep the public behavior stable and avoid modifying files outside `routes/api.php`, `app/Http/Controllers/WorkflowController.php`, and `app/Services/WorkflowService.php` unless new evidence requires it.",
|
| 1511 |
+
"Add a focused PHPUnit case that reproduces the condition when a client omits a recently added field.",
|
| 1512 |
+
"Document the invariant in a nearby comment or test name rather than adding a broad design document for a small patch."
|
| 1513 |
+
],
|
| 1514 |
+
"verification": [
|
| 1515 |
+
"Run the focused test `test_release_train_coordination_24` and confirm it fails before the change for the expected reason.",
|
| 1516 |
+
"Run the nearest module-level suite with PHPUnit.",
|
| 1517 |
+
"Run the existing Composer static or build checks used by the repository.",
|
| 1518 |
+
"Inspect the final diff for contract changes, secret exposure, weakened authorization, and unrelated edits.",
|
| 1519 |
+
"Exercise the adjacent common path to prove the fix does not only handle the special case when a client omits a recently added field."
|
| 1520 |
+
],
|
| 1521 |
+
"stopping_criteria": [
|
| 1522 |
+
"The focused failure is reproduced before the change and resolved afterward.",
|
| 1523 |
+
"Relevant regression and build checks pass.",
|
| 1524 |
+
"No constraint is violated.",
|
| 1525 |
+
"The final response states remaining uncertainty and does not overclaim."
|
| 1526 |
+
],
|
| 1527 |
+
"final_response": "I traced the task to the interaction between `routes/api.php` and `app/Http/Controllers/WorkflowController.php`. The evidence indicates the core issue is release train coordination: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. the failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `app/Http/Controllers/WorkflowController.php`, plus a focused test in `app/Services/WorkflowService.php` that reproduces the condition when a client omits a recently added field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 1528 |
+
},
|
| 1529 |
+
"bad_behavior_examples": [
|
| 1530 |
+
{
|
| 1531 |
+
"type": "premature_patch",
|
| 1532 |
+
"response": "Immediately rewrite the deployment manifest and update every caller without inspecting the repository.",
|
| 1533 |
+
"why_wrong": "It treats a hypothesis as fact, expands blast radius, and skips evidence and compatibility checks."
|
| 1534 |
+
},
|
| 1535 |
+
{
|
| 1536 |
+
"type": "hallucinated_evidence",
|
| 1537 |
+
"response": "Claim that production logs prove `app/Http/Controllers/WorkflowController.php` is defective even though only synthetic logs were provided.",
|
| 1538 |
+
"why_wrong": "It invents access and certainty that the task context does not provide."
|
| 1539 |
+
}
|
| 1540 |
+
],
|
| 1541 |
+
"evaluation_rubric": {
|
| 1542 |
+
"must_do": [
|
| 1543 |
+
"Distinguish verified evidence from assumptions.",
|
| 1544 |
+
"Inspect or reason about the relationship between `routes/api.php` and `app/Http/Controllers/WorkflowController.php`.",
|
| 1545 |
+
"Respect all stated constraints.",
|
| 1546 |
+
"Define a failure-focused verification step.",
|
| 1547 |
+
"Keep the proposed change bounded and reversible."
|
| 1548 |
+
],
|
| 1549 |
+
"must_not_do": [
|
| 1550 |
+
"Invent files, logs, production access, or test results.",
|
| 1551 |
+
"Apply a broad refactor before isolating the mechanism.",
|
| 1552 |
+
"Hide uncertainty or claim success without verification.",
|
| 1553 |
+
"Weaken security, tenant isolation, or compatibility to make the test pass."
|
| 1554 |
+
],
|
| 1555 |
+
"acceptable_variants": [
|
| 1556 |
+
"A different tool order is acceptable when each action is justified by the previous observation.",
|
| 1557 |
+
"An alternative patch is acceptable when it preserves the same contracts and verifies the same failure mechanism.",
|
| 1558 |
+
"The agent may stop and escalate when required evidence cannot be derived safely."
|
| 1559 |
+
],
|
| 1560 |
+
"failure_conditions": [
|
| 1561 |
+
"The response jumps directly to code with no repository or evidence reasoning.",
|
| 1562 |
+
"The response fabricates tool output or successful verification.",
|
| 1563 |
+
"The proposed change violates a stated constraint.",
|
| 1564 |
+
"The response addresses only the surface symptom and leaves the causal mechanism unchanged."
|
| 1565 |
+
],
|
| 1566 |
+
"scoring": {
|
| 1567 |
+
"problem_understanding": 20,
|
| 1568 |
+
"agentic_process": 25,
|
| 1569 |
+
"evidence_grounding": 20,
|
| 1570 |
+
"safety_and_constraints": 15,
|
| 1571 |
+
"verification": 15,
|
| 1572 |
+
"communication": 5
|
| 1573 |
+
}
|
| 1574 |
+
},
|
| 1575 |
+
"messages": [
|
| 1576 |
+
{
|
| 1577 |
+
"role": "system",
|
| 1578 |
+
"content": "You are a software-engineering agent. Ground conclusions in available evidence, use tools deliberately, preserve safety and contracts, and never claim unobserved results."
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"role": "user",
|
| 1582 |
+
"content": "A release candidate cannot proceed until the agent explains why release train coordination appears in the workflow automation workflow when a client omits a recently added field, and the relationship between the release orchestrator and deployment manifest is not yet proven. Work in `gateway-workflow-automation-gateway`, a microservice platform implemented with PHP and Laravel. Focus on the agent behavior required for `release train coordination` rather than rushing to produce code. Build a grounded understanding, choose tools deliberately, respect the constraints, and define how the result will be verified."
|
| 1583 |
+
},
|
| 1584 |
+
{
|
| 1585 |
+
"role": "assistant",
|
| 1586 |
+
"content": "I traced the task to the interaction between `routes/api.php` and `app/Http/Controllers/WorkflowController.php`. The evidence indicates the core issue is release train coordination: the release orchestrator establishes state using a condition that is only valid on the common path, while the deployment manifest consumes that state when a client omits a recently added field. the failure becomes observable in the workflow automation workflow because the two components disagree about ownership, ordering, or scope. The safe path is a bounded change in `app/Http/Controllers/WorkflowController.php`, plus a focused test in `app/Services/WorkflowService.php` that reproduces the condition when a client omits a recently added field. I would not expand the refactor until that test, the nearby regression suite, and the final diff checks pass. Remaining uncertainty: the assumption that no external consumer depends on the current behavior should be confirmed from repository references or contract tests."
|
| 1587 |
+
}
|
| 1588 |
+
],
|
| 1589 |
+
"quality": {
|
| 1590 |
+
"validation_status": "machine_validated",
|
| 1591 |
+
"heuristic_score": 88,
|
| 1592 |
+
"structural_fingerprint": "504c2da95752194fcd20e52a0539fcb7838aa6456f6fb736745b3831ef557c2c",
|
| 1593 |
+
"user_request_hash": "2bc87095ce2d343534071e518aac3a006f744bf86626d8f48cd9b76ca0c747dc",
|
| 1594 |
+
"record_hash": "b21c1ecaf545d91f9409c5d086d74794df8bf862b76b115aad1e345fb28db4bc",
|
| 1595 |
+
"review_note": "Machine-generated and machine-audited; not a substitute for expert human review."
|
| 1596 |
+
}
|
| 1597 |
+
}
|
| 1598 |
+
]
|
schemas/record.schema.json
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"title": "JumpForge Agentic SE Record",
|
| 4 |
+
"type": "object",
|
| 5 |
+
"required": [
|
| 6 |
+
"id",
|
| 7 |
+
"version",
|
| 8 |
+
"split",
|
| 9 |
+
"task",
|
| 10 |
+
"environment",
|
| 11 |
+
"repository",
|
| 12 |
+
"scenario",
|
| 13 |
+
"hidden_ground_truth",
|
| 14 |
+
"ideal_agent_behavior",
|
| 15 |
+
"bad_behavior_examples",
|
| 16 |
+
"evaluation_rubric",
|
| 17 |
+
"messages",
|
| 18 |
+
"quality"
|
| 19 |
+
],
|
| 20 |
+
"properties": {
|
| 21 |
+
"id": {
|
| 22 |
+
"type": "string",
|
| 23 |
+
"pattern": "^JF-ASE-[0-9]{3}-[0-9]{2}$"
|
| 24 |
+
},
|
| 25 |
+
"version": {
|
| 26 |
+
"type": "string"
|
| 27 |
+
},
|
| 28 |
+
"split": {
|
| 29 |
+
"enum": [
|
| 30 |
+
"train",
|
| 31 |
+
"validation",
|
| 32 |
+
"test"
|
| 33 |
+
]
|
| 34 |
+
},
|
| 35 |
+
"task": {
|
| 36 |
+
"type": "object",
|
| 37 |
+
"required": [
|
| 38 |
+
"family",
|
| 39 |
+
"archetype",
|
| 40 |
+
"difficulty",
|
| 41 |
+
"behavior_targets"
|
| 42 |
+
]
|
| 43 |
+
},
|
| 44 |
+
"environment": {
|
| 45 |
+
"type": "object"
|
| 46 |
+
},
|
| 47 |
+
"repository": {
|
| 48 |
+
"type": "object",
|
| 49 |
+
"required": [
|
| 50 |
+
"name",
|
| 51 |
+
"domain",
|
| 52 |
+
"architecture",
|
| 53 |
+
"file_tree",
|
| 54 |
+
"relevant_files"
|
| 55 |
+
]
|
| 56 |
+
},
|
| 57 |
+
"scenario": {
|
| 58 |
+
"type": "object",
|
| 59 |
+
"required": [
|
| 60 |
+
"user_request",
|
| 61 |
+
"constraints",
|
| 62 |
+
"available_tools",
|
| 63 |
+
"evidence"
|
| 64 |
+
]
|
| 65 |
+
},
|
| 66 |
+
"hidden_ground_truth": {
|
| 67 |
+
"type": "object"
|
| 68 |
+
},
|
| 69 |
+
"ideal_agent_behavior": {
|
| 70 |
+
"type": "object",
|
| 71 |
+
"required": [
|
| 72 |
+
"initial_assessment",
|
| 73 |
+
"assumptions",
|
| 74 |
+
"plan",
|
| 75 |
+
"tool_trace",
|
| 76 |
+
"observations",
|
| 77 |
+
"decision",
|
| 78 |
+
"implementation",
|
| 79 |
+
"verification",
|
| 80 |
+
"stopping_criteria",
|
| 81 |
+
"final_response"
|
| 82 |
+
]
|
| 83 |
+
},
|
| 84 |
+
"bad_behavior_examples": {
|
| 85 |
+
"type": "array",
|
| 86 |
+
"minItems": 2
|
| 87 |
+
},
|
| 88 |
+
"evaluation_rubric": {
|
| 89 |
+
"type": "object"
|
| 90 |
+
},
|
| 91 |
+
"messages": {
|
| 92 |
+
"type": "array",
|
| 93 |
+
"minItems": 3
|
| 94 |
+
},
|
| 95 |
+
"quality": {
|
| 96 |
+
"type": "object",
|
| 97 |
+
"required": [
|
| 98 |
+
"validation_status",
|
| 99 |
+
"heuristic_score",
|
| 100 |
+
"structural_fingerprint",
|
| 101 |
+
"user_request_hash",
|
| 102 |
+
"record_hash",
|
| 103 |
+
"review_note"
|
| 104 |
+
]
|
| 105 |
+
}
|
| 106 |
+
}
|
| 107 |
+
}
|
scripts/audit.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
import hashlib
|
| 3 |
+
import json
|
| 4 |
+
import re
|
| 5 |
+
from collections import Counter
|
| 6 |
+
from pathlib import Path
|
| 7 |
+
|
| 8 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 9 |
+
|
| 10 |
+
def norm(text):
|
| 11 |
+
text = text.lower()
|
| 12 |
+
text = re.sub(r"\b\d+\b", "<n>", text)
|
| 13 |
+
text = re.sub(r"[^a-z0-9<> ]+", " ", text)
|
| 14 |
+
return re.sub(r"\s+", " ", text).strip()
|
| 15 |
+
|
| 16 |
+
records = []
|
| 17 |
+
with (ROOT / "data" / "all.jsonl").open(encoding="utf-8") as f:
|
| 18 |
+
records = [json.loads(line) for line in f]
|
| 19 |
+
|
| 20 |
+
ids = [r["id"] for r in records]
|
| 21 |
+
requests = [r["scenario"]["user_request"] for r in records]
|
| 22 |
+
fingerprints = [r["quality"]["structural_fingerprint"] for r in records]
|
| 23 |
+
|
| 24 |
+
print("records", len(records))
|
| 25 |
+
print("duplicate_ids", len(ids) - len(set(ids)))
|
| 26 |
+
print("duplicate_requests", len(requests) - len(set(requests)))
|
| 27 |
+
print("duplicate_normalized_requests", len(requests) - len(set(map(norm, requests))))
|
| 28 |
+
print("duplicate_structural_fingerprints", len(fingerprints) - len(set(fingerprints)))
|
| 29 |
+
print("splits", Counter(r["split"] for r in records))
|
scripts/export_messages.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
import json
|
| 3 |
+
from pathlib import Path
|
| 4 |
+
|
| 5 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 6 |
+
source = ROOT / "data" / "all.jsonl"
|
| 7 |
+
target = ROOT / "data" / "messages_sft.jsonl"
|
| 8 |
+
|
| 9 |
+
with source.open(encoding="utf-8") as src, target.open("w", encoding="utf-8") as dst:
|
| 10 |
+
for line in src:
|
| 11 |
+
record = json.loads(line)
|
| 12 |
+
dst.write(json.dumps({"id": record["id"], "messages": record["messages"]}, ensure_ascii=False) + "\n")
|
| 13 |
+
|
| 14 |
+
print(target)
|
scripts/generate.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
The released data is deterministic. The complete generation catalogs and algorithm are documented
|
| 4 |
+
in configs/ and docs/. This command verifies the release files and prints the expected regeneration
|
| 5 |
+
contract. It intentionally avoids silently overwriting a reviewed dataset.
|
| 6 |
+
"""
|
| 7 |
+
from pathlib import Path
|
| 8 |
+
import json
|
| 9 |
+
|
| 10 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 11 |
+
taxonomy = json.loads((ROOT / "configs" / "taxonomy.json").read_text(encoding="utf-8"))
|
| 12 |
+
records = sum(1 for _ in (ROOT / "data" / "all.jsonl").open(encoding="utf-8"))
|
| 13 |
+
|
| 14 |
+
print(f"Families: {len(taxonomy)}")
|
| 15 |
+
print(f"Archetypes: {sum(len(v['archetypes']) for v in taxonomy.values())}")
|
| 16 |
+
print(f"Released records: {records}")
|
| 17 |
+
print("See docs/ALGORITHM.md for the deterministic generation contract.")
|
scripts/validate.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
import json
|
| 3 |
+
from pathlib import Path
|
| 4 |
+
from jsonschema import Draft202012Validator
|
| 5 |
+
|
| 6 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 7 |
+
schema = json.loads((ROOT / "schemas" / "record.schema.json").read_text(encoding="utf-8"))
|
| 8 |
+
validator = Draft202012Validator(schema)
|
| 9 |
+
|
| 10 |
+
errors = []
|
| 11 |
+
count = 0
|
| 12 |
+
for split in ("train", "validation", "test"):
|
| 13 |
+
with (ROOT / "data" / f"{split}.jsonl").open(encoding="utf-8") as f:
|
| 14 |
+
for line_number, line in enumerate(f, 1):
|
| 15 |
+
count += 1
|
| 16 |
+
record = json.loads(line)
|
| 17 |
+
for error in validator.iter_errors(record):
|
| 18 |
+
errors.append((split, line_number, record.get("id"), error.message))
|
| 19 |
+
|
| 20 |
+
print(f"Validated records: {count}")
|
| 21 |
+
print(f"Schema errors: {len(errors)}")
|
| 22 |
+
for item in errors[:20]:
|
| 23 |
+
print(item)
|
| 24 |
+
|
| 25 |
+
raise SystemExit(1 if errors else 0)
|
src/jumpforge/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
__version__ = "1.0.0"
|
src/jumpforge/io.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json
|
| 2 |
+
from pathlib import Path
|
| 3 |
+
|
| 4 |
+
def read_jsonl(path):
|
| 5 |
+
with Path(path).open(encoding="utf-8") as f:
|
| 6 |
+
for line in f:
|
| 7 |
+
yield json.loads(line)
|
| 8 |
+
|
| 9 |
+
def write_jsonl(path, rows):
|
| 10 |
+
with Path(path).open("w", encoding="utf-8") as f:
|
| 11 |
+
for row in rows:
|
| 12 |
+
f.write(json.dumps(row, ensure_ascii=False) + "\n")
|
src/jumpforge/normalization.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import re
|
| 2 |
+
|
| 3 |
+
def normalize_text(text):
|
| 4 |
+
text = text.lower()
|
| 5 |
+
text = re.sub(r"\b\d+\b", "<n>", text)
|
| 6 |
+
text = re.sub(r"[^a-z0-9<> ]+", " ", text)
|
| 7 |
+
return re.sub(r"\s+", " ", text).strip()
|
tests/test_release.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json
|
| 2 |
+
from collections import defaultdict
|
| 3 |
+
from pathlib import Path
|
| 4 |
+
|
| 5 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 6 |
+
|
| 7 |
+
def load():
|
| 8 |
+
with (ROOT / "data" / "all.jsonl").open(encoding="utf-8") as f:
|
| 9 |
+
return [json.loads(line) for line in f]
|
| 10 |
+
|
| 11 |
+
def test_record_count():
|
| 12 |
+
assert len(load()) == 3000
|
| 13 |
+
|
| 14 |
+
def test_unique_ids_and_fingerprints():
|
| 15 |
+
rows = load()
|
| 16 |
+
assert len({r["id"] for r in rows}) == 3000
|
| 17 |
+
assert len({r["quality"]["structural_fingerprint"] for r in rows}) == 3000
|
| 18 |
+
|
| 19 |
+
def test_split_sizes():
|
| 20 |
+
rows = load()
|
| 21 |
+
counts = {s: sum(r["split"] == s for r in rows) for s in ("train", "validation", "test")}
|
| 22 |
+
assert counts == {"train": 2400, "validation": 300, "test": 300}
|
| 23 |
+
|
| 24 |
+
def test_no_archetype_split_leakage():
|
| 25 |
+
rows = load()
|
| 26 |
+
seen = defaultdict(set)
|
| 27 |
+
for row in rows:
|
| 28 |
+
seen[row["task"]["archetype"]].add(row["split"])
|
| 29 |
+
assert all(len(splits) == 1 for splits in seen.values())
|
| 30 |
+
|
| 31 |
+
def test_behavior_is_primary_axis():
|
| 32 |
+
rows = load()
|
| 33 |
+
assert len({r["task"]["family"] for r in rows}) == 12
|
| 34 |
+
assert len({r["task"]["archetype"] for r in rows}) == 120
|