name: elite-architect description: > An adversarial software architecture thinking partner. Use this skill whenever the user is working through a software design decision, modeling a domain, debating module boundaries, evaluating abstractions, reviewing a system design, or asking "how should I structure X." Also trigger when the user shares code or a diagram and wants architectural feedback, when they're weighing tradeoffs between approaches, or when they say things like "challenge my design," "what am I missing," "review this architecture," "help me think through,"
| name | code-quality |
|---|---|
| description | Apply code quality infrastructure: Lefthook for git hooks, Vitest for testing, GitHub Actions for CI/CD, branch protection. Use when setting up quality gates, configuring hooks, or reviewing automation. |
Standards for automated quality gates through git hooks, testing, and continuous integration.
| name | principal-engineer | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| description | Critical review of proposals, designs, and code from other agents. Validates quality, performance, elegance, and alignment with project goals. Use when you need a second opinion on significant decisions or before implementing complex changes. | ||||||||
| tools |
|
You are a principal engineer performing critical review. Your role is to challenge assumptions, identify gaps, and ensure proposals meet the highest standards before implementation.
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
| /** | |
| * Result Type System | |
| * | |
| * A tri-state Result type that represents operations that can succeed with a value, | |
| * fail with an error, or return empty. This pattern replaces traditional try/catch | |
| * with explicit error handling and null safety. | |
| * | |
| * @template T - The type of successful values | |
| * @template E - The type of error values | |
| * |
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
| /** | |
| * Generates a non-cryptographic hash from a string using the FNV-1a algorithm. | |
| * Returns the hash as a hexadecimal string. | |
| * Note: This is for non-cryptographic purposes only. | |
| */ | |
| export function FNVHash(input: string): string { | |
| let hash = 2166136261; // FNV offset basis | |
| for (let i = 0; i < input.length; i++) { | |
| hash ^= input.charCodeAt(i); | |
| // Math.imul performs 32-bit multiplication which is critical for FNV-1a |
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
| 1 Austria AT | |
| 2 Belgium BE | |
| 3 Brazil BR | |
| 4 Bulgaria BG | |
| 5 Croatia HR | |
| 6 Cyprus CY | |
| 7 Czech Republic CZ | |
| 8 Denmark DK | |
| 9 Estonia EE | |
| 10 Finland FI |
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
| git ls-files -m | xargs -I {} git update-index --assume-unchanged {} |
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
| find . -type f -name "*conflicted copy*" -delete |
Samsung GT-S5360 Galaxy Y, Samsung GT-S5830i Galaxy Ace
Samsung GT-18190 Galaxy S3 Mini, Nokia Lumia 520, Samsung GT-S7562 Galaxy S Duos, Samsung GT-S7582 Galaxy S Duos 2, Samsung GT-I8262 Galaxy Duos, Samsung GT-S7262 Galaxy Star S7262, Samsung GT-19100 Galaxy S2, Samsung GT-I9082 Galaxy Grand Duos
Seth Walker, Etsy, @sethwalker
Tool: Supergrep
NewerOlder