왜, 어떻게 이걸 추적하게 됐는지는 https://www.stdy.blog/read-we-programmers/ 에 있습니다.
Record AI development context in /__prompts/ directory.
- After completing any project-related conversation (code changes, discussions, analysis, questions)
- Before the user leaves a conversation session
- For simple tasks: record immediately after task completion
- For complex tasks with TodoWrite: record before marking final todo as complete
- Even for CLAUDE.md modifications or meta-discussions about the project/rules
When a task requires building or modifying a user interface, you must use the tools available in the shadcn-ui MCP server.
When planning a UI build using shadcn:
- Discover Assets: First, use
list_components()andlist_blocks()to see all available assets in the MCP server. - Map Request to Assets: Analyze the user's request and map the required UI elements to the available components and blocks.
- Prioritize Blocks: You should prioritize using blocks (
get_block) wherever possible for common, complex UI patterns (e.g., login pages, calendars, dashboards). Blocks provide more structure and accelerate development. Use individual components (get_component) for smaller, more specific needs.
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
| --- | |
| description: | |
| globs: | |
| alwaysApply: true | |
| --- | |
| # TDD-Integrated Development Workflow | |
| ## Core Directive | |
| You are a senior software engineer AI assistant following Kent Beck's Test-Driven Development (TDD) and Tidy First principles. For EVERY task request, you MUST follow the three-phase TDD-integrated process below in exact order. Each phase must be completed with expert-level precision and detail. |
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
| Always follow the instructions in plan.md. When I say "go", find the next unmarked test in plan.md, implement the test, then implement only enough code to make that test pass. | |
| # ROLE AND EXPERTISE | |
| You are a senior software engineer who follows Kent Beck's Test-Driven Development (TDD) and Tidy First principles. Your purpose is to guide development following these methodologies precisely. | |
| # CORE DEVELOPMENT PRINCIPLES | |
| - Always follow the TDD cycle: Red → Green → Refactor | |
| - Write the simplest failing test first |
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
| # .bashrc version. Source: https://bagerbach.com/blog/how-i-use-claude-code#running-claude-code | |
| function ccv() { | |
| local env_vars=( | |
| "ENABLE_BACKGROUND_TASKS=true" | |
| "FORCE_AUTO_BACKGROUND_TASKS=true" | |
| "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=true" | |
| "CLAUDE_CODE_ENABLE_UNIFIED_READ_TOOL=true" | |
| ) | |
| local claude_args=() |
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
| javascript: let count = 0; let elemtnsLength = 0; function loadAllCommentsAndShowResolved() { let e = !1; let elements = Array.from( document.querySelectorAll("button, .btn-link.Details-content--closed") ); elementsLength = elements.length; elements.forEach((o) => { o.classList.contains("ajax-pagination-btn") ? o.hasAttribute("disabled") || "Load more…" !== o.innerText ? o.hasAttribute("disabled") && "Loading…" === o.innerText ? (console.log("waiting", o), (e = !0)) : console.log("unrecognized %27Load more%27 button", o) : (console.log("found", o), (e = !0), o.dispatchEvent( new MouseEvent("click", { bubbles: !0, cancelable: !0 }) )) : o.classList.contains("Details-content--closed") && "Show resolved" === o.innerText && o.dispatchEvent( new MouseEvent("click", { bubbles: !0, cancelable: !0 }) ); count++; }), e ? setTimeout(loadAllCommentsAndShowResolved, 200) : () => {}; } function moveToDiscussion() { if (location.hash === '') { return; } if (count !== elemtnsLength) { setTimeout(moveToDiscussion, 200); } le |
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
| module Url | |
| def self.integrations(source = nil, token = nil) | |
| @path = "/integrations" | |
| if source and token | |
| add source | |
| add token.key | |
| end | |
| Integrations.new(self) | |
| end |
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
| [core] | |
| excludesfile = /Users/spilist/.gitignore_global | |
| editor = "atom -n -w" | |
| eol = lf | |
| [difftool "sourcetree"] | |
| cmd = opendiff \"$LOCAL\" \"$REMOTE\" | |
| path = | |
| [mergetool "sourcetree"] | |
| cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\" | |
| trustExitCode = true |