Profile Builder
Describe what you do in a form that travels.
This tool is for engineers, collaborators, and peers who need to articulate their work quickly and clearly. Fill in the fields, get a card, copy the JSON, or screenshot the result.
Everything stays in this browser. Nothing is sent anywhere.
a profile should be portable, screenshottable, and easy to revise.
you need a clear work summary for a hiring manager, collaborator, or yourself.
a reusable card, a JSON profile, and a cleaner description of what you do.
Build your profile card
Identity
Skills & Context
Comma-separated. Each entry becomes a badge.
Sections
Contact
Import or restore JSON
Paste a previously exported profile JSON to restore it. The card format is stable — a JSON exported today will still work here later.
Schema reference
The profile card is driven by a plain JSON object. Any page that imports the renderProfileCard function can render one. The format is intentionally stable.
{
"header": {
"name": "your name",
"role": "your role",
"tagline": "one sentence",
"status": "available | consulting | open | building | looking",
"sigil": "^ | ~ | @ | ?[ | > | !"
},
"badges": [
{ "cluster": "stack | domain | approach | context | role", "value": "skill" }
],
"sections": [
{ "heading": "What I bring", "body": "...", "operator": "^" },
{ "heading": "Context", "body": "...", "operator": "~" }
],
"footer": {
"contact": "email or link",
"links": [{ "label": "GitHub", "href": "https://..." }]
}
}