review_and_promote.sh•1.62 kB
#!/bin/bash
# Wrapper script for running the interactive chat review and promotion workflow.
# Usage: ./scripts/review_and_promote.sh [--days-limit N] [--fetch-limit M] ...
# Arguments are passed directly to the chroma-mcp-client review-and-promote command.
set -e # Exit immediately if a command exits with a non-zero status.
# Get the directory where the script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Navigate to the project root directory (assuming the script is in ./scripts/)
PROJECT_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
cd "${PROJECT_ROOT}"
# Documentation on available parameters
# --days-limit: How many days back to look for 'analyzed' entries (default: 7)
# --fetch-limit: Maximum number of entries to fetch for review (default: 50)
# --chat-collection-name: Name of the chat history collection (default: chat_history_v1)
# --learnings-collection-name: Name of the learnings collection (default: derived_learnings_v1)
# --modification-type: Filter by modification type (choices: all, refactor, bugfix, feature, documentation, etc.)
# --min-confidence: Minimum confidence score threshold (0.0-1.0)
# --sort-by-confidence: Sort entries by confidence score (default: true)
# --no-sort-by-confidence: Don't sort entries by confidence score
# Execute the command via hatch, passing all arguments
# Use the module execution path for reliability within hatch run
echo "Running interactive promoter via: hatch run python -m chroma_mcp_client.cli review-and-promote $@"
hatch run python -m chroma_mcp_client.cli review-and-promote "$@"
echo "Interactive promotion script finished."