Loading...
Loading...
Files structured GitHub bug reports for agent-validator when users ask to file, report, or open an issue for a suspected defect
npx skill4agent add codagent-ai/agent-validator validator-issue$ARGUMENTS--auto-file --auto-file$ARGUMENTS"Please describe the bug you encountered with agent-validator. What happened, what did you expect, and what were you trying to do?"
.validator/config.ymllog_dirvalidator_logs.validator/config.yml<log_dir>/.debug.logtail -n 50 <log_dir>/.debug.log<log_dir>/.execution_state## Problem
<A clear, concise description of the bug. Based on the user's description.>
## Steps to Reproduce
<Step-by-step instructions to reproduce the issue. Infer from the description and evidence, or note "Not yet determined" if unclear.>
## Expected vs Actual
**Expected:** <What should have happened>
**Actual:** <What actually happened>
## Evidence
> **Before including evidence, redact sensitive values**: remove or replace tokens, API keys, email addresses, and absolute local paths that may appear in config, logs, or state. Replace them with `[REDACTED]` or a generic placeholder.
**Config (`.validator/config.yml`):**
<Paste only relevant, non-sensitive config values. Redact tokens, emails, and absolute paths. Note "File not found" if absent.>
**Debug log (last 50 lines of `<log_dir>/.debug.log`):**
<Paste minimal relevant excerpt with sensitive values redacted. Note "File not found" if absent.>
**Execution state (`<log_dir>/.execution_state`):**
<Paste only fields needed to diagnose the bug; redact sensitive values. Note "File not found" if absent.>
**Absent files:** <List any files that were not found, or "None">Bug: <short summary of the problem>"Here is the draft issue. Shall I file it? (yes/no)"
--body-fileISSUE_TITLE=$(cat <<'TITLE_EOF'
Bug: <short summary>
TITLE_EOF
)
BODY_FILE=$(mktemp)
cat > "$BODY_FILE" << 'ISSUE_EOF'
<paste the full issue body here>
ISSUE_EOF
gh issue create --repo Codagent-AI/agent-validator --title "$ISSUE_TITLE" --body-file "$BODY_FILE"
rm -f "$BODY_FILE"