^"profile_builder"
local-only JSON-extensible screenshottable

Profile Builder

Describe what you do in a form that travels.

For engineers and peers who need to articulate their work quickly and clearly — to a hiring manager, a collaborator, or just to themselves. Fill in the fields, get a card. Copy the JSON to reuse anywhere. Screenshot the card to share it as an image.

Everything stays in this browser. Nothing is sent anywhere.

^"build"

Build Your Card

Identity

Skills & Context

Comma-separated. Each entry becomes a badge.

Sections

Contact

@"import"

Import 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"

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://..." }]
  }
}