the signals and their derived score are provisional and subject to change.
validate manually before sharing.
38da3a719a04c2ecfbc5392f5c6951e451365d317480509bdbbdc3fbe1080745e14e650139d3c6cfAuthored: 3 months ago (Tue, 19 May 2026 02:51:29 +0000)Match: Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>38a78a547d54122d47d6f5dd6189463ded02137fAuthored: 5 months ago (Sat, 11 Apr 2026 21:58:41 +0000)Match: copilot-swe-agent[bot]6fa759a811ac05a36f7fed5f868a6c9ce6474bd7Authored: 5 months ago (Sat, 11 Apr 2026 21:57:36 +0000)Match: copilot-swe-agent[bot]4ec57d003afcd40722360e5ecea655d7b3d38ab8Authored: 5 months ago (Sat, 11 Apr 2026 21:48:08 +0000)Match: copilot-swe-agent[bot]a3a1ccb4aaedc261ac588028fdc86b9f4e7422c3Authored: 6 months ago (Sat, 14 Mar 2026 19:35:14 +0000)Match: Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>8d77529ad3b5d636fdac84f5683dc00b52519532Authored: 11 months ago (Sun, 12 Oct 2025 07:06:05 +0000)Match: Copilotbedacefc8886356a67a49fbc974b7126365ee41fAuthored: 1 year ago (Sat, 9 Aug 2025 00:10:16 +0000)Match: 🤖 Generated with [Claude Code](https://claude.ai/code)bedacefc8886356a67a49fbc974b7126365ee41fAuthored: 1 year ago (Sat, 9 Aug 2025 00:10:16 +0000)Match: Co-Authored-By: Claude <noreply@anthropic.com>AGENTS.mdTool: agents-md# AGENTS.md
Guidelines for AI coding agents working in the netboot.xyz repository.
## Project Summary
netboot.xyz generates iPXE bootloaders and menus for 190+ operating systems using Ansible and Jinja2 templates. There is no application code in a traditional sense — the project produces `.ipxe` scripts and bootloader binaries.
## Build Commands
```bash
# Syntax check (fast, run first)
ansible-playbook site.yml --syntax-check
# Lint Ansible tasks
ansible-lint -v roles/netbootxyz/tasks
# Full local .github/workflows/claude.ymlTool: claude-codename: Claude PR Assistant
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
issues:
types: [opened, assigned]
pull_request_review:
types: [submitted]
jobs:
claude-code-action:
if: |
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && connone