mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-19 07:36:52 +00:00
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:
@@ -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.
|
||||
|
||||
@@ -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 Cursor’s 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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user