codexspec 0.3.7__tar.gz → 0.3.8__tar.gz

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.
Files changed (37) hide show
  1. {codexspec-0.3.7 → codexspec-0.3.8}/PKG-INFO +1 -1
  2. {codexspec-0.3.7 → codexspec-0.3.8}/pyproject.toml +1 -1
  3. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/pr.md +53 -26
  4. {codexspec-0.3.7 → codexspec-0.3.8}/.gitignore +0 -0
  5. {codexspec-0.3.7 → codexspec-0.3.8}/LICENSE +0 -0
  6. {codexspec-0.3.7 → codexspec-0.3.8}/README.md +0 -0
  7. {codexspec-0.3.7 → codexspec-0.3.8}/scripts/bash/check-prerequisites.sh +0 -0
  8. {codexspec-0.3.7 → codexspec-0.3.8}/scripts/bash/common.sh +0 -0
  9. {codexspec-0.3.7 → codexspec-0.3.8}/scripts/bash/create-new-feature.sh +0 -0
  10. {codexspec-0.3.7 → codexspec-0.3.8}/scripts/powershell/check-prerequisites.ps1 +0 -0
  11. {codexspec-0.3.7 → codexspec-0.3.8}/scripts/powershell/common.ps1 +0 -0
  12. {codexspec-0.3.7 → codexspec-0.3.8}/scripts/powershell/create-new-feature.ps1 +0 -0
  13. {codexspec-0.3.7 → codexspec-0.3.8}/src/codexspec/__init__.py +0 -0
  14. {codexspec-0.3.7 → codexspec-0.3.8}/src/codexspec/i18n.py +0 -0
  15. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/analyze.md +0 -0
  16. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/checklist.md +0 -0
  17. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/clarify.md +0 -0
  18. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/commit-staged.md +0 -0
  19. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/commit.md +0 -0
  20. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/constitution.md +0 -0
  21. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/generate-spec.md +0 -0
  22. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/implement-tasks.md +0 -0
  23. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/plan-to-tasks.md +0 -0
  24. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/review-plan.md +0 -0
  25. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/review-spec.md +0 -0
  26. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/review-tasks.md +0 -0
  27. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/spec-to-plan.md +0 -0
  28. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/specify.md +0 -0
  29. {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/tasks-to-issues.md +0 -0
  30. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/checklist-template.md +0 -0
  31. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/constitution-template.md +0 -0
  32. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/plan-template-detailed.md +0 -0
  33. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/plan-template-simple.md +0 -0
  34. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/spec-template-detailed.md +0 -0
  35. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/spec-template-simple.md +0 -0
  36. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/tasks-template-detailed.md +0 -0
  37. {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/tasks-template-simple.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codexspec
3
- Version: 0.3.7
3
+ Version: 0.3.8
4
4
  Summary: CodexSpec - A Spec-Driven Development (SDD) toolkit for Claude Code
5
5
  Project-URL: Homepage, https://github.com/Zts0hg/codexspec
6
6
  Project-URL: Repository, https://github.com/Zts0hg/codexspec
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "codexspec"
3
- version = "0.3.7"
3
+ version = "0.3.8"
4
4
  description = "CodexSpec - A Spec-Driven Development (SDD) toolkit for Claude Code"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -50,13 +50,15 @@ Parse `$ARGUMENTS` for the following optional parameters:
50
50
  | `--spec <path>` | (none) | Enable spec.md integration (opt-in) |
51
51
 
52
52
  ### `--sections` Values
53
- - `context` - Background and problem statement
54
- - `implementation` - Technical approach
53
+ - `summary` - High-level overview of changes
54
+ - `changes` - Detailed file changes and technical approach
55
55
  - `testing` - Test coverage information
56
56
  - `verify` - Verification steps
57
+ - `checklist` - Pre-merge checklist
58
+ - `notes` - Additional notes and breaking changes
57
59
  - `all` - Include all sections (default)
58
60
 
59
- Example: `--sections context,implementation,verify`
61
+ Example: `--sections summary,changes,testing`
60
62
 
61
63
  ### `--spec` Usage (Opt-in)
62
64
 
@@ -232,41 +234,66 @@ Detect project-specific test commands for "How to Verify" section:
232
234
 
233
235
  Generate PR sections based on gathered information:
234
236
 
235
- ### Context Section
236
- - **Include**: Only if `--spec` is provided and spec.md found
237
- - **Content**: Extract from spec.md (User Stories, Goals, Overview)
238
- - **Skip**: If no spec or extraction fails
239
-
240
- ### Implementation Section
241
- - **Source**: Git diff analysis
242
- - **Content**:
243
- - Summary of technical changes
244
- - Key files changed with brief descriptions
245
- - Architectural decisions if apparent
237
+ ### Summary Section
238
+ **Format:** `### Summary`
239
+ **Source:** Git diff analysis + commit messages
240
+ **Content:**
241
+ - High-level overview of changes and motivation
242
+ - 2-3 sentences maximum, answer "What" and "Why"
243
+
244
+ ### Changes Section
245
+ **Format:** `### Changes`
246
+ **Source:** Git diff analysis
247
+ **Content:**
248
+ - Table of files changed with change type and description
249
+ - Technical details subsection with implementation approach
250
+ - Architectural decisions if apparent
246
251
 
247
252
  ### Testing Section
248
- - **Source**: Test file discovery + commit messages
249
- - **Content**:
250
- - Test files discovered
251
- - Test coverage information (if available in commits)
252
- - Test commands to run
253
+ **Format:** `### Testing`
254
+ **Source:** Test file discovery + commit messages
255
+ **Content:**
256
+ - Task list for test coverage status
257
+ - Test files discovered
258
+ - Exact commands to run tests
253
259
 
254
260
  ### How to Verify Section
255
- - **Source**: Project command detection
256
- - **Content**:
257
- - Step-by-step verification instructions
258
- - Project-specific test commands
259
- - Manual verification steps if applicable
261
+ **Format:** `### How to Verify`
262
+ **Source:** Project command detection
263
+ **Content:**
264
+ - Numbered list of step-by-step verification instructions
265
+ - Project-specific test commands
266
+ - Manual verification steps if applicable
267
+
268
+ ### Checklist Section
269
+ **Format:** `### Checklist`
270
+ **Source:** Standard checklist items
271
+ **Content:**
272
+ - GitHub/GitLab task list syntax (`- [ ]`)
273
+ - Project-specific checklist items
274
+ - Focus on author self-confirmation before merge
275
+
276
+ ### Notes Section
277
+ **Format:** `### Notes`
278
+ **Source:** Manual or detected from commits
279
+ **Content:**
280
+ - Breaking changes with `**Breaking Change:**` prefix
281
+ - Migration instructions if needed
282
+ - Links to related issues/PRs
260
283
 
261
284
  ## Section Selection
262
285
 
263
286
  If `--sections` is specified, only include listed sections:
264
- - `context` → Include Context section
265
- - `implementation` → Include Implementation section
287
+ - `summary` → Include Summary section
288
+ - `changes` → Include Changes section
266
289
  - `testing` → Include Testing section
267
290
  - `verify` → Include How to Verify section
291
+ - `checklist` → Include Checklist section
292
+ - `notes` → Include Notes section
268
293
  - `all` → Include all sections (default)
269
294
 
295
+ Example: `--sections summary,changes,testing`
296
+
270
297
  ## Output Format
271
298
 
272
299
  **IMPORTANT**: Generate PR descriptions using proper Markdown formatting for optimal rendering across all platforms (GitHub, GitLab, Bitbucket, etc.).
File without changes
File without changes
File without changes