-
Notifications
You must be signed in to change notification settings - Fork 1
Update changelog for v0.0.164 #261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-Authored-By: unknown <>
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
WalkthroughAdds a new v0.0.164 release notes block to the CLI changelog, placed before v0.0.163, documenting one addition and two changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested reviewers
Poem
✨ Finishing Touches🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
Deploying with
|
Status | Name | Latest Commit | Preview URL | Updated (UTC) |
---|---|---|---|---|
✅ Deployment successful! View logs |
docs | a5ab75a | Commit Preview URL Branch Preview URL |
Aug 12 2025, 11:15 PM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Nitpick comments (1)
content/Changelog/cli.mdx (1)
16-19
: Tighten wording for clarity and consistency with prior entriesThe three bullets read a bit informal/ambiguous. Recommend concise, action-oriented phrasing that matches the rest of the page and the PR summary.
Apply this diff:
**Changes:** -- **Added**: Allow setup.sh in case we need to run some script in docker image ([#427](https://github.com/agentuity/cli/pull/427)) -- **Changed**: Add more debugging around new project to debug failure ([#430](https://github.com/agentuity/cli/pull/430)) -- **Changed**: Make it scroll with arrows as well ([#428](https://github.com/agentuity/cli/pull/428)) +- **Added**: Docker setup.sh script support for container initialization ([#427](https://github.com/agentuity/cli/pull/427)) +- **Changed**: Enhanced debugging for new project creation failures ([#430](https://github.com/agentuity/cli/pull/430)) +- **Changed**: Improved UI scrolling with arrow key support ([#428](https://github.com/agentuity/cli/pull/428))
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
content/Changelog/cli.mdx
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Workers Builds: docs
🔇 Additional comments (1)
content/Changelog/cli.mdx (1)
10-14
: Placement and release metadata look correctv0.0.164 is correctly inserted before v0.0.163, and the Callout date matches the stated release date (August 12, 2025).
**Changes:** | ||
- **Added**: Allow setup.sh in case we need to run some script in docker image ([#427](https://github.com/agentuity/cli/pull/427)) | ||
- **Changed**: Add more debugging around new project to debug failure ([#430](https://github.com/agentuity/cli/pull/430)) | ||
- **Changed**: Make it scroll with arrows as well ([#428](https://github.com/agentuity/cli/pull/428)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Optionally verify PR links and parity with CLI CHANGELOG
Quick sanity check that the linked PRs exist with expected titles, and that CLI repo CHANGELOG.md contains v0.0.164 with matching content.
🏁 Script executed:
#!/bin/bash
set -euo pipefail
owner_repo="agentuity/cli"
# Verify PRs exist and print titles
for pr in 427 428 430; do
echo "Checking PR #$pr..."
gh api repos/$owner_repo/pulls/$pr --jq '{number, title, state}'
done
echo
echo "Fetching CLI CHANGELOG.md head from default branch..."
# Try main first, then master if needed
for branch in main master; do
if curl -fsSL "https://raw.githubusercontent.com/${owner_repo}/${branch}/CHANGELOG.md" -o /tmp/cli_changelog.md; then
echo "Downloaded CHANGELOG from branch: $branch"
break
fi
done
echo
echo "Preview v0.0.164 section (if present):"
awk '/^## v0\.0\.164/{flag=1;next}/^## v0\./{flag=0}flag' /tmp/cli_changelog.md | sed -n '1,40p'
echo
echo "Check that the three bullets are present (loose match):"
grep -E "setup\.sh|Docker|container initialization" -i /tmp/cli_changelog.md || true
grep -E "debugging.*new project" -i /tmp/cli_changelog.md || true
grep -E "scroll.*arrow" -i /tmp/cli_changelog.md || true
Length of output: 1984
Update agentuity/cli CHANGELOG.md for v0.0.164
The linked PRs (#427, #428, #430) are valid and closed with the expected titles, but the agentuity/cli
repo’s CHANGELOG.md (main branch) doesn’t yet include a v0.0.164 section with these entries. Please add a new release block before the next version’s header:
+ ## v0.0.164 (YYYY-MM-DD)
+ **Added**
+ - Allow setup.sh in case we need to run some script in docker image ([#427](https://github.com/agentuity/cli/pull/427))
+ **Changed**
+ - Add more debugging around new project to debug failure ([#430](https://github.com/agentuity/cli/pull/430))
+ - Make it scroll with arrows as well ([#428](https://github.com/agentuity/cli/pull/428))
• File to update: CHANGELOG.md
in the root of agentuity/cli
• Ensure the date is set appropriately and the section is placed immediately after the prior release.
Committable suggestion skipped: line range outside the PR's diff.
🤖 Prompt for AI Agents
In content/Changelog/cli.mdx around lines 16 to 19, add a new v0.0.164 release
block to CHANGELOG.md in the root of agentuity/cli containing the three listed
entries (Allow setup.sh..., Add more debugging..., Make it scroll with
arrows...) with an appropriate release date; place this new section immediately
after the previous release header (before the next version’s header) and format
it consistently with existing release blocks so entries and links match the
repository style.
Update changelog for v0.0.164
Summary
This PR updates the changelog documentation for Agentuity CLI version v0.0.164 in both the main CLI repository (
CHANGELOG.md
) and the documentation repository (content/Changelog/cli.mdx
).The changes document three new features/improvements released in v0.0.164:
Both changelog files follow their respective formatting standards:
Review & Testing Checklist for Human
Recommended Test Plan
git log --oneline v0.0.163..v0.0.164
against the changelog entriesDiagram
Notes
Summary by CodeRabbit
New Features
Chores
Documentation