Skip to content

Pull latest copier base version#11

Merged
zendern merged 12 commits into
mainfrom
copier
May 20, 2026
Merged

Pull latest copier base version#11
zendern merged 12 commits into
mainfrom
copier

Conversation

@zendern
Copy link
Copy Markdown
Contributor

@zendern zendern commented May 19, 2026

Link to Issue or Message thread

Powwow this morning

Why is this change necessary?

Pull in eslint and other version changes from LabAutomationAndScreening/copier-base-template#159

What side effects does this change have?

N/A

How is this change tested?

CI and will pull downstream and verify there.

Other

Summary by CodeRabbit

  • New Features

    • Added an interactive PR-review workflow plus CLI helpers to fetch PR threads, post replies, and ensure reply footers.
  • Documentation

    • Added full workflow docs and expanded agent/testing/coding guidelines and template guidance.
  • Chores

    • Updated devcontainer/tooling pins, CI/workflow inputs, pre-commit hooks, templates, .gitignore, and broadened assistant permission/config patterns.
  • Tests

    • Added a Nuxt/Vitest unit test and test setup stubs to improve cross-environment compatibility.

Review Change Stack

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 19, 2026

Warning

Rate limit exceeded

@zendern has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 43 minutes and 20 seconds before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: 33714a18-1a9e-49bc-bedc-74a4073af93a

📥 Commits

Reviewing files that changed from the base of the PR and between 8bc5e1d and 7644018.

📒 Files selected for processing (5)
  • .copier-answers.yml
  • copier_template_resources/eslint.config.mjs
  • extensions/context.py
  • tests/copier_data/data1.yaml
  • tests/copier_data/data2.yaml
📝 Walkthrough

Walkthrough

Adds an address-pr-comments Claude skill (comment fetching, thread assembly, reply posting, footer checks) plus supporting scripts; broadens Claude permissions and tmp write globs; updates copier/template wiring, tooling pins, CI/devcontainer workflows, .gitignore, pre-commit, AGENTS, and test fixtures.

Changes

address-pr-comments Skill and Template Updates

Layer / File(s) Summary
Permissions and write rules
.claude/settings/permissions/additional-dirs.jsonc, .claude/settings/permissions/bash.jsonc, .claude/settings/permissions/write.jsonc, template/.claude/settings/permissions/*
Adds /tmp and /workspaces to Claude additionalDirectories; broadens Bash allow patterns for skills and git/gh/pnpm commands; moves git reset --hard to ask; expands write allow globs for tmp/workspace paths.
Skill documentation and conventions
.claude/skills/address-pr-comments/SKILL.md, template/.claude/skills/address-pr-comments/SKILL.md
Skill front matter and a two-phase interactive workflow with resume semantics, path conventions, reply-draft classification, footer rules, and execution ordering for queued code-change replies.
Utilities and wiring
.claude/skills/address-pr-comments/utils.py, copier.yml, .copier-answers.yml, extensions/context.py
Adds owner_repo_from_remote() helper, copier task to chmod skill scripts, updates copier pin and template feature flags and context version bumps.
GitHub comment fetching and threading
.claude/skills/address-pr-comments/fetch-pr-comments.py, template/.claude/skills/address-pr-comments/fetch-pr-comments.py
CLI fetches PR comments via gh REST/GraphQL, identifies resolved threads, assembles inline threads by walking in_reply_to_id, filters bot/current-user authored items, and emits sorted actionable JSON.
Reply posting and footer management
.claude/skills/address-pr-comments/post-reply.py, .claude/skills/address-pr-comments/check-footer.py, template copies
Posts in-thread replies or top-level comments via gh api, reads body files, prints posted html_url, best-effort deletes body files; check-footer ensures or appends the required attribution footer.
Tooling and version pins
.devcontainer/install-ci-tooling.py, .pre-commit-config.yaml, extensions/context.py, ruff.toml, template/*
Bumps UV/PNPM pins, updates pre-commit hook revs and removes docformatter hook, refreshes template context pins, swaps Vitest ESLint plugin reference, and updates lint comment.
Repository infra and CI
.devcontainer/devcontainer.json, .gitignore, .github/reusable_workflows/build-docker-image.yaml, .github/workflows/ci.yaml, .github/workflows/hash_git_files.py, AGENTS.md, template/pnpm-workspace.yaml
Updates devcontainer Claude extension version and context hash, adds tmp/.claude/.nuxtrc to .gitignore, defensive ECR tagging with release-tag validation and artifact-retention input, special-case uv.lock normalization for devcontainer hashing, and pnpm workspace override for @nuxtjs/color-mode.
Test fixtures
tests/copier_data/data1.yaml, tests/copier_data/data2.yaml, tests/copier_data/data3.yaml
Adjusts/moves node_version entries and adds template-specific comment headers to align fixtures with template context changes.

Sequence Diagram(s)

sequenceDiagram
  participant fetch_cli as fetch-pr-comments.py
  participant post_cli as post-reply.py
  participant git as git_remote
  participant gh as gh_api
  participant fs as filesystem
  fetch_cli->>git: owner_repo_from_remote()
  fetch_cli->>gh: gh api graphql / pulls/comments / issues/comments
  gh-->>fetch_cli: comments and thread JSON
  fetch_cli->>fs: read/write reply draft files (tmp/)
  post_cli->>git: owner_repo_from_remote()
  post_cli->>gh: gh api POST comment reply
  gh-->>post_cli: posted comment html_url
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

Suggested reviewers

  • ejfine
  • idonaldson
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 39.02% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title 'Pull latest copier base version' accurately describes the main objective: updating the repository with newer versions from the copier base template (PR#159).
Description check ✅ Passed The description addresses most template sections: includes a link/reference ('Powwow this morning'), explains necessity (pull ESLint/version changes from base template PR#159), identifies side effects (N/A), and describes testing approach (CI + downstream verification). However, it lacks a clear explanation of how the changes specifically address the stated issue.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 8

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
template/AGENTS.md (1)

46-65: ⚠️ Potential issue | 🔴 Critical | ⚡ Quick win

Remove unresolved merge-conflict markers from the template guide.

This file still includes <<<<<<<, =======, and >>>>>>>, which leaves conflicting content in the template and makes the guidance ambiguous.

As per coding guidelines: template/**/AGENTS.md: "Document agent responsibilities, capabilities, and interactions in AGENTS.md" and "Maintain AGENTS.md as a central reference for agent architecture and design".

Also applies to: 74-80

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@template/AGENTS.md` around lines 46 - 65, AGENTS.md contains unresolved Git
merge conflict markers (`<<<<<<<`, `=======`, `>>>>>>>`) between the
before/after blocks; remove all conflict markers and keep the intended final
content (the updated "Python Testing" and "Frontend Testing" sections) so the
guide reads coherently, and scan the rest of AGENTS.md (including the remaining
occurrences around the previously noted 74-80 region) to ensure no stray
`<<<<<<<`, `=======`, or `>>>>>>>` remain.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.claude/settings/permissions/bash.jsonc:
- Line 50: The rule "Bash(git push)" currently permits direct remote pushes;
update the permissions JSON so that the "Bash(git push)" entry is moved out of
the allow list into an "ask" (or "deny") category instead, e.g., remove or
replace the "Bash(git push)" string from the current allowed array and add it
under the "ask" (or "deny") array so remote push attempts trigger an approval
prompt (or are blocked); search for the literal "Bash(git push)" to locate the
entry and modify the surrounding permission group accordingly.

In @.claude/skills/address-pr-comments/SKILL.md:
- Around line 69-79: The example fenced code blocks in SKILL.md (e.g., the
"Resume inventory for PR <n>:" block and the "Comment <n> of <total> —
<repo_root>/<path> line <line>" block shown in the suggested patch pattern) lack
language tags and blank lines when nested in lists; update each fenced block to
include a language tag (use "text") and ensure there is a blank line before and
after the triple-backtick fences within list items as shown in the patch pattern
so markdownlint warnings for missing language tags and surrounding blank lines
are resolved.

In @.claude/skills/address-pr-comments/utils.py:
- Around line 22-28: The current GitHub remote parsing (the re.fullmatch block
that sets match) rejects credentialed HTTPS remotes and logs the raw url on
failure, risking secret leakage; update the parsing to accept optional
user:pass@ in HTTPS remotes (e.g., allow an optional "[^@]+@" before
github\.com) or better yet use urllib.parse to parse the URL and extract
netloc/path, and if parsing fails do not write the raw remote to stderr—log a
sanitized form with credentials stripped (reconstruct host + path without
username/password) before calling sys.exit(1). Ensure you update the regex/parse
logic around the symbol match and replace the stderr write that prints url with
a sanitized message.

In `@extensions/context.py`:
- Line 70: The template still references the old variable name {{
eslint_plugin_vitest_version }}; update the template to use the new context key
{{ vitest_eslint_plugin_version }} so rendering uses the defined context
variable (replace occurrences of eslint_plugin_vitest_version with
vitest_eslint_plugin_version in the package.json.jinja template).

In `@template/.claude/settings/permissions/bash.jsonc`:
- Line 50: Replace the permissive entry "Bash(git push)" in the permissions
template with an ask-or-deny rule so direct git pushes require confirmation;
specifically locate the "Bash(git push)" entry in the permissions JSON array and
change its permission level from allow to "ask" (or "deny") to match the PR
safety guardrails.

In `@template/.claude/skills/address-pr-comments/check-footer.py`:
- Around line 35-38: The current suffix logic inserts extra blank lines when the
file is empty; change the computation of suffix so empty content yields "" (no
leading newline) and otherwise keep the existing behavior: if content is empty
set suffix = ""; elif content.endswith("\n") set suffix = "\n"; else set suffix
= "\n\n". Update the code around the variables content, suffix and the call to
path.write_text(...) (which writes content + suffix + FOOTER + "\n")
accordingly.

In `@template/.claude/skills/address-pr-comments/SKILL.md`:
- Around line 69-79: The fenced code blocks in the template skill doc (the block
starting with "Resume inventory for PR <n>:") are missing a fence language tag
and are embedded in list items without the required blank lines; update each
fenced block to include a language after the opening backticks (e.g., ```text)
and ensure there is a blank line before and after the fenced block so
markdownlint no longer flags missing blank lines around fenced blocks (apply the
same fixes to the other template fenced blocks with similar content).

In `@template/.claude/skills/address-pr-comments/utils.py`:
- Around line 22-28: The current re.fullmatch for extracting owner/repo from url
doesn't accept HTTPS URLs that include user:pass@ credentials and the failure
path writes the raw `url` to stderr (risking leaking credentials). Update the
regex used in the `re.fullmatch` call to allow optional userinfo for HTTPS (e.g.
make the https branch accept `https://(?:[^@]+@)?github\.com/…`) so credentialed
HTTPS remotes match, and change the failure branch that uses
`sys.stderr.write(f"Cannot parse GitHub owner/repo from remote: {url}\n")` to
avoid printing the raw `url` — either redact credentials (use
urllib.parse.urlparse to strip `.username`/`.password` before logging) or only
log a safe identifier (e.g. owner/repo when available). Keep references to the
same `match`, `url`, `re.fullmatch`, `sys.stderr.write`, and `sys.exit(1)`
symbols when making the change.

---

Outside diff comments:
In `@template/AGENTS.md`:
- Around line 46-65: AGENTS.md contains unresolved Git merge conflict markers
(`<<<<<<<`, `=======`, `>>>>>>>`) between the before/after blocks; remove all
conflict markers and keep the intended final content (the updated "Python
Testing" and "Frontend Testing" sections) so the guide reads coherently, and
scan the rest of AGENTS.md (including the remaining occurrences around the
previously noted 74-80 region) to ensure no stray `<<<<<<<`, `=======`, or
`>>>>>>>` remain.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: a361ebc2-2c1f-49e2-9c43-f3acc21ab7ba

📥 Commits

Reviewing files that changed from the base of the PR and between 9f4748a and 597075c.

📒 Files selected for processing (35)
  • .claude/settings/permissions/additional-dirs.jsonc
  • .claude/settings/permissions/bash.jsonc
  • .claude/settings/permissions/write.jsonc
  • .claude/skills/address-pr-comments/SKILL.md
  • .claude/skills/address-pr-comments/check-footer.py
  • .claude/skills/address-pr-comments/fetch-pr-comments.py
  • .claude/skills/address-pr-comments/post-reply.py
  • .claude/skills/address-pr-comments/utils.py
  • .copier-answers.yml
  • .devcontainer/devcontainer.json
  • .devcontainer/install-ci-tooling.py
  • .github/reusable_workflows/build-docker-image.yaml
  • .github/workflows/ci.yaml
  • .github/workflows/hash_git_files.py
  • .gitignore
  • .pre-commit-config.yaml
  • AGENTS.md
  • copier.yml
  • extensions/context.py
  • ruff.toml
  • template/.claude/settings/permissions/additional-dirs.jsonc
  • template/.claude/settings/permissions/bash.jsonc
  • template/.claude/settings/permissions/write.jsonc
  • template/.claude/skills/address-pr-comments/SKILL.md
  • template/.claude/skills/address-pr-comments/check-footer.py
  • template/.claude/skills/address-pr-comments/fetch-pr-comments.py
  • template/.claude/skills/address-pr-comments/post-reply.py
  • template/.claude/skills/address-pr-comments/utils.py
  • template/.github/workflows/hash_git_files.py
  • template/.gitignore
  • template/.pre-commit-config.yaml
  • template/AGENTS.md
  • template/pnpm-workspace.yaml
  • tests/copier_data/data1.yaml
  • tests/copier_data/data2.yaml
💤 Files with no reviewable changes (3)
  • tests/copier_data/data2.yaml
  • tests/copier_data/data1.yaml
  • .github/workflows/ci.yaml

Comment thread .claude/settings/permissions/bash.jsonc
Comment thread .claude/skills/address-pr-comments/SKILL.md
Comment thread .claude/skills/address-pr-comments/utils.py
Comment thread extensions/context.py
Comment thread template/.claude/settings/permissions/bash.jsonc
Comment thread template/.claude/skills/address-pr-comments/check-footer.py
Comment thread template/.claude/skills/address-pr-comments/SKILL.md
Comment thread template/.claude/skills/address-pr-comments/utils.py
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
template/AGENTS.md (1)

46-48: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Resolve merge conflict markers in template/AGENTS.md.

<<<<<<<, =======, and >>>>>>> markers are still present and must be removed before merge.

As per coding guidelines, template/**/AGENTS.md should be maintained as a clear central reference for agent architecture and design.

Also applies to: 65-65, 74-80

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@template/AGENTS.md` around lines 46 - 48, The file template/AGENTS.md
contains unresolved Git merge conflict markers (<<<<<<<, =======, >>>>>>>)
around the section that includes the "### Python Testing" heading; remove these
conflict markers and reconcile the conflicting content so the file contains a
single, correct version of that section (ensure "### Python Testing" appears
once with the intended content), and scan the rest of template/**/AGENTS.md
(notably the regions mentioned near lines 65 and 74–80) to remove any other
leftover conflict markers and keep the final merged text consistent.
♻️ Duplicate comments (3)
template/.claude/settings/permissions/bash.jsonc (1)

50-50: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Gate git push behind confirmation, not unconditional allow.

Bash(git push) in allow permits remote mutation without a prompt. Move it to ask (or deny) to preserve PR safety guardrails.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@template/.claude/settings/permissions/bash.jsonc` at line 50, The permissions
entry "Bash(git push)" is currently in the unconditional allow list; update the
permissions JSON to remove "Bash(git push)" from the allow array and instead add
it to the ask (or deny) array so remote pushes require confirmation; locate the
string "Bash(git push)" in the permissions configuration and move that entry
into the "ask" section (or "deny" if stricter) to restore PR safety guardrails.
.claude/settings/permissions/bash.jsonc (1)

50-50: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Gate git push behind confirmation, not unconditional allow.

Bash(git push) in allow permits remote mutation without a prompt. Move it to ask (or deny) to preserve PR safety guardrails.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.claude/settings/permissions/bash.jsonc at line 50, The entry "Bash(git
push)" is currently listed under the allow array which lets the agent perform
remote pushes without confirmation; change its placement so it is not
unconditionally allowed—remove "Bash(git push)" from the allow list and add it
to the ask list (or deny if you want to completely block), updating the JSONC
keys "allow" and "ask" accordingly so the agent prompts for confirmation before
running git push.
template/.claude/skills/address-pr-comments/SKILL.md (1)

69-79: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Fix remaining markdown fence formatting warnings.

There are still fenced blocks missing a language tag and/or required blank lines around fences in list contexts (e.g., the resume inventory sample and command blocks). This matches the previously reported markdownlint issue.

Suggested minimal pattern
-```
+```text
 Resume inventory for PR <n>:
 ...

And in list items, ensure a blank line before and after each fenced block.
</details>





Also applies to: 139-149, 163-175, 224-238

<details>
<summary>🤖 Prompt for AI Agents</summary>

Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @template/.claude/skills/address-pr-comments/SKILL.md around lines 69 - 79,
The markdown fences in SKILL.md (notably the "Resume inventory for PR :"
sample and other blocks around lines referenced) lack language tags and blank
lines in list contexts; update each fenced code block (e.g., the resume
inventory example and command blocks at the reported ranges 69-79, 139-149,
163-175, 224-238) to include a language tag such as ```text and ensure there is
an empty line before and after the fenced block when it appears inside a list
item so markdownlint warnings are resolved.


</details>

</blockquote></details>

</blockquote></details>

<details>
<summary>🤖 Prompt for all review comments with AI agents</summary>

Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.claude/skills/address-pr-comments/check-footer.py:

  • Around line 35-38: The code currently computes suffix with
    content.endswith("\n") which makes empty files get "\n\n" before FOOTER; change
    the logic in check-footer.py to handle empty content specially (e.g., if not
    content: suffix = "" ; elif content.endswith("\n"): suffix = "\n" ; else: suffix
    = "\n\n") so that when writing with path.write_text(content + suffix + FOOTER +
    "\n", encoding="utf-8") you do not prepend extra blank lines to empty files;
    reference the variables/content, suffix, FOOTER and the path.write_text call to
    locate where to update.

In @.claude/skills/address-pr-comments/SKILL.md:

  • Around line 46-48: The document contains unresolved git merge conflict markers
    (<<<<<<<, =======, >>>>>>>) around the lines that include the bullets "On
    main/master → 'Please switch to the PR's branch first...'" and "Uncommitted
    changes → 'Please commit or stash your changes first...'" — remove the conflict
    markers and keep the correct, final version of the bullets (or merge the
    intended content), ensuring there are no remaining <<<<<<<, =======, or >>>>>>>
    markers in the affected ranges (including the other occurrences at the noted
    ranges). After resolving, run a quick search for those markers to confirm none
    remain before committing.

Outside diff comments:
In @template/AGENTS.md:

  • Around line 46-48: The file template/AGENTS.md contains unresolved Git merge
    conflict markers (<<<<<<<, =======, >>>>>>>) around the section that includes
    the "### Python Testing" heading; remove these conflict markers and reconcile
    the conflicting content so the file contains a single, correct version of that
    section (ensure "### Python Testing" appears once with the intended content),
    and scan the rest of template/**/AGENTS.md (notably the regions mentioned near
    lines 65 and 74–80) to remove any other leftover conflict markers and keep the
    final merged text consistent.

Duplicate comments:
In @.claude/settings/permissions/bash.jsonc:

  • Line 50: The entry "Bash(git push)" is currently listed under the allow array
    which lets the agent perform remote pushes without confirmation; change its
    placement so it is not unconditionally allowed—remove "Bash(git push)" from the
    allow list and add it to the ask list (or deny if you want to completely block),
    updating the JSONC keys "allow" and "ask" accordingly so the agent prompts for
    confirmation before running git push.

In @template/.claude/settings/permissions/bash.jsonc:

  • Line 50: The permissions entry "Bash(git push)" is currently in the
    unconditional allow list; update the permissions JSON to remove "Bash(git push)"
    from the allow array and instead add it to the ask (or deny) array so remote
    pushes require confirmation; locate the string "Bash(git push)" in the
    permissions configuration and move that entry into the "ask" section (or "deny"
    if stricter) to restore PR safety guardrails.

In @template/.claude/skills/address-pr-comments/SKILL.md:

  • Around line 69-79: The markdown fences in SKILL.md (notably the "Resume
    inventory for PR :" sample and other blocks around lines referenced) lack
    language tags and blank lines in list contexts; update each fenced code block
    (e.g., the resume inventory example and command blocks at the reported ranges
    69-79, 139-149, 163-175, 224-238) to include a language tag such as ```text and
    ensure there is an empty line before and after the fenced block when it appears
    inside a list item so markdownlint warnings are resolved.

</details>

<details>
<summary>🪄 Autofix (Beta)</summary>

Fix all unresolved CodeRabbit comments on this PR:

- [ ] <!-- {"checkboxId": "4b0d0e0a-96d7-4f10-b296-3a18ea78f0b9"} --> Push a commit to this branch (recommended)
- [ ] <!-- {"checkboxId": "ff5b1114-7d8c-49e6-8ac1-43f82af23a33"} --> Create a new PR with the fixes

</details>

---

<details>
<summary>ℹ️ Review info</summary>

<details>
<summary>⚙️ Run configuration</summary>

**Configuration used**: Path: .coderabbit.yaml

**Review profile**: ASSERTIVE

**Plan**: Pro

**Run ID**: `ac9c362d-aae5-4bb6-964d-df2d6e403f06`

</details>

<details>
<summary>📥 Commits</summary>

Reviewing files that changed from the base of the PR and between 597075c9ab279e5a4d9c8b3dad4bbff5ed34b6df and e6db59ffbb391a4328eb68e96acd93e568f07f9f.

</details>

<details>
<summary>📒 Files selected for processing (38)</summary>

* `.claude/settings/permissions/additional-dirs.jsonc`
* `.claude/settings/permissions/bash.jsonc`
* `.claude/settings/permissions/write.jsonc`
* `.claude/skills/address-pr-comments/SKILL.md`
* `.claude/skills/address-pr-comments/check-footer.py`
* `.claude/skills/address-pr-comments/fetch-pr-comments.py`
* `.claude/skills/address-pr-comments/post-reply.py`
* `.claude/skills/address-pr-comments/utils.py`
* `.copier-answers.yml`
* `.devcontainer/devcontainer.json`
* `.devcontainer/install-ci-tooling.py`
* `.github/reusable_workflows/build-docker-image.yaml`
* `.github/workflows/ci.yaml`
* `.github/workflows/hash_git_files.py`
* `.gitignore`
* `.pre-commit-config.yaml`
* `AGENTS.md`
* `copier.yml`
* `extensions/context.py`
* `ruff.toml`
* `template/.claude/settings/permissions/additional-dirs.jsonc`
* `template/.claude/settings/permissions/bash.jsonc`
* `template/.claude/settings/permissions/write.jsonc`
* `template/.claude/skills/address-pr-comments/SKILL.md`
* `template/.claude/skills/address-pr-comments/check-footer.py`
* `template/.claude/skills/address-pr-comments/fetch-pr-comments.py`
* `template/.claude/skills/address-pr-comments/post-reply.py`
* `template/.claude/skills/address-pr-comments/utils.py`
* `template/.github/workflows/hash_git_files.py`
* `template/.gitignore`
* `template/.pre-commit-config.yaml`
* `template/AGENTS.md`
* `template/eslint.config.mjs`
* `template/package.json.jinja`
* `template/pnpm-workspace.yaml`
* `tests/copier_data/data1.yaml`
* `tests/copier_data/data2.yaml`
* `tests/copier_data/data3.yaml`

</details>

<details>
<summary>💤 Files with no reviewable changes (1)</summary>

* .github/workflows/ci.yaml

</details>

</details>

<!-- This is an auto-generated comment by CodeRabbit for review status -->

Comment thread .claude/skills/address-pr-comments/check-footer.py
Comment thread .claude/skills/address-pr-comments/SKILL.md
zendern added 3 commits May 19, 2026 18:54
Hitting the issue found in nuxt/nuxt#34645.
Instead of trying to find a workaround when they are actively working on
a fix seems silly. Nuxt-common only uses client rendered tests anyways
and that is how we use them so lets just do that instead.
@zendern zendern marked this pull request as ready for review May 19, 2026 23:59
Comment thread extensions/context.py Outdated
Comment on lines +133 to +134
context["template_uses_vuejs"] = False
context["template_uses_typescript"] = False
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why'd these flip to false? something to do with this not really being a "full repo" template?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or when you did the update, did you run it with default answers, and not bring in the breaking change where the answer changed from template_uses_javascript -> template_uses_typescript so that you could say "yes" to that?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright fixed using the right var name post that switch 7644018

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can turn this into a symlink from the copier_resources folder once you change the answer to template_uses_typescript=True

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could not do so since the package/module version doesn't end up with a .nuxt/eslint-config that can be imported.

You can see here where i tried to do it.
https://github.com/LabAutomationAndScreening/copier-vue-package-template/actions/runs/26136618783/job/76873216264

From a freshly initiated copy
image

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we can make a copier task at some point to delete that one line, or make it jinja or something

@zendern zendern merged commit f56e6f7 into main May 20, 2026
31 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants