go-agent/codex/issue/scripts/close.sh
Snider 61e01bfdf1 feat: initial go-agent — agentci + jobrunner + plugins marketplace
Consolidates three codebases into a single agent orchestration repo:

- agentci (from go-scm): Clotho dual-run verification, agent config,
  SSH security (sanitisation, secure commands, token masking)
- jobrunner (from go-scm): Poll-dispatch-report pipeline with 7 handlers
  (dispatch, completion, auto-merge, publish draft, dismiss reviews,
  send fix command, tick parent epic)
- plugins marketplace (from agentic/plugins): 27 Claude/Codex/Gemini
  plugins with shared MCP server

All 150+ tests passing across 6 packages.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-21 15:47:19 +00:00

51 lines
1.3 KiB
Bash
Executable file

#!/bin/bash
# Check if gh is installed
if ! command -v gh &> /dev/null
then
echo "GitHub CLI (gh) could not be found. Please install it to use this feature."
echo "Installation instructions: https://github.com/cli/cli#installation"
exit 1
fi
# Check for issue number argument
if [ -z "$1" ]; then
echo "Usage: /core:issue close <issue-number>"
exit 1
fi
ISSUE_NUMBER=$1
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
echo "Closing #${ISSUE_NUMBER}..."
echo ""
# Get issue title
ISSUE_TITLE=$(gh issue view "${ISSUE_NUMBER}" --json title -q .title)
if [ -z "$ISSUE_TITLE" ]; then
echo "Could not find issue #${ISSUE_NUMBER}."
exit 1
fi
echo "Commits on branch '${CURRENT_BRANCH}':"
git log --oneline main..HEAD
echo ""
read -p "Create PR? [Y/n] " -r
echo
if [[ ! $REPLY =~ ^[Nn]$ ]]; then
gh pr create --title "${ISSUE_TITLE}" --body "Closes #${ISSUE_NUMBER}" --base main
echo ""
fi
read -p "Comment on issue? [Y/n] " -r
echo
if [[ ! $REPLY =~ ^[Nn]$ ]]; then
PR_URL=$(gh pr view --json url -q .url)
if [ -n "$PR_URL" ]; then
gh issue comment "${ISSUE_NUMBER}" --body "Fixed in ${PR_URL}"
echo "Commented on issue #${ISSUE_NUMBER}"
else
echo "Could not find a pull request for this branch."
fi
fi