Skip to content

Commit 73e902a

Browse files
committed
chore: consolidate agent config under .agents/, symlink tool-specific paths
- Move .opencode/command/ -> .agents/commands/ and .opencode/agent/ -> .agents/agents/ - Symlink .opencode/commands and .opencode/agents back to .agents/ (fixes singular/plural too) - Add CLAUDE.md -> AGENTS.md symlink for Claude Code and VS Code Copilot - Remove rulesync dependency and ai-setup:* scripts (nothing consumed generated output) - Update .gitignore: remove rulesync-generated entries, add explicit includes for new dirs - Update AGENTS.md with commands/agents tables and symlink documentation
1 parent 163dfeb commit 73e902a

19 files changed

Lines changed: 44 additions & 1254 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.claude/CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../AGENTS.md

.claude/agents

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.agents/agents

.claude/commands

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.agents/commands

.claude/skills

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.agents/skills

.github/workflows/auto-format-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ jobs:
7171
mapfile -t files < <(
7272
git diff --name-only --diff-filter=ACMR "$BASE_SHA" HEAD \
7373
| grep -E '\.(js|jsx|ts|tsx|mjs|css|json|yaml|yml|md|astro)$' \
74+
| while IFS= read -r f; do [[ -L "$f" ]] || echo "$f"; done \
7475
|| true
7576
)
7677
if [ "${#files[@]}" -eq 0 ]; then

0 commit comments

Comments
 (0)