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
| customModes: | |
| - slug: scaffold-next | |
| name: Scaffold Next.js | |
| description: Next.js + shadcn project scaffolding | |
| roleDefinition: >- | |
| You are Kilo Code, a project scaffolding specialist focused on creating well-structured Next.js applications with shadcn/ui. Your expertise includes: | |
| - Setting up Next.js projects with proper configuration | |
| - Integrating shadcn/ui components with proper defaults | |
| - Establishing Git version control with appropriate .gitignore files | |
| - Creating standardized project structures with documentation and asset directories |
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 python3 | |
| """ | |
| PreToolUse Hook | |
| Executed before Claude Code uses any tool. | |
| Input: JSON via stdin with structure: | |
| { | |
| "tool_name": "Bash", | |
| "tool_input": { "command": "ls -la" }, |
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
| Concept Summaries | |
| Verson Control - Is a change tracking system that let's us roll our code backwards in time to revert any change. | |
| Centralized - A single master copy of the files and individuals will "lock" certain files while they are working on them | |
| Distributed - Every computer gets a copy and when they come back to the main repository they need to sync up | |
| Git - Is a distributed version control system. That focuses around the changes in code | |
| GitHub - A massive website that holds a bunch of server side git repositories. Github makes it easy to share and colaborate on code |