Files
Vincent 218a3e50d6 feat(skills): add backend/frontend/security skills, restructure references, regenerate bundles (#15)
Source changes:
- Add github project/workflow skills and new skill set (backend: graphql-architect,
  nestjs-expert, turborepo, typescript-expert/refactor; frontend: react-*, shadcn,
  tailwind, audit/clarify/critique/layout/polish; security; session-end/start; x-algorithm-optimizer)
- Rename reference/ -> references/ in critique, mcp-builder, youtube-video-analyst
- Remove obsolete build scripts (generate-bundle, generate-manifest, generate-plugin, sync-marketplace)
- Refresh memory/system docs, READMEs, configs (biome, markdownlint, workflows)

Generated:
- Regenerate all 16 marketplace bundles (186 plugins: 16 bundles + 170 skills)

Validated: 170 skills pass skill-sync (Claude + Codex); lint clean (md/code/sh).
2026-06-08 13:27:19 +02:00

19 lines
394 B
Bash
Executable File

#!/bin/bash
#
# Wrapper script for shellcheck that handles optional installation
# Used by lint-staged for pre-commit hooks
#
set -euo pipefail
if [[ $# -eq 0 ]]; then
exit 0
fi
if command -v shellcheck >/dev/null 2>&1; then
shellcheck "$@"
else
echo "shellcheck is not installed. Install with: brew install shellcheck (macOS) or apt-get install -y shellcheck (Linux)" >&2
exit 1
fi