payment-screening

por nvidia

Verificar um pagamento de saída contra limites, sanções/listas de vigilância e verificações de duplicidade antes que um humano o libere.

npx skills add https://github.com/nvidia/nemoclaw-community --skill payment-screening

payment-screening

Use this skill when an operator asks you to check, validate, or screen an outbound payment (wire or ACH) before release.

This skill is read-only. It does not release, send, or settle anything. Release requires a human approver — see the release-packet skill.

Inputs

  • Queue: an ISO 20022 pain.001 credit-transfer file (data/payment-queue.json). The screener flattens every CdtTrfTxInf transaction and screens it by EndToEndId.
  • Sanctions: a bundled, dated OFAC SDN public-data fixture (data/ofac-sdn-fixture.json). It contains three real public SDN records selected for deterministic demonstration; it is not a complete sanctions list. Only the payments are synthetic.

Procedure

1. Screen the payment

Run the screener against a payment ID from the queue (omit --id to screen the whole batch):

/usr/bin/python3 /sandbox/.hermes/skills/payment-screening/scripts/screen_payment.py \
  --queue /sandbox/.hermes/skills/payment-screening/data/payment-queue.json \
  --sanctions /sandbox/.hermes/skills/payment-screening/data/ofac-sdn-fixture.json \
  --id WIRE-1007

The screener returns structured JSON with a decision (CLEARED_FOR_REVIEW or HOLD) and a per-check breakdown. Sanctions hits cite the matched OFAC SDN name and program.

2. Report the result

Use this structure:

  • Decision: CLEARED_FOR_REVIEW or HOLD
  • Checks: limit · sanctions · duplicate · beneficiary (pass/fail each)
  • Exceptions: the exact rule that fired, in plain language
  • Next step: what the human checker should verify before releasing
  • Caveat: screening is support; the human approver is accountable

3. On HOLD

Never recommend overriding a hold. State the rule, and route to the appropriate human queue (sanctions analyst, treasury, compliance).

Pitfalls

  • Do not claim a payment passed if any check failed.
  • Do not invent a sanctions match or clear a real one — report what the OFAC SDN fixture returned, with the matched name and program.
  • Do not release the payment. You cannot reach the payment rail, and you must not imply that you can.

Mais skills de nvidia

compileiq-debug
nvidia
Use quando algo está errado: Search() trava, todas as avaliações retornam INVALID_SCORE, as pontuações não estão melhorando, toda configuração retorna o mesmo número, erros de ptxas…
create-github-pr
nvidia
Crie pull requests do GitHub usando a CLI gh. Use quando o usuário quiser criar um novo PR, enviar código para revisão ou abrir um pull request. Palavras-chave de acionamento -…
nemoclaw-maintainer-cross-issue-sweep
nvidia
Escaneia outras issues abertas para encontrar aquelas que um determinado PR pode também corrigir ou quebrar acidentalmente. Gera oportunidades de correção adjacentes e riscos de contradição com arquivo:linha…
fhir-basics
nvidia
Ensina aos agentes como funcionam as APIs FHIR R4, quais recursos estão disponíveis, como consultá-los com parâmetros de busca e como analisar corretamente todos os formatos de resposta…
compileiq-validate-result
nvidia
Use APÓS a conclusão de uma Pesquisa e ANTES de reivindicar qualquer aceleração ou enviar um ACF. Carrega o CSV dump_results, extrai os K melhores candidatos (objetivo único)…
changelog-audit
nvidia
Auditar o CHANGELOG.md do Warp antes de um lançamento: recuperar entradas perdidas, ordenar por impacto ao usuário, refinar a linguagem das entradas, ajustar quebras de linha e (no modo de branch de lançamento) incrementar comparação…
maintain-dynamic-plugins
nvidia
Manter carregadores de plugins dinâmicos do NeMo Relay, manifestos, SDKs nativos em Rust, protocolo de worker gRPC, SDK de worker Python, documentação, testes e cobertura do fluxo de lançamento
dgx-diagnose
nvidia
Diagnostique problemas comuns do DGX Station GB300 — falhas de CUDA, direcionamento incorreto de GPU, bugs de contêiner vLLM/SGLang, problemas de estado MIG, erros de NVLink/Fabric Manager,…