This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Say Ready Hook for Claude Code (macOS) | |
| Paste this into Claude Code: | |
| --- | |
| Set up a "say ready" hook that announces the project name when you're ready for my input. This helps me know which terminal is ready when I have multiple sessions open. | |
| Create ~/.claude/scripts/say-ready.sh with this content: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # newskill - Create Claude Code skills interactively | |
| # | |
| # Uses Claude Code's /skill-creator to generate production-ready skills | |
| # with proper SKILL.md, asking clarifying questions before generating. | |
| # | |
| # PREREQUISITES: | |
| # - Claude Code CLI (https://claude.ai/code) | |
| # - /skill-creator skill (auto-installed if missing) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| /** | |
| * Skill Audit Tool | |
| * | |
| * Auto-discovers ALL SKILL.md files across your system — Claude Code, | |
| * Codex, Copilot, Cursor, Gemini, OpenCode, Goose, Continue, Factory, | |
| * OpenClaw, OpenHands, .agents, project repos, and more. | |
| * | |
| * Identifies duplicates by name and content similarity, |
OlderNewer