This file contains GitHub integration for `/audit-project`.
Creates GitHub issues for non-security audit findings and removes the technical debt file.
npx claudepluginhub composiohq/awesome-claude-pluginsThis file contains GitHub integration for /audit-project.
Parent document: audit-project.md
# Check if git and gh are available
GIT_AVAILABLE=$(command -v git >/dev/null 2>&1 && echo "true" || echo "false")
GH_AVAILABLE=$(command -v gh >/dev/null 2>&1 && echo "true" || echo "false")
# Check if this is a GitHub repository
IS_GITHUB_REPO="false"
if [ "$GIT_AVAILABLE" = "true" ]; then
REMOTE_URL=$(git remote get-url origin 2>/dev/null || echo "")
if echo "$REMOTE_URL" | grep -q "github.com"; then
IS_GITHUB_REPO="true"
fi
fi
If git and gh are available, create issues for non-security deferred items:
if [ "$GH_AVAILABLE" = "true" ] && [ "$IS_GITHUB_REPO" = "true" ]; then
echo "Creating GitHub issues for deferred items..."
# DO NOT create public issues for security-sensitive findings
for issue in "${DEFERRED_NON_SECURITY_ISSUES[@]}"; do
gh issue create \
--title "${issue.title}" \
--body "${issue.body}"
done
echo "Created ${#DEFERRED_NON_SECURITY_ISSUES[@]} GitHub issues"
fi
Each created issue includes:
## Issue from /audit-project
**Severity**: [Critical|High|Medium|Low]
**Category**: [Performance|Architecture|Code Quality|Enhancement]
**Effort**: [Small|Medium|Large] (~X hours)
### Description
[Description of the issue]
### Current Behavior
\`\`\`[language]
[Code showing the problem]
\`\`\`
### Proposed Fix
[Specific remediation approach]
### Impact
[Why this matters]
### Files
- [List of affected files]
[WARN] SECURITY ISSUES MUST NOT BE PUBLIC
The following must NOT be created as GitHub issues:
- Token/credential exposure
- Authentication vulnerabilities
- Authorization bypasses
- Injection vulnerabilities
- Any exploitable security finding
For security issues:
1. Fix immediately if possible
2. Keep documented internally only
3. Note in completion report (no details)
After all issues are handled, remove TECHNICAL_DEBT.md:
if [ "$GH_AVAILABLE" = "true" ] && [ "$IS_GITHUB_REPO" = "true" ]; then
if [ -f "TECHNICAL_DEBT.md" ]; then
rm TECHNICAL_DEBT.md
git add TECHNICAL_DEBT.md
git commit -m "chore: remove TECHNICAL_DEBT.md - issues tracked in GitHub
Created GitHub issues for all deferred non-security items.
Security-sensitive issues kept internal."
echo "Removed TECHNICAL_DEBT.md - issues now in GitHub"
fi
else
echo "TECHNICAL_DEBT.md retained - no GitHub integration"
fi
Remove TECHNICAL_DEBT.md when ALL true:
git is availablegh CLI is available and authenticatedKeep TECHNICAL_DEBT.md when ANY true:
gh CLI not authenticated--create-tech-debt flagIf issues were created:
git add -A
git commit -m "chore: audit-project complete - issues tracked in GitHub
Created X GitHub issues for deferred items:
- #N: [issue title]
- #N: [issue title]
Security-sensitive issues (Y total) kept internal.
Fixed Z issues in this review session."