FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
🇨🇱 Chile devs: Add RUN / RUT to the AI identity standard — Soulprint open source (30 min PR)
NewsWeb Development

🇨🇱 Chile devs: Add RUN / RUT to the AI identity standard — Soulprint open source (30 min PR)

via Dev.to WebdevManuel Felipe Arias Pineda1mo ago

Los agentes de IA toman decisiones a diario sin verificación. Soulprint lo resuelve: ZK Proofs, 100% local, código abierto. 🇨🇱 El RUN chileno no está en Soulprint. ¿Lo agregas? 🇨🇱 Chile: RUN/RUT Formato: 12345678-9 o 12345678-K . Algoritmo mod-11 para dígito verificador. // packages/verify-local/src/document/countries/CL.ts const CL : CountryVerifier = { countryCode : " CL " , countryName : " Chile " , documentTypes : [ " run " ], parse ( ocrText : string ): DocumentResult { const run = ocrText . match ( / (\d{7,8} - [\d K ]) / )?.[ 1 ] ?? "" ; return { valid : !! run , doc_number : run . replace ( " - " , "" ), country : " CL " }; }, validate ( docNumber : string ): NumberValidation { const clean = docNumber . replace ( / [ .- ] /g , "" ). toUpperCase (); const body = clean . slice ( 0 , - 1 ), dv = clean . slice ( - 1 ); let sum = 0 , mult = 2 ; for ( let i = body . length - 1 ; i >= 0 ; i -- ){ sum += Number ( body [ i ]) * mult ; mult = mult === 7 ? 2 : mult + 1 ; } const expected

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
15 views

Related Articles

npm vs Yarn vs pnpm vs Bun — Which Package Manager Should You Use in 2026?
News

npm vs Yarn vs pnpm vs Bun — Which Package Manager Should You Use in 2026?

Medium Programming • 1w ago

News

The Slow Collapse of MkDocs

Lobsters • 1w ago

News

All tests pass: a short story

Lobsters • 1w ago

The Emperor’s Monday
News

The Emperor’s Monday

Medium Programming • 1w ago

News

Hi

Medium Programming • 1w ago

Discover More Articles