Release/v0.9.1#54
Open
lchoquel wants to merge 2 commits into
Open
Conversation
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Greptile SummaryThis PR adds a bootstrap workflow for turning the starter template into a named project. It changes:
Confidence Score: 5/5This looks safe to merge.
Important Files Changed
Reviews (2): Last reviewed commit: "Fix bootstrap.py input handling flagged ..." | Re-trigger Greptile |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 9688722088
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Three robustness fixes to the /bootstrap skill's rename engine so adversarial or common-but-edge inputs no longer produce a broken generated project: - TOML-escape interpolated pyproject fields (description, author name/email, license, Repository URL) via a new toml_str() helper. A value containing a double-quote or backslash (e.g. `Use "AI" agents`) previously wrote invalid TOML, failing `uv lock`/checks on the generated project. - Normalize clone URLs: strip a trailing `.git` before re-appending it and before deriving the directory name, so a `.git` repo URL no longer yields `git clone …/repo.git.git` and `cd repo.git` in the README. - Validate the distribution name (PEP 503/508) when `--dist` is overridden, matching the existing validate_package() guard, so a value like `bad dist name` is rejected up front instead of writing an invalid [project].name. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Member
Author
|
@lchoquel I have started the AI code review. It will take a few minutes to complete. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v0.9.1
/bootstrapskill (.claude/skills/bootstrap/) that turns a fresh clone of this template into a real project. It collects the project name, description, author, repository URL, and license, then renames the package directory and e2e test file, substitutes every placeholder name spelling (dash / underscore / Title Case / CamelCase), applies the chosen license (MIT, proprietary, or another SPDX id) acrossLICENSE,pyproject.toml, and the README, regeneratesuv.lock, and runs the lint/type checks and tests🤖 Generated with Claude Code