developer-delphi-to-fpc-horse-basic-auth — for Claude Code developer-delphi-to-fpc-horse-basic-auth, SkillsORM, community, for Claude Code, ide skills, Authorization: Basic, developer-delphi-to-fpc-horse-jwt, developer-delphi-to-fpc-horse-security, HorseBasicAuthentication(callback), Header(value)

v1.0.0

Sobre este Skill

Cenario recomendado: Ideal for AI agents that need developer-delphi-to-fpc-horse-basic-auth. Resumo localizado: developer-delphi-to-fpc-horse-basic-auth helps AI agents handle repository-specific developer workflows with documented implementation details.

Recursos

developer-delphi-to-fpc-horse-basic-auth
Versão interna (ficheiro)
Política .cursor/VERSION.md
Responsabilidade única
Middleware de autenticação HTTP Basic (cabeçalho Authorization: Basic ...) para Horse.

# Tópicos principais

cslsolucoes cslsolucoes
[1]
[0]
Atualizado: 4/27/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Cenario recomendado: Ideal for AI agents that need developer-delphi-to-fpc-horse-basic-auth. Resumo localizado: developer-delphi-to-fpc-horse-basic-auth helps AI agents handle repository-specific developer workflows with documented implementation details.

Por que usar essa habilidade

Recomendacao: developer-delphi-to-fpc-horse-basic-auth helps agents developer-delphi-to-fpc-horse-basic-auth. developer-delphi-to-fpc-horse-basic-auth helps AI agents handle repository-specific developer workflows with

Melhor para

Cenario recomendado: Ideal for AI agents that need developer-delphi-to-fpc-horse-basic-auth.

Casos de Uso Práticos for developer-delphi-to-fpc-horse-basic-auth

Caso de uso: Applying developer-delphi-to-fpc-horse-basic-auth
Caso de uso: Applying Versão interna (ficheiro)
Caso de uso: Applying Política .cursor/VERSION.md

! Segurança e Limitações

  • Limitacao: Requires repository-specific context from the skill documentation
  • Limitacao: Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Demo Labs

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ e etapas de instalação

These questions and steps mirror the structured data on this page for better search understanding.

? Perguntas frequentes

O que é developer-delphi-to-fpc-horse-basic-auth?

Cenario recomendado: Ideal for AI agents that need developer-delphi-to-fpc-horse-basic-auth. Resumo localizado: developer-delphi-to-fpc-horse-basic-auth helps AI agents handle repository-specific developer workflows with documented implementation details.

Como instalar developer-delphi-to-fpc-horse-basic-auth?

Execute o comando: npx killer-skills add cslsolucoes/SkillsORM/developer-delphi-to-fpc-horse-basic-auth. Ele funciona com Cursor, Windsurf, VS Code, Claude Code e mais de 19 outros IDEs.

Quais são os casos de uso de developer-delphi-to-fpc-horse-basic-auth?

Os principais casos de uso incluem: Caso de uso: Applying developer-delphi-to-fpc-horse-basic-auth, Caso de uso: Applying Versão interna (ficheiro), Caso de uso: Applying Política .cursor/VERSION.md.

Quais IDEs são compatíveis com developer-delphi-to-fpc-horse-basic-auth?

Esta skill é compatível com Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use a CLI do Killer-Skills para uma instalação unificada.

developer-delphi-to-fpc-horse-basic-auth tem limitações?

Limitacao: Requires repository-specific context from the skill documentation. Limitacao: Works best when the underlying tools and dependencies are already configured.

Como instalar este skill

  1. 1. Abra o terminal

    Abra o terminal ou linha de comando no diretório do projeto.

  2. 2. Execute o comando de instalação

    Execute: npx killer-skills add cslsolucoes/SkillsORM/developer-delphi-to-fpc-horse-basic-auth. A CLI detectará sua IDE ou agente automaticamente e configurará a skill.

  3. 3. Comece a usar o skill

    O skill já está ativo. Seu agente de IA pode usar developer-delphi-to-fpc-horse-basic-auth imediatamente no projeto atual.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

developer-delphi-to-fpc-horse-basic-auth

Install developer-delphi-to-fpc-horse-basic-auth, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup...

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

developer-delphi-to-fpc-horse-basic-auth

Versão interna (ficheiro)

CampoValor
FileVersion1.0.0
Política.cursor/VERSION.md

Responsabilidade única

Middleware de autenticação HTTP Basic (cabeçalho Authorization: Basic ...) para Horse.

When to use

  • Validar username/password via cabeçalho Basic Auth
  • Proteger rotas com autenticação simples
  • Integração servidor-a-servidor (Basic Auth para APIs internas)

When NOT to use

  • Autenticação JWT Bearer → developer-delphi-to-fpc-horse-jwt
  • Geração/validação de tokens JWT → developer-delphi-to-fpc-horse-security

Documento canônico

app/package/docs/pacotes/horse-basic-auth.md


HorseBasicAuthentication — sobrecargas

SobrecargaDescrição
HorseBasicAuthentication(callback)Middleware com validação custom
HorseBasicAuthentication(callback, config)Com configuração avançada

IHorseBasicAuthenticationConfig — configuração

MétodoDescrição
NewCria instância
Header(value)Cabeçalho da credencial (padrão: Authorization)
RealmMessage(value)Mensagem do realm no challenge 401
SkipRoutes([...])Rotas que ignoram autenticação

Exemplos

Global — todas as rotas

delphi
1uses Horse, Horse.BasicAuthentication; 2 3begin 4 THorse.Use(HorseBasicAuthentication( 5 function(const AUsername, APassword: string): Boolean 6 begin 7 Result := AUsername.Equals('user') and APassword.Equals('password'); 8 end)); 9 10 THorse.Get('/ping', 11 procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc) 12 begin 13 Res.Send('pong'); 14 end); 15 16 THorse.Listen(9000); 17end.

Com configuração completa

delphi
1THorse.Use(HorseBasicAuthentication( 2 ValidarCredenciais, 3 THorseBasicAuthenticationConfig.New 4 .Header('Authorization') 5 .RealmMessage('GestorERP API') 6 .SkipRoutes(['/health', '/swagger/doc/html', '/auth/refresh']) 7));

Validação contra base de dados

delphi
1function ValidarCredenciais(const AUsername, APassword: string): Boolean; 2var LQuery: TFDQuery; 3begin 4 Result := False; 5 LQuery := TFDQuery.Create(nil); 6 try 7 LQuery.Connection := DM.Conexao; 8 LQuery.SQL.Text := 9 'SELECT 1 FROM usuarios WHERE login = :u AND senha_hash = :p AND ativo = 1'; 10 LQuery.ParamByName('u').AsString := AUsername; 11 LQuery.ParamByName('p').AsString := HashSenha(APassword); 12 LQuery.Open; 13 Result := not LQuery.IsEmpty; 14 finally 15 LQuery.Free; 16 end; 17end;

Proteção por rota (AddCallback)

delphi
1// Rota pública 2THorse.Get('/health', 3 procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc) 4 begin 5 Res.Send('ok'); 6 end); 7 8// Rotas privadas com Basic Auth 9THorse 10 .AddCallback(HorseBasicAuthentication(ValidarCredenciais)) 11 .Get('/admin/report', ProcRelatorio);

Lazarus / FPC

delphi
1{$MODE DELPHI}{$H+} 2uses Horse, Horse.BasicAuthentication, SysUtils; 3 4function DoLogin(const AUsername, APassword: string): Boolean; 5begin 6 Result := AUsername.Equals('user') and APassword.Equals('password'); 7end; 8 9begin 10 THorse.Use(HorseBasicAuthentication(DoLogin)); 11 THorse.Get('/ping', GetPing); 12 THorse.Listen(9000); 13end.

Notas GestorERP

  • Basic Auth apenas em canais HTTPS — nunca em HTTP puro
  • Hashear passwords com BCrypt ou SHA-256+salt (nunca plaintext)
  • Preferir JWT para sessões longas; Basic Auth para integrações servidor-a-servidor
  • unit a usar: Horse.BasicAuthentication

Changelog (este arquivo)

  • 1.0.0 (12/04/2026): Criação — skill middleware Basic Auth.

Habilidades Relacionadas

Looking for an alternative to developer-delphi-to-fpc-horse-basic-auth or another community skill for your workflow? Explore these related open-source skills.

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumo localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resumo localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resumo localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumo localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desenvolvedor