Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"permissions": {
"allow": [
"Bash(cd \"D:/work/payload\" && gh auth status 2>&1)",
"Bash(cd \"D:/work/payload\" && gh issue list --repo payloadcms/payload --limit 100 --state open --json title,labels,number,author 2>&1)",
"Bash(cd \"D:/work/payload\" && gh issue list --repo payloadcms/payload --limit 200 --state open --json title,labels,number,author,created 2>&1 | python3 -c \"\nimport json, sys\ndata = json.load\\(sys.stdin\\)\n# Filter for easy issues - good first label or likely/simple issues\neasy_issues = []\nfor issue in data:\n labels = [l['name'].lower\\(\\) for l in issue.get\\('labels', []\\)]\n if 'good first issue' in labels or 'label: fix this' in labels or 'plugin: translations' in labels or 'docs' in labels:\n easy_issues.append\\(issue\\)\n # Also include any unlabelled or minimally labeled issues that look simple\n elif len\\(labels\\) <= 1 and issue['title'].lower\\(\\).startswith\\(\\('fix', 'docs', 'minor'\\)\\):\n easy_issues.append\\(issue\\)\n# Sort by creation date \\(oldest first - potentially simpler\\)\neasy_issues.sort\\(key=lambda x: x['created']\\)\nfor issue in easy_issues[:50]:\n print\\(f\\\\\"#{issue['number']}: {issue['title'][:80]}... \\(labels: {', '.join\\([l['name'] for l in issue['labels']]\\)}\\)\\\\\"\\)\n\" 2>/dev/null || echo \"Python3 not available, trying alternative\")"
]
}
}
Comment on lines +1 to +9
Copy link

Copilot AI Mar 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This appears to be a local agent configuration file (it’s also listed in .gitignore.local) and includes machine-specific paths and permissioned commands. It should not be committed to the repository—please remove it from the PR and rely on local gitignore/excludes for developer-specific agent settings.

Suggested change
{
"permissions": {
"allow": [
"Bash(cd \"D:/work/payload\" && gh auth status 2>&1)",
"Bash(cd \"D:/work/payload\" && gh issue list --repo payloadcms/payload --limit 100 --state open --json title,labels,number,author 2>&1)",
"Bash(cd \"D:/work/payload\" && gh issue list --repo payloadcms/payload --limit 200 --state open --json title,labels,number,author,created 2>&1 | python3 -c \"\nimport json, sys\ndata = json.load\\(sys.stdin\\)\n# Filter for easy issues - good first label or likely/simple issues\neasy_issues = []\nfor issue in data:\n labels = [l['name'].lower\\(\\) for l in issue.get\\('labels', []\\)]\n if 'good first issue' in labels or 'label: fix this' in labels or 'plugin: translations' in labels or 'docs' in labels:\n easy_issues.append\\(issue\\)\n # Also include any unlabelled or minimally labeled issues that look simple\n elif len\\(labels\\) <= 1 and issue['title'].lower\\(\\).startswith\\(\\('fix', 'docs', 'minor'\\)\\):\n easy_issues.append\\(issue\\)\n# Sort by creation date \\(oldest first - potentially simpler\\)\neasy_issues.sort\\(key=lambda x: x['created']\\)\nfor issue in easy_issues[:50]:\n print\\(f\\\\\"#{issue['number']}: {issue['title'][:80]}... \\(labels: {', '.join\\([l['name'] for l in issue['labels']]\\)}\\)\\\\\"\\)\n\" 2>/dev/null || echo \"Python3 not available, trying alternative\")"
]
}
}
{}

Copilot uses AI. Check for mistakes.
1 change: 1 addition & 0 deletions .claude/worktrees/agent-a44ea9c9
Submodule agent-a44ea9c9 added at 62f2b7
1 change: 1 addition & 0 deletions .github/PR_TITLE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix(ui): add Cmd/Ctrl+Click and Shift+Click to open items in new tab (#15837)
1 change: 1 addition & 0 deletions .github/PR_TITLE_FIX.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix(ui): add Cmd/Ctrl+Click and Shift+Click to open items in new tab
6 changes: 6 additions & 0 deletions .gitignore.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Local AI Agent files - DO NOT COMMIT
AGENTS.local.md
CLAUDE.local.md
QWEN.md
.claude/settings.local.json
.claude/worktrees/
Loading
Loading