<!DOCTYPE html><html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width"><link rel="icon" type="image/svg+xml" href="/favicon.svg"><meta name="generator" content="Astro v6.0.4"><title>Adam King — Generalized Specialist</title><link rel="canonical" href="https://adamking.me/"><meta name="description" content="Adam King — Generalized Specialist, founder of GenZen, counter-exploitation and autonomy restoration."><meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"><meta property="og:title" content="Adam King — Generalized Specialist"><meta property="og:type" content="website"><meta property="og:image" content="https://adamking.me/ak-portrait.png"><meta property="og:url" content="https://adamking.me/"><meta property="og:description" content="Adam King — Generalized Specialist, founder of GenZen, counter-exploitation and autonomy restoration."><meta property="og:site_name" content="Adam King"><meta property="og:locale" content="en_US"><meta property="og:image:alt" content="Adam King"><meta property="og:image:width" content="1200"><meta property="og:image:height" content="630"><link rel="alternate" type="application/rss+xml" href="https://adamking.me/rss.xml" title="Adam King — Writing"><link rel="sitemap" href="/sitemap-index.xml"><script type="application/ld+json">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://adamking.me/#/schema.org/WebSite","url":"https://adamking.me/","name":"Adam King","publisher":{"@id":"https://adamking.me/#/schema.org/Person"},"description":"Generalized specialist. Founder of GenZen — counter-exploitation and autonomy restoration.","inLanguage":"en-US","copyrightHolder":{"@id":"https://adamking.me/#/schema.org/Person"},"copyrightYear":2024},{"@type":"Person","@id":"https://adamking.me/#/schema.org/Person","name":"Adam King","url":"https://adamking.me/","image":{"@id":"https://adamking.me/#personlogo"},"jobTitle":"Founder & Lead Strategist","worksFor":{"@type":"Organization","name":"GenZen","url":"https://genzen.solutions"},"sameAs":["https://www.linkedin.com/in/-adamking/","https://www.instagram.com/adam_m_king/"],"knowsAbout":["Counter-exploitation","Autonomy restoration","Legacy protection","Agentic partnership design","Pattern recognition","Systems thinking","Behavioral profiling"]},{"@type":"ImageObject","@id":"https://adamking.me/#personlogo","url":"https://adamking.me/ak-portrait.png","contentUrl":"https://adamking.me/ak-portrait.png","width":800,"height":800},{"@type":"Blog","@id":"https://adamking.me/writing/#blog","name":"Writing — Adam King","description":"Writing on counter-exploitation, autonomy restoration, agentic partnership design, and the generalized specialist practice.","url":"https://adamking.me/writing/","publisher":{"@id":"https://adamking.me/#/schema.org/Person"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https://adamking.me/","url":"https://adamking.me/","name":"Adam King — Generalized Specialist","isPartOf":{"@id":"https://adamking.me/#/schema.org/WebSite"},"potentialAction":[{"@type":"ReadAction","target":["https://adamking.me/"]}],"about":{"@id":"https://adamking.me/#/schema.org/Person"},"inLanguage":"en-US","copyrightHolder":{"@id":"https://adamking.me/#/schema.org/Person"},"copyrightYear":2024}]}</script><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Mono:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet"><script>
			const theme = (() => {
				if (typeof localStorage !== 'undefined' && localStorage.getItem('theme')) {
					return localStorage.getItem('theme');
				}
				if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
					return 'dark';
				}
				return 'light';
			})();

			if (theme === 'dark') {
				document.documentElement.classList.add('dark');
			} else {
				document.documentElement.classList.remove('dark');
			}
		</script><link rel="stylesheet" href="/_astro/Footer.cqgckFA1.css"></head> <body class="antialiased font-sans min-h-screen relative selection:bg-black selection:text-white dark:selection:bg-white dark:selection:text-black"> <!-- Tactile Noise Overlay --> <div class="fixed inset-0 z-50 pointer-events-none opacity-[0.03] mix-blend-multiply dark:mix-blend-overlay dark:opacity-[0.04]"> <svg width="100%" height="100%"> <filter id="noise"> <feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"></feTurbulence> </filter> <rect width="100%" height="100%" filter="url(#noise)"></rect> </svg> </div>  <nav class="fixed top-0 left-0 right-0 z-40 px-6 py-5 transition-all duration-300 bg-theme-glass backdrop-blur-md text-theme" id="main-nav"> <div class="max-w-6xl mx-auto flex items-center justify-between"> <a href="/" class="font-mono text-sm tracking-[0.22em] uppercase text-theme whitespace-nowrap overflow-hidden" id="brand-link"> <span class="inline-block" id="brand-name">Adam King</span> </a> <div class="flex items-center gap-8"> <!-- Desktop nav --> <ul class="hidden md:flex items-center gap-8 font-mono text-xs uppercase tracking-[0.22em]"> <li><a href="/#about" class="text-theme-muted hover:text-theme transition-colors duration-200">About</a></li> <li><a href="/#work" class="text-theme-muted hover:text-theme transition-colors duration-200">Work</a></li> <li><a href="/#now" class="text-theme-muted hover:text-theme transition-colors duration-200">Now</a></li> <li><a href="/writing/" class="text-theme-muted hover:text-theme transition-colors duration-200">Writing</a></li> </ul> <!-- Mobile menu button --> <button id="mobile-menu-btn" class="md:hidden flex flex-col justify-center items-center w-8 h-8 gap-[5px]" aria-label="Toggle menu"> <span class="menu-line w-5 h-px transition-all duration-300 origin-center" style="background-color: var(--text-color);"></span> <span class="menu-line w-5 h-px transition-all duration-300 origin-center" style="background-color: var(--text-color);"></span> <span class="menu-line w-5 h-px transition-all duration-300 origin-center" style="background-color: var(--text-color);"></span> </button> <button id="themeToggle" class="relative overflow-hidden w-8 h-8 flex items-center justify-center rounded-full hover:bg-black/5 dark:hover:bg-white/10 transition-colors focus:outline-none" aria-label="Toggle theme"> <div class="sun-icon absolute inset-0 flex items-center justify-center transition-all duration-500 transform dark:translate-y-full dark:opacity-0 opacity-100 translate-y-0 text-theme"> <svg xmlns="http://www.w3.org/2000/svg" stroke-width="2" width="24" height="24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" fill="none" viewBox="0 0 24 24" class="lucide lucide-sun w-4 h-4">  <circle cx="12" cy="12" r="4"></circle> <path d="M12 2v2"></path> <path d="M12 20v2"></path> <path d="m4.93 4.93 1.41 1.41"></path> <path d="m17.66 17.66 1.41 1.41"></path> <path d="M2 12h2"></path> <path d="M20 12h2"></path> <path d="m6.34 17.66-1.41 1.41"></path> <path d="m19.07 4.93-1.41 1.41"></path>  </svg> </div> <div class="moon-icon absolute inset-0 flex items-center justify-center transition-all duration-500 transform -translate-y-full opacity-0 dark:opacity-100 dark:translate-y-0 text-theme"> <svg xmlns="http://www.w3.org/2000/svg" stroke-width="2" width="24" height="24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" fill="none" viewBox="0 0 24 24" class="lucide lucide-moon w-4 h-4">  <path d="M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"></path>  </svg> </div> </button> <script type="module">const c=()=>{const e=document.documentElement;e.classList.toggle("dark"),fetch("/update-theme",{method:"POST"}).catch(()=>null);const t=e.classList.contains("dark");localStorage.setItem("theme",t?"dark":"light")},l=document.getElementById("themeToggle");l?.addEventListener("click",c);</script> </div> </div> <!-- Mobile menu panel --> <div id="mobile-menu" class="md:hidden overflow-hidden max-h-0 transition-all duration-300 ease-in-out"> <ul class="flex flex-col gap-6 pt-8 pb-4 font-mono text-xs uppercase tracking-[0.22em]"> <li><a href="/#about" class="text-theme-muted hover:text-theme transition-colors duration-200 mobile-link">About</a></li> <li><a href="/#work" class="text-theme-muted hover:text-theme transition-colors duration-200 mobile-link">Work</a></li> <li><a href="/#now" class="text-theme-muted hover:text-theme transition-colors duration-200 mobile-link">Now</a></li> <li><a href="/writing/" class="text-theme-muted hover:text-theme transition-colors duration-200 mobile-link">Writing</a></li> </ul> </div> </nav> <script type="module" src="/_astro/Navigation.astro_astro_type_script_index_0_lang.OVKT8Hg-.js"></script> <main class="w-full relative z-10"> <section id="hero" class="relative w-full min-h-screen grid grid-cols-1 lg:grid-cols-[44%_56%] overflow-hidden"> <!-- Photo Panel — left on desktop, top on mobile --> <div class="relative w-full h-[90vw] max-h-[520px] lg:max-h-none lg:h-screen overflow-hidden"> <img src="/ak-portrait.png" alt="Adam King" class="hero-photo w-full h-full object-cover object-[50%_12%] contrast-110"> <!-- Subtle blue duotone wash --> <div class="absolute inset-0 pointer-events-none" style="background-color: var(--accent); mix-blend-mode: color; opacity: 0.07;"></div> <!-- Gradient fade into bg at bottom on desktop --> <div class="hidden lg:block absolute bottom-0 left-0 right-0 h-24 pointer-events-none" style="background: linear-gradient(to top, var(--bg-color), transparent);"></div> </div> <!-- Typography Panel — right on desktop, bottom on mobile --> <div class="relative flex flex-col justify-between px-8 md:px-10 lg:px-14 xl:px-16 py-8 lg:py-10 bg-theme lg:h-screen"> <!-- Top metadata row --> <div class="hero-meta opacity-0 pt-6 md:pt-10 lg:pt-20"> <div class="flex items-center justify-between mb-3"> <span class="font-mono text-[11px] tracking-[0.24em] uppercase text-theme-muted">Founder · Slow Traveler · Taste Maker</span> </div> <div class="w-full h-px" style="background-color: var(--border-color);"></div> </div> <!-- Main heading block --> <div class="flex-1 flex flex-col justify-center py-8 lg:py-6"> <div class="overflow-hidden"> <h1 class="hero-line font-sans font-light text-[3.1rem] sm:text-[3.8rem] md:text-[4.5rem] lg:text-[5.2rem] xl:text-[6.5rem] tracking-[-0.04em] leading-[0.87] text-theme opacity-0 translate-y-full" style="font-optical-sizing: auto;">
Defiant
</h1> </div> <div class="overflow-hidden mt-1"> <p class="hero-line font-sans font-light text-[3.4rem] md:text-[4.5rem] lg:text-[5.2rem] xl:text-[6.5rem] tracking-[-0.04em] leading-[0.87] text-theme opacity-0 translate-y-full lg:ml-8" style="font-optical-sizing: auto;">
Generalist
</p> </div> </div> <!-- Bottom rule + descriptor --> <div class="hero-bottom opacity-0 pb-6 lg:pb-0"> <div class="w-full h-px mb-5" style="background-color: var(--border-color);"></div> <div class="flex items-end justify-between"> <p class="font-mono text-[13px] sm:text-[15px] md:text-[17px] tracking-[0.18em] uppercase text-theme-muted leading-[1.8]">
In a world of<br>unrealized specialists.
</p> <span class="font-mono text-[13px] sm:text-[15px] md:text-[17px] tracking-[0.18em] uppercase text-theme-muted">↓</span> </div> </div> </div> </section> <script type="module" src="/_astro/Hero.astro_astro_type_script_index_0_lang.BD7giOkD.js"></script> <section id="about" class="py-24 md:py-32 px-6 w-full max-w-6xl mx-auto"> <!-- Section label --> <div class="flex items-center gap-5 mb-16 md:mb-20 about-label opacity-0"> <span class="font-mono text-[17px] tracking-[0.18em] uppercase text-theme-muted whitespace-nowrap">01 / About</span> <div class="about-rule flex-1 h-px" style="background-color: var(--border-color); transform-origin: left center; transform: scaleX(0);"></div> </div> <!-- Editorial lede — full width, large --> <div class="mb-16 lg:mb-20"> <p class="font-sans font-light text-[1.6rem] md:text-[2rem] leading-[1.2] tracking-[-0.025em] text-theme max-w-4xl reveal-text opacity-0" style="font-optical-sizing: auto;">
Modern culture keeps pushing us towards narrow specialization. I embrace being a <em>Generalized Specialist</em> instead.
</p> </div> <!-- Body copy — offset right --> <div class="lg:ml-[34%] max-w-xl"> <!-- Founder --> <div class="space-y-4 mb-14 reveal-text opacity-0"> <span class="font-mono text-[13px] tracking-[0.2em] uppercase text-accent mb-2 block">Founder</span> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
I grew up inside a high-control religious environment that I didn't fully leave until my thirties. That experience gave me something I didn't expect: the ability to see how control is built and disguised as something normal.
</p> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
Once I could see it in my own life, I started seeing it everywhere. In relationships and organizations that looked fine from the outside. I founded GenZen in 2016 to help people see it in theirs. The work is getting people free.
</p> </div> <!-- Slow Traveler --> <div class="space-y-4 mb-14 reveal-text opacity-0"> <span class="font-mono text-[13px] tracking-[0.2em] uppercase text-accent mb-2 block">Slow Traveler</span> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
In 2017 I left the United States and haven't gone back. Nineteen countries so far, mostly across Europe and Southeast Asia, always slow. I stay long enough to stop being a tourist and start seeing how a place actually works.
</p> </div> <!-- Taste Maker --> <div class="space-y-4 mb-14 reveal-text opacity-0"> <span class="font-mono text-[13px] tracking-[0.2em] uppercase text-accent mb-2 block">Taste Maker</span> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
The name GenZen started as a nickname. Someone close to me described my style as "gentleman zen" and it stuck. Before GenZen, I studied product and furniture design and ran a custom furniture business. The craft sensibility came first.
</p> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
Now that AI lets anyone build, the person who knows what good looks like is the one who matters. That's not something you learn from prompts. It comes from years of actually making things. If something exists, it should be made well or not at all.
</p> </div> </div> </section> <script type="module" src="/_astro/About.astro_astro_type_script_index_0_lang.LukSIr6B.js"></script> <section id="work" class="py-24 md:py-32 px-6 w-full max-w-6xl mx-auto"> <!-- Section label --> <div class="flex items-center gap-5 mb-16 md:mb-20 work-label opacity-0"> <span class="font-mono text-[17px] tracking-[0.18em] uppercase text-theme-muted whitespace-nowrap">02 / Work</span> <div class="work-rule flex-1 h-px" style="background-color: var(--border-color); transform-origin: left center; transform: scaleX(0);"></div> </div> <!-- Initiative list --> <div> <!-- GenZen --> <div class="work-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9" style="border-bottom: 1px solid var(--border-color);"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent">01</span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted">Company</span> </div> <div> <h2 class="font-sans font-light text-[1.6rem] md:text-[2rem] leading-[1.2] tracking-[-0.025em] text-theme mb-5" style="font-optical-sizing: auto;">
GenZen
</h2> <div class="space-y-4 max-w-lg"> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
I founded GenZen in 2016. Every initiative under it is an autonomy initiative.
</p> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
The core practice is counter-exploitation. When trusted relationships, business structures, or family systems get weaponized against the people they're supposed to protect, GenZen maps how control was established and engineers its reversal. We've extracted people from cults, guided executives through federal investigations, identified million-dollar fraud before it closed, and restored family systems shattered by coercive control.
</p> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme">
The work is getting people free.
</p> <div class="mt-2"> <a href="https://genzen.solutions" target="_blank" rel="noopener noreferrer" class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent hover:text-theme transition-colors duration-200">genzen.solutions</a> </div> </div> </div> </div> <!-- GoKart Studio --> <div class="work-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9" style="border-bottom: 1px solid var(--border-color);"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent">02</span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted">Studio</span> </div> <div> <h2 class="font-sans font-light text-[1.6rem] md:text-[2rem] leading-[1.2] tracking-[-0.025em] text-theme mb-5" style="font-optical-sizing: auto;">
GoKart Studio
</h2> <div class="space-y-4 max-w-lg"> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
I'm one half of GoKart Studio: a collaborative venture designing and developing AI Partnerships for founders and small teams ready to design how AI actually works inside their business.
</p> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted">
Sogo is the first product out of it: an open-source initiative to turn VS Code into a full business environment.
</p> <div class="mt-2"> <a href="https://gokart.studio" target="_blank" rel="noopener noreferrer" class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent hover:text-theme transition-colors duration-200">gokart.studio</a> </div> </div> </div> </div> </div> </section> <script type="module" src="/_astro/Work.astro_astro_type_script_index_0_lang.DNdGMdBh.js"></script> <section id="writing" class="py-24 md:py-32 px-6 w-full max-w-6xl mx-auto"> <!-- Section label --> <div class="flex items-center gap-5 mb-16 md:mb-20 writing-label opacity-0"> <span class="font-mono text-[17px] tracking-[0.18em] uppercase text-theme-muted whitespace-nowrap">03 / Writing</span> <div class="writing-rule flex-1 h-px" style="background-color: var(--border-color); transform-origin: left center; transform: scaleX(0);"></div> </div> <!-- Post list --> <div> <a href="/writing/ai-coo-implementation/" class="writing-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9 block group" style="border-bottom: 1px solid var(--border-color);"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent"> 01 </span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted"> Guide </span> </div> <div> <h2 class="font-sans font-light text-[1.6rem] md:text-[2rem] leading-[1.2] tracking-[-0.025em] text-theme mb-4 group-hover:text-accent transition-colors duration-300" style="font-optical-sizing: auto;"> Building an AI COO: From First Session to Full Stack </h2> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted max-w-lg"> The implementation guide for the AI COO Framework. From a brief that loads automatically to a searchable knowledge vault backed by Supabase. </p> <span class="inline-block mt-5 font-mono text-[11px] tracking-[0.2em] uppercase text-accent group-hover:tracking-[0.3em] transition-all duration-300">
Read →
</span> </div> </a><a href="/writing/the-ai-coo-framework/" class="writing-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9 block group" style="border-bottom: 1px solid var(--border-color);"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent"> 02 </span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted"> Framework </span> </div> <div> <h2 class="font-sans font-light text-[1.6rem] md:text-[2rem] leading-[1.2] tracking-[-0.025em] text-theme mb-4 group-hover:text-accent transition-colors duration-300" style="font-optical-sizing: auto;"> The AI COO Framework </h2> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted max-w-lg"> Your AI could be a real partner. It just needs the right setup. Seven steps to an AI that actually operates, developed over 3+ years of real practice. </p> <span class="inline-block mt-5 font-mono text-[11px] tracking-[0.2em] uppercase text-accent group-hover:tracking-[0.3em] transition-all duration-300">
Read →
</span> </div> </a><a href="/writing/the-generalized-specialist/" class="writing-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9 block group" style> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent"> 03 </span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted"> Perspective </span> </div> <div> <h2 class="font-sans font-light text-[1.6rem] md:text-[2rem] leading-[1.2] tracking-[-0.025em] text-theme mb-4 group-hover:text-accent transition-colors duration-300" style="font-optical-sizing: auto;"> The Case for the Generalized Specialist </h2> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme-muted max-w-lg"> Why the most important solutions come from people who refuse to stay in one lane. </p> <span class="inline-block mt-5 font-mono text-[11px] tracking-[0.2em] uppercase text-accent group-hover:tracking-[0.3em] transition-all duration-300">
Read →
</span> </div> </a> </div> <!-- View all link -->  </section> <script type="module" src="/_astro/Writing.astro_astro_type_script_index_0_lang.DSSA8eEB.js"></script> <section id="now" class="py-24 md:py-32 px-6 w-full max-w-6xl mx-auto mb-8"> <!-- Section label --> <div class="flex items-center gap-5 mb-16 md:mb-20 now-label opacity-0"> <span class="font-mono text-[17px] tracking-[0.18em] uppercase text-theme-muted whitespace-nowrap">04 / Now</span> <div class="now-rule flex-1 h-px" style="background-color: var(--border-color); transform-origin: left center; transform: scaleX(0);"></div> </div> <!-- Item list --> <div> <!-- Life --> <div class="now-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9" style="border-bottom: 1px solid var(--border-color);"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent">01</span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted">Life</span> </div> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme">
Since 2017, I've been slow-traveling across <span class="text-accent">19 countries</span> so far, absorbing cultural perspectives and observing life through the lens of the perpetual foreigner.
</p> </div> <!-- Project --> <div class="now-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9" style="border-bottom: 1px solid var(--border-color);"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent">02</span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted">Project</span> </div> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme">
Building out the <a href="https://sogo-site.vercel.app/" target="_blank" rel="noopener noreferrer" class="text-accent hover:opacity-75 transition-opacity duration-200">Sogo</a> ecosystem: an open-source initiative built on the conviction that your tools should conform to the way you work. We're making that real by enabling VS Code to become a full business environment, and the <a href="/writing/the-ai-coo-framework/" class="text-theme font-normal underline underline-offset-3 hover:opacity-75 transition-opacity duration-200">AI COO Framework</a> is the methodology behind it.
</p> </div> <!-- Skill --> <div class="now-item opacity-0 grid grid-cols-1 lg:grid-cols-[1fr_2fr] gap-3 lg:gap-16 py-9"> <div class="flex items-start gap-5"> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-accent">03</span> <span class="font-mono text-[11px] tracking-[0.2em] uppercase text-theme-muted">Skill</span> </div> <p class="text-[0.95rem] md:text-base font-light leading-[1.75] text-theme">
Learning and testing AI assisted coding. Discovering what's possible to build when coding is no longer the barrier.
</p> </div> </div> </section> <script type="module" src="/_astro/Now.astro_astro_type_script_index_0_lang.Byssu4h4.js"></script> </main> <footer class="py-10 px-6 w-full max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center md:items-end gap-4"> <span class="font-mono text-[11px] tracking-[0.22em] uppercase text-theme-muted">
© 2010–2026 Adam King. All rights reserved.
</span> <div class="flex items-center gap-6"> <a href="https://www.linkedin.com/in/-adamking/" target="_blank" rel="noopener noreferrer" class="font-mono text-[11px] tracking-[0.22em] uppercase text-theme-muted hover:text-theme transition-colors duration-200">
LinkedIn
</a> <a href="https://www.instagram.com/adam_m_king/" target="_blank" rel="noopener noreferrer" class="font-mono text-[11px] tracking-[0.22em] uppercase text-theme-muted hover:text-theme transition-colors duration-200">
Instagram
</a> <a href="#hero" class="font-mono text-[11px] tracking-[0.22em] uppercase text-theme-muted hover:text-theme transition-colors duration-200">
Top ↗
</a> </div> </footer>  <div class="fixed top-0 left-0 w-full h-screen pointer-events-none z-0 overflow-hidden flex justify-center items-center opacity-25 dark:opacity-20"> <div class="absolute w-[500px] h-[500px] rounded-full blur-[140px]" style="background-color: color-mix(in srgb, var(--accent) 15%, transparent);"></div> </div>  </body></html>