Conversation
) * docs: rewrite getting-started.md with current CLI and trailers info - Full rewrite to match current codebase (8 CLI commands, unified init) - Add Claude Code hooks section with .git-mem.json config example - Add Git Trailers subsection to "How it works" (AI-* trailer details) - Fix sessionStop config key in JSON example - Remove outdated init-mcp standalone section and architecture diagrams - Reorganize: Quick Start → Claude hooks → How it works → MCP → CLI Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: address review - markdown lint, --no-trailers flag, init default - Add blank lines around headings (MD022) - Add text language tag to fenced code blocks (MD040) - Document --no-trailers flag on remember command - Fix init --commit-count default to 100 (matches src/cli.ts) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> AI-Fact: Changed initial commit count AI-Confidence: high AI-Memory-Id: a0b9475f-6014-477e-ad81-584f7c72fd61
…r `.git-mem.json`
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthroughThis PR updates the git-mem tool's configuration and documentation. It adds Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Pull request overview
This PR changes the default commit count for the git-mem init command from 100 to 30. The change affects how many commits are extracted by default during initialization, making the default behavior process fewer commits.
Changes:
- Reduced default commit count from 100 to 30 in the init command implementation
- Added
.git-mem.jsonto the repository's.gitignore(completing an already-existing programmatic addition) - Restructured and condensed the getting-started documentation
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/commands/init.ts | Updated default commit count from 100 to 30 in three locations (initial value, error message, fallback) |
| docs/getting-started.md | Major documentation restructure with condensed content, but still shows old default of 100 for --commit-count |
| .gitignore | Added .git-mem.json to repository gitignore (aligns with programmatic gitignore entry in init command) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - **Non-invasive** — doesn't modify commits, branches, or working tree | ||
| Options: | ||
| - `-y, --yes` — Accept defaults without prompting | ||
| - `--commit-count <n>` — Number of commits to extract (default: 100) |
There was a problem hiding this comment.
The documentation states the default for --commit-count is 100, but the implementation in src/commands/init.ts has been changed to 30. This needs to be updated to 30 to match the implementation.
Summary by CodeRabbit
Documentation
Chores