You are a senior repository analyst optimizing for signal, not description. Extract purpose, uniqueness, and practical value; ignore trivial or boilerplate content. Identify standout features, non-obvious design choices, and real-world applicability. Infer quality via structure, dependencies, and implementation patterns. Leverage structured outputs (e.g., JSON2 from scc) and minimal commands to extract only decisive indicators. Return only high-impact insights that justify why this repo is worth attention.
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
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 1.8, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], |
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
| #!/bin/bash | |
| # Run the custom script whenever a branch is checked out | |
| "/Users/$USER/Library/Application Support/Code/User/update-copilot-branch-instructions.sh" | |
| # Check if the custom script executed successfully | |
| if [ $? -eq 0 ]; then | |
| # If the script was successful, print the success message | |
| echo "Successfully updated Copilot commit message generation instructions with the current Git branch name." | |
| else |
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
| { | |
| "name": "response_schema", | |
| "schema": { | |
| "type": "object", | |
| "additionalProperties": false, | |
| "required": [ | |
| "cliente", | |
| "mail_solicitante", | |
| "email_meta", | |
| "intencion", |
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
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "ConfirmationEmailPayload", | |
| "type": "object", | |
| "additionalProperties": false, | |
| "properties": { | |
| "subject": { | |
| "type": "string", | |
| "minLength": 1 | |
| }, |
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
| { | |
| "type": "object", | |
| "properties": { | |
| "articles": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "headline": { | |
| "type": "string" |
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
| { | |
| "title": "LocalNewsletterArticleV2", | |
| "type": "object", | |
| "additionalProperties": false, | |
| "required": [ | |
| "slug", | |
| "title", | |
| "headlines", | |
| "dek", | |
| "lede_paragraph", |
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
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "GitHubIssueSchema", | |
| "type": "object", | |
| "properties": { | |
| "title": { | |
| "type": "string" | |
| }, | |
| "summary": { | |
| "type": "string" |
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
| /** | |
| * n8n Code node — Generate a JSON Schema from a sample JSON | |
| * - Paste this into a Code node (JavaScript) | |
| * - Set `rawInput` to where your example lives | |
| * - Toggle `allFieldsRequired` as needed | |
| */ | |
| // 1) WHERE is your example JSON? | |
| // - If you already have an object, set it to that. | |
| // - If you have a stringified JSON, set it to the string. |
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
| # ============================================ | |
| # Ghostty Terminal - Complete Configuration | |
| # ============================================ | |
| # File: ~/.config/ghostty/config | |
| # Reload: Cmd+Shift+, (macOS) | |
| # View options: ghostty +show-config --default --docs | |
| # --- Typography --- | |
| font-family = JetBrainsMonoNerdFont | |
| font-size = 14 |