con un clic
con un clic
| name | changelog |
| description | Add a new changelog entry to docs/changelog-entries/ |
| disable-model-invocation | true |
Add changelog entries as individual files in docs/changelog-entries/, then regenerate docs/changelog.mdx before opening or updating the PR.
Use a single long-lived branch for changelog automation: automation/changelog. The automation should update the existing open changelog PR from that branch when possible instead of opening multiple concurrent changelog PRs.
description field (e.g., "Chat Everywhere", not "v2.28"). The theme should immediately tell users what changed.Create or update docs/changelog-entries/YYYY-MM-DD.mdx with frontmatter + markdown:
---
description: "Headline Theme"
---
One or two sentences about the main feature.
- Bullet one
- Bullet two
- Bullet three
The date is derived from the filename automatically.
Do not hand-edit docs/changelog.mdx. Regenerate it with node docs/scripts/build-changelog.mjs.
gh pr list --repo elie222/inbox-zero --state merged --limit 30 --json number,title,mergedAtautomation/changelog to main: gh pr list --repo elie222/inbox-zero --head automation/changelog --base main --state open --json number,title,urldocs/changelog-entries/YYYY-MM-DD.mdx with frontmatter (description) and markdown contentdocs/changelog.mdx: node docs/scripts/build-changelog.mjsdocs/changelog-entries/YYYY-MM-DD.mdx and docs/changelog.mdxautomation/changelog exists, update that branch and PR; otherwise create it from automation/changelogBefore making changes, reset the automation branch to the latest main so each run starts from a clean base:
git fetch origin
git checkout -B automation/changelog origin/main
After updating the changelog files, push that branch and create or update the PR from automation/changelog to main.
Guidelines for testing the application with Vitest, including unit tests, integration tests (emulator), AI tests, and eval suites for LLM features
Cursor Cloud VM setup and service startup instructions for local development
Simplify and refine recently modified code for clarity, consistency, and maintainability while preserving exact behavior. Use when asked to simplify, polish, refactor lightly, or clean up current-session changes before review or PR.
Commit changes and open a pull request with safe metadata
Review prompt and tool-description changes in a branch or PR. Use when asked to audit system prompts, prompt builders, tool descriptions, prompt inputs, or nearby evals/tests; summarize what changed; identify guidance that feels eval-shaped or too heavy for product use; and find repeated instructions between the main prompt and tool descriptions.
Update workspace packages while respecting the repo's pinned package list in .ncurc.cjs. Use when the user asks to update dependencies or refresh package versions.