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.
- {codexspec-0.3.7 → codexspec-0.3.8}/PKG-INFO +1 -1
- {codexspec-0.3.7 → codexspec-0.3.8}/pyproject.toml +1 -1
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/pr.md +53 -26
- {codexspec-0.3.7 → codexspec-0.3.8}/.gitignore +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/LICENSE +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/README.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/scripts/bash/check-prerequisites.sh +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/scripts/bash/common.sh +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/scripts/bash/create-new-feature.sh +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/scripts/powershell/check-prerequisites.ps1 +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/scripts/powershell/common.ps1 +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/scripts/powershell/create-new-feature.ps1 +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/src/codexspec/__init__.py +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/src/codexspec/i18n.py +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/analyze.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/checklist.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/clarify.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/commit-staged.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/commit.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/constitution.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/generate-spec.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/implement-tasks.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/plan-to-tasks.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/review-plan.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/review-spec.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/review-tasks.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/spec-to-plan.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/specify.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/commands/tasks-to-issues.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/checklist-template.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/constitution-template.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/plan-template-detailed.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/plan-template-simple.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/spec-template-detailed.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/spec-template-simple.md +0 -0
- {codexspec-0.3.7 → codexspec-0.3.8}/templates/docs/tasks-template-detailed.md +0 -0
- {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.
|
|
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
|
|
@@ -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
|
-
- `
|
|
54
|
-
- `
|
|
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
|
|
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
|
-
###
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
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
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
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
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
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
|
-
- `
|
|
265
|
-
- `
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|