Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/dev-lou/pixelpilot/uiux-biometric-authgit clone --depth 1 https://github.com/dev-lou/PixelPilotWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.04663 | $0.04663 |
| Opus 5 | $0.02331 | $0.02331 |
| Sonnet 5 | $0.00933 | $0.00933 |
| Haiku 4.5 | $0.00466 | $0.00466 |
Grade B, and why
PixelPilot uiux-biometric-auth.instructions.md scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks the agent to reveal its instructionsmediumSystem prompt leakage
Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.
// Show prompt after 3rd password login, if no passkey How it starts
The opening of the file, as written. The whole thing — 748 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Biometric Authentication UI
Passwords are dying. This file covers WebAuthn/passkeys, biometric prompts, passwordless flows, and how to design authentication that's both more secure AND easier to use than passwords.
CRITICAL RULES
- Always provide fallback — Not all devices support biometrics.
- Explain benefits — Users need to understand why passkeys are better.
- Don't force — Offer passkeys, don't mandate them.
- Clear error states — Biometric failures need specific guidance.
- Cross-device — Handle device-specific UI gracefully.
WEBAUTHN BASICS
Support Detection
// webauthn.ts
export async function checkWebAuthnSupport(): Promise<{
available: boolean;
platformAuth: boolean; // Built-in (fingerprint, Face ID)
crossPlatform: boolean; // Security keys
}> {
if (!window.PublicKeyCredential) {
return { available: false, platformAuth: false, crossPlatform: false };
}
const available = true;
// Check for platform authenticator (Touch ID, Face ID, Windows Hello)
let platformAuth = false;
try {
platformAuth = await PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable();
} catch {}
// Check for conditional mediation (autofill passkeys)
let conditionalMediation = false;
try {
conditionalMediation = await PublicKeyCredential.isConditionalMediationAvailable?.() ?? false;
} catch {}
return {
available,
platformAuth,
crossPlatform: true, // Security keys always available if WebAuthn is
};
}
Registration Flow
// passkeyRegistration.ts
export async function registerPasskey(
username: string,
displayName: string
): Promise<{ success: boolean; error?: string }> {
try {
// Get challenge from server
const options = await fetch('/api/webauthn/register-options', {
method: 'POST',
body: JSON.stringify({ username }),
}).then(r => r.json());
// Create credential
const credential = await navigator.credentials.create({
publicKey: {
...options,
challenge: base64ToBuffer(options.challenge),
user: {
...options.user,
id: base64ToBuffer(options.user.id),
},
},
}) as PublicKeyCredential;
// Send to server for verification
const response = await fetch('/api/webauthn/register-verify', {
method: 'POST',
body: JSON.stringify({
id: credential.id,
rawId: bufferToBase64(credential.rawId),
response: {
clientDataJSON: bufferToBase64(credential.response.clientDataJSON),
attestationObject: bufferToBase64(
(credential.response as AuthenticatorAttestationResponse).attestationObject
),
},
type: credential.type,
}),
});
if (!response.ok) {
throw new Error('Registration failed');
}
return { success: true };
} catch (error: any) {
return {
success: false,
error: getReadableError(error),
};
}
}
function getReadableError(error: Error): string {
if (error.name === 'NotAllowedError') {
return 'Registration was cancelled or timed out. Please try again.';
}
if (error.name === 'InvalidStateError') {
return 'A passkey for this account already exists on this device.';
}
if (error.name === 'NotSupportedError') {
return 'Your device doesn\'t support passkeys. Please use a password instead.';
}
return 'Something went wrong. Please try again or use a password.';
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 748 lines · 4,663 tokens per session scan B 7fea3d946dd9
PixelPilot uiux-biometric-auth.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 4,663 tokens to every session, about $0.0233 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
arai CLAUDE.md
Instructions for taniwhaai/arai, covering claude.md — arai, commands, architecture, prompt-collector module (src/promptcollector.rs) and extending the match pipeline.
healthcare-agents AGENTS.md
Instructions for ajhcs/healthcare-agents, covering healthcare agents repository instructions, repository map, git workflow and self-improvement loop.
arai AGENTS.md
Instructions for taniwhaai/arai, covering agents.md — arai, core discipline (non-negotiable), taniwha / subagent rules, work style and tool usage.
shenzjd-skills CLAUDE.md
Claude Code instructions for wu529778790/shenzjd-skills, covering claude.md, project overview, commands, a single skill's unit test and architecture.
ui-ux-design-pro-skill CLAUDE.md
Instructions for saifyxpro/ui-ux-design-pro-skill, covering project overview, cli commands, full design system generation (markdown output), search across all databases (sub-50ms) and audit ui code quality.
syncai copilot-instructions.md
Instructions for dmtrkzntsv/syncai, covering claude.md, build & run, architecture, lifecycle and identify is the routing decision.