mirror of
https://github.com/shipshitdev/skills.git
synced 2026-09-19 06:04:15 +08:00
218a3e50d6
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).
19 lines
394 B
Bash
Executable File
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
|