looties-io
- 12 skills
- 0 followers
- 11 hours ago last updated
- ▌ Code Cleanup · looties-io bundleSafe, behavior-preserving code cleanup and refactoring workflow for recently changed, staged, or user-selected code. Use when asked to clean up code before a commit, improve readability, simplify/refactor without changing behavior, apply project coding conventions, review staged diffs for maintainability issues, or organize small validation-backed cleanup batches.
- ▌ Ground Truth · looties-io bundleUse when a finding from code reading, static analysis, an audit or an LLM review needs to be confirmed against the running system before anyone acts on it. Covers proving whether a suspected bug is actually happening, since when, and how far it reaches; validating a destructive schema or config change inside a transaction that is rolled back; catching deployed-versus-repository config drift; and diagnosing scheduled jobs that report success while doing nothing. Use when asked "is this actually happening", "is this a real problem or a theoretical one", "why did the cron not run", "the job says it succeeded", "check production", "how long has this been broken", or when triaging an audit whose severities are guesses.
- ▌ Harness Testing · looties-io bundleUse when writing, designing, or strengthening harness tests — tests that boot a larger unit of a system (an HTTP handler, a job, a UI flow) into a realistic but controlled environment (fake requests, mocked services/APIs, controlled env vars, an in-memory/seeded database, fake timers) and assert end-to-end behavior. Use when asked to "test the whole handler", "integration test without a real DB/network", "mock the services and run the real code path", "add a test harness", or to improve reliability of code that only misbehaves when wired to its dependencies. Framework-agnostic; includes notes for TypeScript/Deno/Node, Python, and Go.
- ▌ Changelog To Video · looties-io bundleUse when turning a changelog, release notes, or a list of shipped features into a polished feature-showcase video (weekly changelog video, release recap, "what's new" reel, launch montage) and you want each feature shown as a REAL animated mock-up instead of a generic text card. Triggers include "our changelog videos all look like the same card", deduping overlapping entries, and rendering HTML/GSAP motion to MP4.
- ▌ Legacy Code Review · looties-io bundleUse when reviewing, testing or taking ownership of code nobody has looked at in a long time, especially untested code and code an AI agent generated and then left. Covers scoping a cohort, building the caller map, adding first coverage to code that has never been executed without freezing its defects into assertions, inventorying findings with evidence, and adversarially verifying that the new tests actually hold. Use when asked to "review this legacy code", "add tests to this old module", "audit the code we inherited", "clean up AI-generated code", "we have no tests on this", "write characterization tests", or when a codebase has grown faster than anyone has read it.
- ▌ Endpoint Surface Map · looties-io bundleUse when you need to know who can actually call each endpoint in a service, and prove it. Covers auditing the authorization surface of serverless functions (AWS Lambda, Cloudflare Workers, Vercel functions, Supabase edge functions, Cloud Run), HTTP route tables, webhook receivers, internal/cron workers and admin endpoints. Use when asked to "audit our endpoints", "who can call this", "find unauthenticated endpoints", "check for privilege escalation", "is this endpoint protected", "map the attack surface", when a platform auth flag (verify_jwt, IAM authorizer, API gateway authorizer) may have drifted from what the repository declares, or when a privileged handler acts on a target the caller names (confused deputy). Produces a versioned manifest and a CI gate, not a one-off report.
- ▌ Impossible By Design · looties-io bundleUse when the same class of bug keeps coming back, when a fix would otherwise be "remember to do X next time", or when a correct mechanism already exists in the codebase but calling it is optional. Turns conventions into constraints so the wrong path becomes unbuildable rather than discouraged, covering single-owner rules, unconstructible privileged objects, structural contracts, one way in and one way out, loud failure on missing configuration, and gates that enumerate the whole universe instead of the compliant subset. Use when asked to "stop this happening again", "add a guardrail", "make this a lint rule", "why do we keep forgetting this", "remove the footgun", "enforce this convention", or during a post-incident review that is about to end in a documentation change.
- ▌ Cinematic Hyperframes · looties-io bundleCinematic motion design workflow for Hyperframes/Hyperframer and HTML-to-video product films. Use when creating or revising SaaS, app, ecommerce, launch, social, or brand videos that need the /website-to-hyperframes or Website-to-Video pipeline, Hyperframes compositions, catalog-backed blocks/components/transitions, GSAP timelines, VFX-friendly motion, kinetic typography, responsive 16:9/9:16 variants, mock UI states, and export validation.
- ▌ Google AI SEO Fundamentals · looties-io bundleGoogle Search guidance for AI-assisted website content. Use when reviewing, writing, or governing generative AI content for SEO, including blog posts, marketplace listings, product descriptions, titles, meta descriptions, image alt text, structured data, and scaled content risks under Google's people-first content and spam policies.
- ▌ Google AI SEO Optimization · looties-io bundleGoogle-specific SEO workflow for AI Overviews and AI Mode readiness. Use when auditing or optimizing a site for generative AI features on Google Search, including crawlability, indexability, snippet eligibility, Googlebot access, JavaScript SEO, structured data accuracy, Search Console checks, and mythbusting AEO/GEO tactics.
- ▌ Website AI Agent Readiness · looties-io bundleAudit or implement website readiness for AI agents and answer engines, including llms.txt, llms-full.txt, index.md, OKF/Open Knowledge Format bundles, machine-readable pricing files, ai-index.json, sitemap.xml, robots.txt, schema alignment, static asset headers, and SEO smoke tests. Use when the user mentions AI agent readiness, agent-readable site, llms.txt, OKF, Open Knowledge Format, knowledge bundle, AI-search readiness, answer engine readiness, machine-readable pricing, or agent-readable website assets.
- ▌ A11Y Audit · looties-io bundleAudit and fix web accessibility (WCAG 2.1 AA) in a web app, covering keyboard navigation, focus management, screen-reader semantics (landmarks, headings, ARIA), and color contrast, then implement the non-breaking fixes using shared a11y primitives instead of hand-rolled ones. Use whenever the user mentions accessibility, a11y, WCAG, screen readers, keyboard navigation, focus management, contrast, ARIA, or skip links; and also when they describe a symptom without naming accessibility ("can't use checkout with a keyboard", "focus gets lost when the modal closes", "this text is hard to read"). Applies to a single component as much as a full-app audit.