Hand off what you built
Delivery with evidence, not just a diff.
Implement account security, then annotate what changed for me.
A little more peace of mind.
Three implemented controls to inspect before accepting a handoff.
Other sessions
Laptop · Brooklyn · Last active 2 hours ago
Two-factor authentication
Inspect password requirements, session revocation and the setup step. Authentication, persistence and actual 2FA enrollment are follow-ups outside this local fixture.
Inspect plan, source & verification
Actual schema-valid React plan. Targets refer to source refs; this JSON is never executed by the drawing runtime. After installing @funsaized/stet, copy to annotation-plan.json and run ./node_modules/.bin/stet validate annotation-plan.json --json.
{
"version": 1,
"framework": "react",
"intent": "Hand off three implemented account-security controls, with explicit local-demo limits.",
"annotations": [
{
"id": "password",
"primitive": "highlight",
"targets": [
{
"strategy": "ref",
"file": "website/src/showcase/Security.tsx",
"locator": "requirements",
"description": "Password requirements copy"
}
],
"options": {
"seed": 51,
"description": "Implemented: minimum twelve characters, displayed before submit.",
"fill": "#e3b937"
}
},
{
"id": "session",
"primitive": "circle",
"targets": [
{
"strategy": "ref",
"file": "website/src/showcase/Security.tsx",
"locator": "revoke",
"description": "Revoke demo session control"
}
],
"options": {
"seed": 52,
"description": "Implemented: revoke this demo session.",
"stroke": "#426650"
}
},
{
"id": "two-factor",
"primitive": "underline",
"targets": [
{
"strategy": "ref",
"file": "website/src/showcase/Security.tsx",
"locator": "setup",
"description": "Two-factor setup control"
}
],
"options": {
"seed": 53,
"description": "Implemented: reveal a local two-factor setup step. No server enrollment.",
"stroke": "#416ba0"
}
}
]
}