chore: Add pnpm sync:skill-links alias (no-changelog) (#32382)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Svetoslav Dekov
2026-06-16 16:39:01 +03:00
committed by GitHub
parent 44d9f3ddf8
commit 8de342a618
4 changed files with 7 additions and 8 deletions
+3 -4
View File
@@ -34,7 +34,6 @@ actionable error. (OpenCode reads `.agents/skills` directly and is unaffected.)
tool availability checks.
- Put harness-specific workflows, such as MCP setup commands, in real
directories under the matching harness path.
- Run `node scripts/sync-agent-skill-links.mjs` after adding or removing shared
skills to update Claude plugin symlinks.
- Run `node scripts/sync-agent-skill-links.mjs --check` before submitting
changes.
- Run `pnpm sync:skill-links` after adding or removing shared skills to update
Claude plugin symlinks.
- Run `pnpm check:skill-links` before submitting changes.
+1 -1
View File
@@ -22,7 +22,7 @@ Skills are markdown (plus optional scripts) that teach the agent a focused workf
**Do not** put custom skills in `~/.cursor/skills-cursor/`—that is reserved for Cursors built-in skills.
Prefer **`.agents/skills/`** for anything that should match how the rest of the team works. Run `node scripts/sync-agent-skill-links.mjs` after adding or removing shared skills.
Prefer **`.agents/skills/`** for anything that should match how the rest of the team works. Run `pnpm sync:skill-links` after adding or removing shared skills.
## Before you write: gather requirements
+2 -3
View File
@@ -43,9 +43,8 @@ skills or overrides remain real directories in this plugin path.
└── README.md
```
Run `node scripts/sync-agent-skill-links.mjs` after adding or removing shared
skills. Run `node scripts/sync-agent-skill-links.mjs --check` before submitting
changes.
Run `pnpm sync:skill-links` after adding or removing shared skills. Run
`pnpm check:skill-links` before submitting changes.
## Design Decisions
+1
View File
@@ -39,6 +39,7 @@
"lint:affected": "turbo run lint --affected",
"lint:fix": "turbo run lint:fix",
"lint:ci": "turbo run lint lint:styles",
"sync:skill-links": "node scripts/sync-agent-skill-links.mjs",
"check:skill-links": "node scripts/sync-agent-skill-links.mjs --check",
"optimize-svg": "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo",
"setup-backend-module": "node scripts/ensure-zx.mjs && zx scripts/backend-module/setup.mjs",