The National Information Exchange Agency

Capability Key Generator

Drop in your résumé or describe your skills and contributions. The system synthesizes a Capability Key: a portrait of who you are and what you bring to the network.

Drop files here or browse

PDF, TXT, DOC, images: résumés, portfolios, transcripts, anything

or describe yourself
Privacy: Files you upload are processed to generate your Capability Key and are not stored beyond the generation session. If you choose "Publish to Directory," your name, title, and synthesized capabilities will be visible publicly. Transcripts and uploaded documents are never published; only the generated summary is shared.
Mobile App
Get The NIEA App
Your Capability Key lives in the app, available on iOS and Android
`); pw.document.close(); } catch { alert('Failed to generate PDF. Please try again.'); } } // Directory async function ckLoadDirectory() { const content = document.getElementById('ck-directory-content'); if (!content) return; content.innerHTML = `

Loading directory...

`; try { const res = await fetch(CK_DIR_API); const data = await res.json(); const items = data.items || []; if (items.length === 0) { content.innerHTML = `

No Capability Keys published yet.

Be the first to share yours!

`; } else { content.innerHTML = `
` + items.map(e => `
${e.name || 'Anonymous'}
${e.title ? `
${e.title}
` : ''}
`).join('') + `
`; } } catch { content.innerHTML = `
Failed to load directory. Please try again.
`; } } async function ckViewEntry(id) { const content = document.getElementById('ck-directory-content'); content.innerHTML = `
`; try { const res = await fetch(`${CK_DIR_API}/${id}`); const data = await res.json(); content.innerHTML = ` ${renderCardHTML(data)} `; } catch { content.innerHTML = `

Failed to load entry.

`; } }