Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions content/Changelog/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ import { Callout } from 'fumadocs-ui/components/callout';

This page documents the release history of the [Agentuity CLI](https://github.com/agentuity/cli).

## v0.0.164

<Callout type="info">
Released: August 12, 2025
</Callout>

**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))
Comment on lines +16 to +19
Copy link
Contributor

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.


## v0.0.163

<Callout type="info">
Expand Down