From arn-code
This skill should be used when the user says "report issue", "arness code report", "code report", "something went wrong", "report a bug", "file arness code issue", "arness code broke", "report arness code problem", "diagnose issue", "arness doctor", "run doctor", "diagnose arness code", "arn-code-report", or wants to report a problem with an Arness Code workflow skill. Invokes the arn-code-doctor agent to diagnose the issue, then files a GitHub issue on the Arness plugin repository. Do NOT use this for filing issues on the user's own project — use /arn-code-create-issue for that. For Spark issues use /arn-spark-report. For Infra issues use /arn-infra-report.
npx claudepluginhub appsvortex/arness --plugin arn-codeThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Report an Arness Code workflow issue by running a diagnostic and filing a GitHub issue on the Arness plugin repository. The arn-code-doctor agent analyzes Arness Code configuration and behavior — it never reads project source code or business logic. Supports cross-plugin smart routing — detects if the issue belongs to Spark or Infra and suggests the right report skill.
Before gathering details, check if the issue might belong to another plugin:
## Arness from the project's CLAUDE.md.## Arness: suggest "This sounds like an Arness Spark issue. Run /arn-spark-report instead, or confirm this is a Code issue."## Arness: suggest "This sounds like an Arness Infra issue. Run /arn-infra-report instead, or confirm this is a Code issue."Inform the user:
"I'll help you report a Arness workflow issue. Here's how this works:
Your project code and business logic are never included in the report."
Ask the user using AskUserQuestion:
Let the user type a free-form description. This becomes the user_description for the diagnostic.
Detect the plugin's GitHub repository:
${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json and extract the repository field.owner/repo from the URL (strip https://github.com/ prefix and any trailing .git).--plugin-dir): if no repository field exists, try git -C ${CLAUDE_PLUGIN_ROOT} remote get-url origin.Check gh auth status — user must be authenticated to file issues.
Read plugin version from ${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json.
Read ## Arness config from the project's CLAUDE.md (if it exists).
If GitHub access is not available, offer an alternative: generate the diagnostic report as a local file (arness-code-report-<YYYY-MM-DD>.md in the project root) the user can manually submit.
Spawn the arn-code-doctor agent via the Task tool with:
## Arness config content (or "not configured")${CLAUDE_PLUGIN_ROOT}/skills/arn-code-report/references/arness-knowledge-base.mdWait for the agent to complete and collect the diagnostic report.
Assemble the GitHub issue using the template from ${CLAUDE_PLUGIN_ROOT}/skills/arn-code-report/references/issue-template.md:
Present the complete draft to the user, then request explicit consent.
Ask (using AskUserQuestion):
This report will be filed as a public GitHub issue on the Arness repository. It contains only Arness configuration state and diagnostic findings — no project source code or business logic. Please review the report above carefully.
- Submit — I've reviewed it and consent to filing this publicly
- Save locally — save as a file instead of submitting
- Edit first — let me modify the report before deciding
arness-code-report-<YYYY-MM-DD>.md in the project root. Inform the user. Do not submit.The arn-code-report label must already exist on the plugin repository (maintained by the plugin maintainers, not created by this skill).
Create the issue with the arn-code-report label:
gh issue create --repo <owner/repo> --title "<title>" --body "<body>" --label "arn-code-report"
If the command fails because the label does not exist, retry without --label and inform the user that the issue was filed without a label.
Report the issue URL to the user.
If submission fails for other reasons (permissions, network), save the report as arness-code-report-<YYYY-MM-DD>.md in the project root and inform the user with instructions to submit manually.
repository field in plugin.json and no git remote found. Generate report as arness-code-report-<YYYY-MM-DD>.md in the project root instead.gh not authenticated — suggest gh auth login, offer local file fallback (arness-code-report-<YYYY-MM-DD>.md).arness-code-report-<YYYY-MM-DD>.md in the project root, suggest opening manually.## Arness config missing — proceed anyway, note "not configured" in the report.arn-code-report label missing from plugin repo — retry without --label, note this in the output.