| name | react-review | ||
|---|---|---|---|
| description | Expert React/TypeScript review for any spec-kit stage — specs, plans, tasks, or code — covering Redux state, async effects and races, feature-flag rollout, and Superset-specific frontend conventions and best practices. | ||
| compatibility | Works on any git repo; uses .specify/ paths for spec/plan/task review when present | ||
| metadata |
|
| name | tidy-first-review |
|---|---|
| description | Code review in the style of Kent Beck — uses the 4 Rules of Simple Design, suggests small "tidyings" from "Tidy First?", and frames changes through TDD's red-green-refactor lens. Empathetic, exploratory, leads with questions rather than pronouncements; biases toward small reversible steps over large refactors. |
| disable-model-invocation | true |
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 | |
| FILE_NAME_PATTERN="index.ts" | |
| git branch --format="%(refname:short)" | xargs -I {} sh -c 'git ls-tree -r --name-only "{}" | grep -q "${FILE_NAME_PATTERN}" && echo "File exists in {}"' |
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 | |
| # 1) determine which files have been modified from master in the current branch | |
| # 2) create a new, temporary branch from master | |
| # 3) run prettier on the modified files in master | |
| # 4) commit these to the temporary branch | |
| # 5) print some instructions on how to rebase the current branch onto the temporary branch. | |
| set -eo pipefail |
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 | |
| ARGOCD_NAMESPACE="argocd" | |
| ARGOCD_ADMIN_PORT="8080" | |
| check_argocd_installed() { | |
| if command -v argocd >/dev/null 2>&1; then | |
| echo "- Argo CD CLI is installed." | |
| else | |
| echo "*** Argo CD CLI is not installed." |
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
| openapi: 3.0.0 | |
| paths: | |
| /: | |
| get: | |
| operationId: AppController_getHello | |
| parameters: [] | |
| responses: | |
| '200': | |
| description: '' | |
| /tracks/{id}: |
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
| # NVM | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm | |
| [ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion | |
| # NVM INTEGRATION | |
| # https://github.com/nvm-sh/nvm#deeper-shell-integration | |
| autoload -U add-zsh-hook |
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
| function Get-NGrokHostName | |
| { | |
| Param( | |
| [Parameter(Mandatory = $True)][String]$TunnelName | |
| ) | |
| [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
| $response = Invoke-WebRequest 'http://127.0.0.1:4040/api/tunnels' | |
| $obj = $response.Content | ConvertFrom-Json |
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
| from decimal import Decimal | |
| from functools import reduce | |
| from django.db import connection, reset_queries | |
| from apps.accounts.models import User | |
| me = User.objects.get(email='test@example.org') | |
| iterations = 1000 | |
| def test_save(iterations1 = 1000): | |
| reset_queries() | |
| for i in range(iterations1): |
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
| # Kubernetes deployment for teamcity server with three agents, each with mssql/development on azure. | |
| # This assumes a two-node cluster | |
| --- | |
| apiVersion: v1 | |
| kind: PersistentVolumeClaim | |
| metadata: | |
| name: teamcity-server-premium-logs-disk | |
| spec: | |
| accessModes: | |
| # https://docs.microsoft.com/en-us/azure/aks/azure-disks-dynamic-pv |
NewerOlder