prr-kit 2.0.7 → 2.0.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prr-kit",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "AI-driven Pull Request Review Kit — structured agent workflows for thorough, consistent code review",
5
5
  "main": "tools/cli/prr-cli.js",
6
6
  "bin": {
@@ -157,7 +157,7 @@ class Installer {
157
157
  if (toAdd.length === 0) return;
158
158
 
159
159
  const separator = content.endsWith('\n') ? '' : '\n';
160
- await fs.appendFile(gitignorePath, `${separator}${toAdd.join('\n')}\n`, 'utf8');
160
+ await fs.appendFile(gitignorePath, `${separator}# PR Review Kit\n${toAdd.join('\n')}\n`, 'utf8');
161
161
  await prompts.log.info(` ✓ .gitignore updated (${toAdd.join(', ')})`);
162
162
  }
163
163