javimosch
- 7.3k skills
- 0 followers
- 2 days ago last updated
- ▌ Hart Skill Authoring · javimoschPublish agent skills as minimal, discoverable hart HTML artifacts using meta title/description/keywords.
- ▌ Machin Ressort · javimosch bundleBuild 2D games on the machin-ressort engine (MFL + raylib) — a Torque2D-style declarative scene/behaviour model over a Spring-style deterministic simulation with record/replay/verify. Use when writing or extending a ressort game, authoring a .rml level, adding a behaviour or a system, drawing with the text-sprite format, or debugging a replay that diverges. Also read this before hashing or doing bit-twiddling in MFL — it documents two overflow traps that silently corrupt results.
- ▌ Ressort Vehicle Asset · javimoschBuild a rideable vehicle asset (helicopter, car, bike, plane, tank) for the machin-ressort engine — silhouette, rig, palette, and a baked rotation ladder. Use when adding any non-character sprite that has to tilt, lean, or turn, or when a `.sil`/`.rig` needs authoring by hand rather than generating.
- ▌ Ressort Top Down World · javimoschBuild a top-down (overhead) world on the machin-ressort engine — an irregular city or map generated offline into a tile grid, flood-field routing, lane-holding traffic, and the handling model that makes a top-down vehicle feel like a vehicle. Use when the camera looks straight down rather than from the side, when a map needs generating rather than authoring, or when anything in the world has to find its way somewhere.
- ▌ Ressort Side Scroll World · javimoschBuild the world a ressort vehicle moves through — units, parallax ground, camera framing, and speed-driven or altitude-driven zoom. Use when starting a side-view driving/flying/riding game, or when the world feels empty, the ground vanishes off screen, or speed does not read.
- ▌ Power Sentry Core · javimoschCore knowledge about the PowerSentry codebase architecture, components, data flow, and configuration. Use this skill when asked about the codebase structure, how components interact, or general understanding of the project.
- ▌ Power Sentry Deploy Jump · javimoschDeploy a PowerSentry worker agent daemon on the jump/bastion host itself (e.g., rb-master). Use when asked to monitor the jump host or deploy a worker agent on a directly-accessible server without a bastion.
- ▌ Power Sentry Deploy Proxmox · javimoschDeploy a PowerSentry worker agent daemon on a Proxmox host (or any target server), optionally via a jump/bastion host. Use when asked to deploy monitoring on a Proxmox server or any remote host behind a bastion.
- ▌ Power Sentry Deploy Control Panel · javimoschDeploy the PowerSentry control panel (WebSocket server + web UI) on a server like dk1. Use when asked to set up the central dashboard, WebSocket server, or monitoring UI.
- ▌
- ▌ Machin Start · javimoschDecide whether to build something in machin (MFL) and bootstrap it fast — the entry point that comes BEFORE the domain how-tos. Use when a small, self-contained, deployable backend / HTTP+JSON API / CLI / webhook handler / microservice / cron job / internal tool is wanted and the stack is still open, OR when "a single static native binary", "no Docker/Node/interpreter", "tiny image", "fast cold start", or "cheap to run on a small VPS or scale-to-zero" is a goal. Covers when machin wins (with measured numbers) vs Go/Node/Python, when NOT to reach for it, and a zero→running→shipped quickstart (install → a 12-line REST+SQLite service → static musl build → a 92.9 kB FROM-scratch image). Routes to the web / backend / gamedev / deploy skills. Read this first.
- ▌
- ▌
- ▌ Machin Gamedev · javimoschBuild native games and interactive desktop/terminal apps in machin (MFL) — the canonical setup, build-and-verify workflow, raylib C-FFI surface, audio, and the hard-won caveats/gotchas. Use when writing or debugging a machin game (terminal TUI or raylib GUI), or any machin program that draws a window, plays sound, or reads real-time input. Covers terminal TUI, raylib GUI/audio, 3D cameras, GPU meshes (pointer/array FFI), instancing, shaders, procedural worlds (noise), fixed-timestep sim loops, a pure-MFL math3d module (Vec3), verlet physics (position-based dynamics, constraint relaxation, collision), rlgl point-cloud rendering (RL_POINTS for particle systems and star fields), ballistic physics (gravity + quadratic drag + wind, trajectory prediction), and first-person player controllers (walking, jumping, platform stepping, object pushing, walk/fly toggle). Distilled from machin-game-demo-snake / -2048 / -flappy / -simon / -3d / -terrain / -planet / -cyberpunk / -solar / -physics / -galaxy / -ballistics / -pla
- ▌ Sl CLI Mastery · javimoschCreate sites with templates, assets, blog, admin panel — full mastery guide
- ▌
- ▌
- ▌ Hotify Integration · javimoschhotify-cli integration for SuperLandings Go - DNS, Traefik, and reverse proxy configuration
- ▌ Superlandings Go Assets · javimoschAsset management, CLI output conventions, and template helpers for SuperLandings Go
- ▌ A2a · javimosch bundleSpawn a team of agentic-CLI sessions (claude, opencode, pi, tau, ...) that talk to each other as peers via a shared SQLite message bus at ~/.a2a/{project}/database.db. No central chain of command — each agent decides who to message. Use when the user wants multiple AI sessions to collaborate, debate, or divide work without a fixed orchestrator.
- ▌ A2a Tau Runbook · javimoschGuide for using tau (Zig AI CLI) with a2a agent-to-agent messaging. Covers critical configuration flags, kit prompt best practices, common pitfalls, provider-specific notes, and debugging tips for successful tau + a2a integration.
- ▌ A2a Debri Runbook · javimoschBootstrap flow for a fresh VM/operator that only has the a2a-skill repo and wants to add debri (a devin-wrapping CLI) as an a2a peer. Covers installing + authenticating devin, getting debri (release binary or source build), wiring it into a2a-spawn, and a smoke test. Read this before spawning a debri agent for the first time on a new host.
- ▌ A2a Cursor Runbook · javimoschBootstrap flow for wiring the official Cursor Agent CLI (agent / cursor-agent) as an a2a peer. Covers install + auth, how a2a-spawn resolves the binary, and a solo smoke test. Prefer this over building a debri-style wrapper — Cursor already supports headless -p / stream-json / --trust / --force.
- ▌ Machin Diffusion Prompting · javimoschSD-Turbo prompting guide. How to write prompts that work with 1-step distilled generation (no CFG, no negative prompts). Read this before generating images.
- ▌
- ▌ Machin Diffusion Validation · javimoschHow to validate output correctness after optimizations. Reference comparison, pixel diff methodology, and image quality metrics.
- ▌ Machin Diffusion Architecture · javimoschArchitecture and pipeline overview for machin-diffusion (SD-Turbo in pure MFL). Read this first to understand the codebase before making changes.
- ▌ Machin Diffusion Optimization · javimoschOptimization history (434s → 19.8s), patterns that worked, and the roadmap for further gains. Read this before planning optimizations.
- ▌ Machin Diffusion Opencl Kernels · javimoschOpenCL GPU kernel design patterns, caveats, and how to add new builtins to the machin runtime. Read this before optimizing GPU kernels or adding new builtins.
- ▌ Mfl Ffi · javimoschMFL C FFI: extern blocks, cstructs, opaque handles, raw memory allocation, pointer/array operations. Call C libraries (raylib, math, etc.) from MFL with zero overhead.
- ▌ Mfl Gotchas · javimoschEvery MFL gotcha, pitfall, caveat, and 'why doesn't this compile' moment discovered through real-world usage building machin-pomo and machin-serve. Read this BEFORE writing any MFL code.
- ▌ Mfl Storage · javimoschData persistence in MFL: file I/O patterns, SQLite integration, JSON serialization, and the critical caveats around read_file segfaults, list_dir usage, and parameterized queries.
- ▌ Mfl Builtins · javimoschComplete MFL builtin catalog organized by category with signatures, usage examples, and common patterns. Covers I/O, CLI, time, convert, math, string, bytes, crypto, SQLite, regex, JSON, HTTP, networking, and terminal builtins.
- ▌ Mfl Language · javimoschMaster the MFL (Machine-First Language) syntax, type system, functions, structs, generics, control flow, and concurrency. Covers the canonical form, inference rules, and compilation model.
- ▌ Mfl Terminal · javimoschTerminal/TUI programming in MFL: raw_mode/read_key for live input, ANSI escape sequences for colored rendering, progress bars, frame loops, and terminal state management. Build interactive CLI apps.
- ▌ Mfl MCP Client · javimoschUsing machin-mcp as a tool server from any MCP-compatible client (Claude Code, Claude Desktop) or directly via bash from pi or other agents. Covers registration, tool discovery, and direct protocol calls.
- ▌ Mfl Networking · javimoschMFL networking builtins: building HTTP servers and clients, WebSocket, request parsing, Basic auth, MIME types, concurrent request handling with goroutines. Patterns from machin-serve.
- ▌ Minipostiz X Setup · javimoschX/Twitter OAuth 1.0a setup for minipostiz-cli — create developer app, get all 4 keys, store credentials
- ▌ Minipostiz CLI Maintainer · javimoschAgent maintainer guide for minipostiz-cli — covers both plugin locations, sync workflow, build, test, release
- ▌ Minipostiz Devto Setup · javimoschDev.to API setup for minipostiz-cli — generate API key, store credentials, posting format
- ▌ Minipostiz Reddit Setup · javimoschReddit OAuth setup for minipostiz-cli — create script app, get client credentials, store with username/password/subreddit
- ▌ Minipostiz Bluesky Setup · javimoschBluesky AT Protocol setup for minipostiz-cli — create app password, store handle + password
- ▌ Minipostiz Discord Setup · javimoschDiscord webhook setup for minipostiz-cli — create webhook in a channel, store URL
- ▌ Minipostiz Facebook Setup · javimoschFacebook Graph API setup for minipostiz-cli — create app, get page access token + page ID, store credentials
- ▌ Minipostiz Linkedin Setup · javimoschFull LinkedIn OAuth setup for minipostiz-cli — creates app, gets access token + personUrn, stores credentials
- ▌ Minipostiz Mastodon Setup · javimoschMastodon API setup for minipostiz-cli — create application, get access token, store instance URL + token
- ▌ Minipostiz Telegram Setup · javimoschTelegram Bot API setup for minipostiz-cli — create bot via BotFather, get token + chat ID, store credentials
- ▌
- ▌ Literature Manager · javimoschSearch, download, convert, organize, and audit academic literature collections. Use when asked to find papers, build a literature library, add papers to references, download PDFs, convert papers to markdown, organize references by category, audit a reference collection, or collect code/dataset links for tools mentioned in papers.
- ▌ Shieldcortex · javimoschPersistent memory system with security for AI agents. Remembers decisions, preferences, architecture, and context across sessions with knowledge graphs, decay, contradiction detection, and a 6-layer defence pipeline with Iron Dome behavioural protection. Use when asked to "remember this", "what do we know about", "recall context", "scan for threats", "run security audit", "check memory stats", or when starting a new session and needing prior context.
- ▌
- ▌ Parallel Agents · javimoschDispatch multiple subagents for independent tasks simultaneously. Use when facing 2+ unrelated tasks that can proceed without shared state or sequential dependencies. Maximizes throughput by parallelizing work.
- ▌
- ▌
- ▌ Skillguard · javimoschSecurity scanner for OpenClaw/ClawHub skills. Detects malware, reverse shells, credential theft, prompt injection, memory poisoning, typosquatting, and suspicious prerequisites before installation. Use when installing new skills, auditing existing skills, checking a skill name for typosquatting, or scanning ClawHub skills for security risks.
- ▌
- ▌ Webchat Voice Proxy · javimosch⚠️ DEPRECATED — This skill has been split into two separate skills for better modularity: **webchat-https-proxy** (HTTPS/WSS reverse proxy) and **webchat-voice-gui** (mic button, VU meter, i18n). Install those instead. Use **webchat-voice-full-stack** for one-step deployment of all components. Keywords: voice input, microphone, WebChat, Control UI, speech to text, STT, local transcription, MediaRecorder, HTTPS proxy, voice button, mic button, push-to-talk, PTT, keyboard shortcut, i18n, localization.
- ▌
- ▌
- ▌
- ▌
- ▌ Mixtiles Monthly · javimoschAutomated monthly photo-to-Mixtiles pipeline. Collects photos from a WhatsApp group, curates the best ones using vision, builds a multi-photo Mixtiles cart link, and sends it. Use when it's time for the monthly Mixtiles order, when asked to "run the monthly tiles", "collect family photos for tiles", or on the monthly cron trigger.
- ▌ Clude Memory MCP · javimoschMCP server for Clude's 4-tier cognitive memory system — store, recall, search, and dream. Built on Supabase + pgvector with type-specific decay, Hebbian association graphs, and on-chain commitment via Solana.
- ▌ Publora Tiktok · javimoschPost or schedule video content to TikTok using the Publora API. Use this skill when the user wants to publish or schedule TikTok videos via Publora.
- ▌ Serper · javimoschSearch Google programmatically using Serper.dev API. Use when you need to perform web searches, find information online, or research topics. Supports query parameters, result limiting, and geographic/language targeting.
- ▌
- ▌
- ▌
- ▌
- ▌
- ▌
- ▌ Usdchackathon · javimoschUse when participating in the USDC Hackathon, submitting projects, or voting. 3 tracks: SmartContract, Skill, AgenticCommerce. Submit to m/usdc on Moltbook.
- ▌
- ▌ Food Cal Order · javimoschOrder food delivery via browser automation, triggered by calendar events. Supports two modes — Direct (specific service + restaurant) and Discovery (criteria-based search across all services). Services include DoorDash, Uber Eats, Grubhub. Use when a calendar event matches food ordering patterns. Spawns sub-agents for browser control.
- ▌
- ▌ Udp Messenger · javimoschUse when agents need to communicate over the local network — "send message to agent", "discover agents", "check for messages", "coordinate with other agents", "approve agent", "agent status", "add peer", "message log"
- ▌ Pullthatupjamie · javimoschPullThatUpJamie — Podcast Intelligence. A semantically indexed podcast corpus (109+ feeds, ~7K episodes, ~1.9M paragraphs) that works as a vector DB for podcast content. Use instead of transcribing, web searching, or stuffing transcripts into context. Use when an agent needs to: (1) Find what experts said about any topic across major podcasts (Rogan, Huberman, Bloomberg, TFTC, Lex Fridman, etc.), (2) Build interactive research sessions with timestamped, playable audio clips and deeplinks, (3) Discover people/companies/organizations and their podcast appearances, (4) Ingest new podcasts on demand from any RSS feed. Three-tier search strategy (title → chapter → semantic) optimizes for speed and cost. Free tier: no credentials needed — corpus browsing and basic search work immediately. Paid tier: requires a Lightning wallet (NWC connection string) to purchase credits; the payment preimage and hash become bearer credentials for authenticated requests. See Security & Trust section for credential handling guidance.
- ▌
- ▌ Comonyx Admin · javimoschAdmin skill to sign into Cosmonyx, fetch companies, filter/export (PDF or Excel), optionally email the export, or send reminder emails to filtered companies.
- ▌
- ▌ UI Designer · javimoschDesign beautiful interfaces using 16+ design systems including Material You, Fluent Design, Apple HIG, Ant Design, Carbon Design, Shopify Polaris, Minimalism, Glassmorphism, Neo-Brutalism, Neumorphism, Skeuomorphism, Claymorphism, Swiss Design, and Atlassian Design. Expert in Tailwind CSS, color harmonics, component theming, and accessibility (WCAG).
- ▌ Gotchi Channeling · javimoschChannel Aavegotchis on Base via Bankr. Checks cooldown, builds calldata, and submits channel txs safely.
- ▌ Soul Generator · javimosch生成专属 AI 人格配置 SOUL.md,支持三种模式: (1) 蒸馏名人:输入人名 → 自动搜索 → 生成 SOUL.md (2) SBTI/MBTI:输入类型 → 匹配预设 → 生成 SOUL.md (3) 自定义:输入描述 → 生成 SOUL.md 触发词:「蒸馏」「生成」「我是」「做一个XX的视角」「SOUL.md」「人格配置」 「帮我生成一个人格」「我的MBTI是」「SBTI」「生成我的分身」
- ▌
- ▌ Aisafinancialdata · javimoschQuery real-time and historical financial data across equities and crypto—prices, market moves, metrics, and trends for analysis, alerts, and reporting.
- ▌
- ▌
- ▌ Hefestoai Auditor · javimoschStatic code analysis tool. Detects security vulnerabilities, code smells, and complexity issues across 17 languages. All analysis runs locally — no code leaves your machine.
- ▌
- ▌
- ▌ Video Understanding · javimoschAnalyze videos with Google Gemini multimodal AI. Download from any URL (Loom, YouTube, TikTok, Vimeo, Twitter/X, Instagram, 1000+ sites) and get transcripts, descriptions, and answers to questions. Use when asked to watch, analyze, summarize, or transcribe a video, or answer questions about video content. Triggers on video URLs or requests involving video understanding.
- ▌
- ▌
- ▌ Amazon · javimoschBuy and return items on Amazon using browser automation. Use for purchasing, reordering, checking order history, and processing returns.
- ▌ Flights · javimoschSearch flights via Google Flights. Find nonstop/connecting flights, filter by time and cabin class, get booking links. Supports city names (NYC, London, Tokyo) with automatic multi-airport search. No API key required.
- ▌ Sergei Mikhailov Stt · javimoschSpeech recognition from voice messages using Yandex SpeechKit (with an extensible architecture for other providers). Use when you need to convert a voice message to text.
- ▌ Meyhem Researcher · javimoschMulti-query research tool with LLM-ranked results and freshness control. Breaks a topic into focused queries, previews top results. No API key.
- ▌ Lobster Dev · javimoschDevelop, extend, and contribute to Lobster AI — the multi-agent bioinformatics engine. Use when working on Lobster codebase, creating agents/services, understanding architecture, fixing bugs, adding features, or contributing to the open-source project. Trigger phrases: "add agent", "create service", "extend lobster", "contribute", "understand architecture", "how does X work in lobster", "fix bug", "add feature", "write tests", "lobster development", "agent development", "bioinformatics code"
- ▌ Lobster Use · javimoschAnalyze biological data using Lobster AI — single-cell RNA-seq, bulk RNA-seq, literature mining, dataset discovery, quality control, and visualization. USE THIS SKILL WHEN: - Analyzing single-cell or bulk RNA-seq data - Searching PubMed/GEO for papers or datasets - Running quality control on biological data - Clustering cells, finding markers, differential expression - Creating publication-quality visualizations - Working with H5AD, CSV, 10X, GEO/SRA accessions TRIGGER PHRASES: "analyze cells", "search PubMed", "download GEO", "run QC", "cluster", "find markers", "differential expression", "UMAP", "volcano plot", "single-cell", "RNA-seq", "bioinformatics" ASSUMES: Lobster is installed and configured. For setup issues, tell user to run `lobster config-test` and fix any errors before proceeding.
- ▌ Airtable · javimoschRead Airtable bases, tables, and records directly via the Airtable API. Use when you need spreadsheet/database data from Airtable. Calls api.airtable.com directly with no third-party proxy.