Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosWelcome to GitHub Copilot Day: the future of agentic engineering(22.09.2026 um 20:00 Uhr)
YouTube Security VideosMicrosoft Mechanics: What Can a Copilot Agent Actually Read?(22.09.2026 um 20:27 Uhr)
Unix & Linux ServerPeppermintOS Is Moving From Xorg to XLibre to Avoid Wayland(22.09.2026 um 19:58 Uhr)
Sicherheitslücken (CVE)USN-8803-1: Sudo vulnerability(22.09.2026 um 16:15 Uhr)
Sichere ProgrammierungClaude Opus 5.5 is now available in GitHub Copilot(22.09.2026 um 19:10 Uhr)
Sichere ProgrammierungColab is now part of your Google AI plan(22.09.2026 um 20:51 Uhr)
Sichere ProgrammierungThe Hidden Production Risks of Third-Party SDKs(22.09.2026 um 20:00 Uhr)
YouTube Security VideosWelcome to GitHub Copilot Day: the future of agentic engineering(22.09.2026 um 20:00 Uhr)
YouTube Security VideosMicrosoft Mechanics: What Can a Copilot Agent Actually Read?(22.09.2026 um 20:27 Uhr)
Unix & Linux ServerPeppermintOS Is Moving From Xorg to XLibre to Avoid Wayland(22.09.2026 um 19:58 Uhr)
Sicherheitslücken (CVE)USN-8803-1: Sudo vulnerability(22.09.2026 um 16:15 Uhr)
Sichere ProgrammierungClaude Opus 5.5 is now available in GitHub Copilot(22.09.2026 um 19:10 Uhr)
Sichere ProgrammierungColab is now part of your Google AI plan(22.09.2026 um 20:51 Uhr)
Sichere ProgrammierungThe Hidden Production Risks of Third-Party SDKs(22.09.2026 um 20:00 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

👻 Building a Haunted Portfolio with Kiro: A Kiroween 2025 Journey

👻 The Challenge For Kiroween 2025, I set out to build something genuinely spooky: a Halloween-themed developer portfolio that would be memorable, polished, and actually terrifying. Not just dark colors and a pumpkin emoji — I wanted ligh…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




👻 The Challenge



For Kiroween 2025, I set out to build something genuinely spooky: a Halloween-themed developer portfolio that would be memorable, polished, and actually terrifying. Not just dark colors and a pumpkin emoji — I wanted lightning flashes, ghost cursors, jump scares, and a Japanese horror girl lurking in the shadows.

The result? 17 distinct horror effects, a fully functional portfolio, and a development experience that felt like having a supernatural coding companion.







🎃 What I Built



The Haunted Portfolio features four themed sections:





  • The Summoning (Landing) — Parallax graveyard, blood moon, floating spirits, glitching text


  • The Séance (About) — Crystal ball bio reveal and tarot card skill showcase


  • The Graveyard (Projects) — Tombstone project cards that rise from the grave


  • Contact the Spirit (Contact) — An interactive Ouija board contact form



Plus global effects that haunt every page:




  • Ghost cursor trails

  • Random lightning

  • Blood drips

  • Eyes that follow your mouse

  • Optional jump scares 👀







🔮 The Kiro Difference: Spec-Driven Development



Instead of diving straight into code, I started with Kiro's spec system. This changed everything.





📜 The Three Sacred Documents







1. requirements.md



Every feature got a requirement ID:





5. Global Effects





  • REQ-5.1: Custom spooky cursor (skull or ghost)


  • REQ-5.2: Cursor trail with ghost particles


  • REQ-5.3: Toggleable jump scares


  • REQ-5.4: Flickering light effect







2. design.md



Architecture, color palette, component specs:




blood-red: #8B0000  
pumpkin-orange: #FF6600
ghost-white: #F8F8FF
midnight-black: #0D0D0D
phantom-purple: #4B0082












3. tasks.md



A living checklist across 7 phases:






Phase 2: Core Effects System




  • [x] Task 2.1: GhostCursor component

  • [x] Task 2.2: ParticleSystem for fog/mist

  • [x] Task 2.3: Lightning flash effect



Because of this system, Kiro already knew the full vision before writing code.









👻 The Most Impressive Code Generation



The GhostCursor component blew my mind. One prompt produced this:




export function GhostCursor() {
const { x, y } = useMousePosition();
const [trails, setTrails] = useState<Trail[]>([]);

useEffect(() => {
const newTrail: Trail = { id: Date.now(), x, y };
setTrails((prev) => [...prev.slice(-6), newTrail]);
}, [x, y]);

return (
<div className="pointer-events-none fixed inset-0 z-[9999]">
<AnimatePresence>
{trails.map((trail) => (
<motion.div
key={trail.id}
initial={{ opacity: 0.5, scale: 0.4 }}
animate={{ opacity: 0, scale: 0.2 }}
exit={{ opacity: 0 }}
className="absolute"
style={{ left: trail.x - 8, top: trail.y - 8 }}
>
{/* SVG ghost */}
</motion.div>
))}
</AnimatePresence>

{/* Main cursor */}
<motion.div
animate={{ x: x - 12, y: y - 12 }}
transition={{ type: 'spring', damping: 30, stiffness: 200 }}
>
{/* Glowing ghost */}
</motion.div>
</div>
);
}






Mobile detection, physics, z-indexing — all correct on the first try.









🕷️ Agent Hooks: Automation with Personality






Accessibility Guardian






{
"name": "Accessibility Guardian",
"trigger": { "type": "onSave", "pattern": "**/*.tsx" },
"action": {
"type": "prompt",
"prompt": "Review the saved file for accessibility concerns. Ensure animations respect prefers-reduced-motion…"
}
}






Automatically ensured:




  • Reduced motion support

  • ARIA labels

  • Proper contrast









Spooky Commit Messages






{
"name": "Spooky Commit Messages",
"trigger": { "type": "manual" },
"action": {
"prompt": "Generate a Halloween-themed git commit message with emojis like 🎃👻💀🦇🕷️"
}
}






Examples:




  • 👻 Summoned the ghost cursor from the void

  • 🦇 Lightning now strikes with double intensity









📜 Steering: No Repetition, Consistent Code



The coding-standards.md file used:




inclusion: always






Meaning every generation automatically followed:






Animation Rules




  • Always use Framer Motion

  • Respect prefers-reduced-motion

  • Smooth transforms

  • Creepy custom easing



Zero repetition. Zero mismatches. Perfect consistency.









🩸 The Creepy Details






👁️ CreepyEyes Component



Bloodshot eyes follow your cursor:




const angle = Math.atan2(mouseY - eyeRect.y, mouseX - eyeRect.x);
const distance = Math.min(eye.size * 0.2, 8);
const pupilX = Math.cos(angle) * distance;
const pupilY = Math.sin(angle) * distance;






Random blinking, random positions. Pure nightmare.









👧 HorrorGirl Component



A Sadako-style figure rises slowly from the bottom of the screen.




  • Long black hair

  • One glowing red eye

  • Fades away after 3–5 seconds









💀 JumpScare System






const triggerScare = () => {
const delay = Math.random() * 45000 + 30000;
setTimeout(() => {
setIsActive(true);
setTimeout(() => setIsActive(false), 400);
triggerScare();
}, delay);
};






But:




  • Off by default

  • Respects reduced motion

  • User-toggleable



The right balance between spooky and safe.









🌙 Accessibility in a Horror Site



Yes — it can be done.




const { reducedMotion, jumpScaresEnabled, soundEnabled } = useSpooky();

if (reducedMotion) return null;
if (!jumpScaresEnabled) return null;







  • Full reduced-motion support

  • Sound off by default

  • Jump scares opt-in

  • Keyboard friendly









🎯 What I Learned





  1. Specs > Vibes
    Better structure = better AI output.


  2. Hooks matter
    Accessibility checks on every save were priceless.


  3. Steering eliminates repetition
    Say your standards once. Never again.


  4. Context is everything
    The more Kiro understood, the better the generation.









🦇 Try It Yourself



Source Code:

👉 https://github.com/Ark2044/haunted-portfolio



Live Demo:

👉 https://haunted-portfolio.netlify.app/



Built with 🖤 and dark magic for Kiroween 2025.

This post is part of the Kiroween Hackathon — created with Kiro’s spec-driven development, agent hooks, and steering documents.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten 👻 Building a Haunted Portfolio with Kiro: A Kiroween 2025 Journey

Thematisch verwandte Begriffe: Building, Haunted, Portfolio, with · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-77258 | MCP Atlassian is a Model Context Protocol (MCP) server for Atlassian pro…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick