atdd 0.3.1__py3-none-any.whl → 0.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- atdd/coach/templates/ATDD.md +29 -0
- atdd/coach/templates/SESSION-TEMPLATE.md +25 -0
- {atdd-0.3.1.dist-info → atdd-0.3.2.dist-info}/METADATA +1 -1
- {atdd-0.3.1.dist-info → atdd-0.3.2.dist-info}/RECORD +8 -8
- {atdd-0.3.1.dist-info → atdd-0.3.2.dist-info}/WHEEL +0 -0
- {atdd-0.3.1.dist-info → atdd-0.3.2.dist-info}/entry_points.txt +0 -0
- {atdd-0.3.1.dist-info → atdd-0.3.2.dist-info}/licenses/LICENSE +0 -0
- {atdd-0.3.1.dist-info → atdd-0.3.2.dist-info}/top_level.txt +0 -0
atdd/coach/templates/ATDD.md
CHANGED
|
@@ -219,6 +219,35 @@ git:
|
|
|
219
219
|
- "GREEN: commit passing implementation"
|
|
220
220
|
- "REFACTOR: commit clean architecture"
|
|
221
221
|
|
|
222
|
+
# Release Gate (MANDATORY - session completion)
|
|
223
|
+
# Every session MUST end with version bump + tag
|
|
224
|
+
release:
|
|
225
|
+
mandatory: true
|
|
226
|
+
|
|
227
|
+
rules:
|
|
228
|
+
- "Tag must match version exactly: v{version}"
|
|
229
|
+
- "No tag without version bump"
|
|
230
|
+
- "No version bump without tag"
|
|
231
|
+
- "Every repo MUST have versioning"
|
|
232
|
+
|
|
233
|
+
change_class:
|
|
234
|
+
PATCH: "bug fixes, docs, refactors, internal changes"
|
|
235
|
+
MINOR: "new feature, new validator, new command, new convention (non-breaking)"
|
|
236
|
+
MAJOR: "breaking API/CLI/schema/convention change or behavior removal"
|
|
237
|
+
|
|
238
|
+
workflow:
|
|
239
|
+
- "Determine change class"
|
|
240
|
+
- "Bump version in version file"
|
|
241
|
+
- "Commit: 'Bump version to {version}'"
|
|
242
|
+
- "Create tag: git tag v{version}"
|
|
243
|
+
- "Push with tags: git push origin {branch} --tags"
|
|
244
|
+
- "Record in Session Log: 'Released: v{version}'"
|
|
245
|
+
|
|
246
|
+
# Consumer repos configure version file location in .atdd/config.yaml:
|
|
247
|
+
# release:
|
|
248
|
+
# version_file: "pyproject.toml" # or package.json, VERSION, etc.
|
|
249
|
+
# tag_prefix: "v"
|
|
250
|
+
|
|
222
251
|
# Agent Coordination (Detailed in action files)
|
|
223
252
|
agents:
|
|
224
253
|
planner:
|
|
@@ -331,6 +331,31 @@ Reference: src/atdd/coach/conventions/session.convention.yaml
|
|
|
331
331
|
|
|
332
332
|
---
|
|
333
333
|
|
|
334
|
+
## Release Gate (MANDATORY)
|
|
335
|
+
|
|
336
|
+
<!--
|
|
337
|
+
Every session MUST end with a version bump + matching git tag.
|
|
338
|
+
|
|
339
|
+
Change Class:
|
|
340
|
+
- PATCH: bug fixes, docs, refactors, internal changes
|
|
341
|
+
- MINOR: new feature, new validator, new command, new convention (non-breaking)
|
|
342
|
+
- MAJOR: breaking API/CLI/schema/convention change or behavior removal
|
|
343
|
+
|
|
344
|
+
Rules:
|
|
345
|
+
- Tag must match version exactly: v{version}
|
|
346
|
+
- No tag without version bump
|
|
347
|
+
- No version bump without tag
|
|
348
|
+
-->
|
|
349
|
+
|
|
350
|
+
- [ ] Determine change class: PATCH / MINOR / MAJOR
|
|
351
|
+
- [ ] Bump version in version file (pyproject.toml, package.json, etc.)
|
|
352
|
+
- [ ] Commit: "Bump version to {version}"
|
|
353
|
+
- [ ] Create tag: `git tag v{version}`
|
|
354
|
+
- [ ] Push with tags: `git push origin {branch} --tags`
|
|
355
|
+
- [ ] Record tag in Session Log: "Released: v{version}"
|
|
356
|
+
|
|
357
|
+
---
|
|
358
|
+
|
|
334
359
|
## Notes
|
|
335
360
|
|
|
336
361
|
{Additional context, learnings, or decisions that don't fit elsewhere.}
|
|
@@ -27,8 +27,8 @@ atdd/coach/overlays/__init__.py,sha256=2lMiMSgfLJ3YHLpbzNI5B88AdQxiMEwjIfsWWb8t3
|
|
|
27
27
|
atdd/coach/overlays/claude.md,sha256=33mhpqhmsRhCtdWlU7cMXAJDsaVra9uBBK8URV8OtQA,101
|
|
28
28
|
atdd/coach/schemas/config.schema.json,sha256=xzct7gBoPTIGh3NFPSGtfW0zIiyFdHDZkvjuy1qgAqA,951
|
|
29
29
|
atdd/coach/schemas/manifest.schema.json,sha256=WO13-YF_FgH1awh96khCtk-112b6XSC24anlY3B7GjY,2885
|
|
30
|
-
atdd/coach/templates/ATDD.md,sha256=
|
|
31
|
-
atdd/coach/templates/SESSION-TEMPLATE.md,sha256=
|
|
30
|
+
atdd/coach/templates/ATDD.md,sha256=eHdibGHQ66U5sYUvZFzLmTP3Z9J8P-J6dUzrYbjAd_w,13139
|
|
31
|
+
atdd/coach/templates/SESSION-TEMPLATE.md,sha256=CPrCh279fQzDmgVob24ctH-vvKpUHr2SrJ3RLCiV05o,9898
|
|
32
32
|
atdd/coach/utils/__init__.py,sha256=7Jbo-heJEKSAn6I0s35z_2S4R8qGZ48PL6a2IntcNYg,148
|
|
33
33
|
atdd/coach/utils/repo.py,sha256=9rZeAf1b7-modoTiPZAwtjnoiI8YyHWIZhpqXvkJ7Qo,3104
|
|
34
34
|
atdd/coach/utils/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -181,9 +181,9 @@ atdd/tester/validators/test_red_supabase_layer_structure.py,sha256=26cnzPZAwSFy0
|
|
|
181
181
|
atdd/tester/validators/test_telemetry_structure.py,sha256=hIUnU2WU-8PNIg9EVHe2fnUdIQKIOUm5AWEtCBUXLVk,22467
|
|
182
182
|
atdd/tester/validators/test_typescript_test_naming.py,sha256=E-TyGv_GVlTfsbyuxrtv9sOWSZS_QcpH6rrJFbWoeeU,11280
|
|
183
183
|
atdd/tester/validators/test_typescript_test_structure.py,sha256=eV89SD1RaKtchBZupqhnJmaruoROosf3LwB4Fwe4UJI,2612
|
|
184
|
-
atdd-0.3.
|
|
185
|
-
atdd-0.3.
|
|
186
|
-
atdd-0.3.
|
|
187
|
-
atdd-0.3.
|
|
188
|
-
atdd-0.3.
|
|
189
|
-
atdd-0.3.
|
|
184
|
+
atdd-0.3.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
185
|
+
atdd-0.3.2.dist-info/METADATA,sha256=m-x-Bl0VySZE_g8MWapVUJ523yIBni8nTxCxR_WM18s,7081
|
|
186
|
+
atdd-0.3.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
187
|
+
atdd-0.3.2.dist-info/entry_points.txt,sha256=-C3yrA1WQQfN3iuGmSzPapA5cKVBEYU5Q1HUffSJTbY,38
|
|
188
|
+
atdd-0.3.2.dist-info/top_level.txt,sha256=VKkf6Uiyrm4RS6ULCGM-v8AzYN8K2yg8SMqwJLoO-xs,5
|
|
189
|
+
atdd-0.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|