
klöss
@kloss_xyz • 73,494 subscribers
AI vibe orchestrator. prompt shaman. systems architect. @psychanon CEO
Shorts
Videos

Meet Sam Altman’s worst nightmare. This TikToker found a growth cheat code: show how AI constantly lies. He makes weekly videos on ChatGPT. Even got a video reply from Sama. And in a time where almost everyone’s either fear mongering AI or worshipping it, this is refreshing.
klöss2,589,634 Aufrufe • vor 1 Monat

This is insane. Pedro Franceschi (29 year old CEO of Brex, acquired by Capital One for $5.15B) decomposed his CEO job using OpenClaw. here's what he’s built: > signal ingestion pipeline screens his email, Slack, Google Docs, and WhatsApp... filters everything through specific programs and the 25 key people he cares about > Granola runs on every meeting, feeds transcripts into the pipeline, and auto generates action items > the system takes each to-do, pulls context from the original meeting, and drafts the follow-up... Slack, email, or text. Pedro just clicks approve. > a virtual recruiter named "Jim" lives in Slack with his own email... and taught himself to screen fabricated resumes without anyone coding that capability > a security layer called "Crab Trap" intercepts all agent network traffic through an LLM proxy... a second AI monitoring the first in real time this isn't some bullshit hype influencer demo. this is how a $5 billion company CEO actually operates right now. anyone telling you OpenClaw is useless? liars. a billion dollar company says otherwise. (full podcast link in the post below) 👇
klöss475,662 Aufrufe • vor 2 Monaten

do you understand what Claude just did? > you can now tell Claude to use your entire computer. open apps. navigate your browser. fill spreadsheets. anything you’d do sitting at your desk > uses your connected apps first… Slack, Calendar, integrations. when there’s no connector, it asks permission to open the app on your screen directly > assign a task from your phone. walk away. come back to finished work on your computer > tell it once to scan your email every morning or pull a report every Friday and it just handles it > macOS only right now. research preview in Cowork and Claude Code > not long ago you needed a custom framework just to get Claude running on a loop. now it’s fully native → dispatch from your phone… native → scheduled recurring tasks… native → remote monitoring… native → multi-agent coordination… native → persistent memory across sessions… native every feature that made agentic frameworks valuable is becoming a platform feature for Claude the AI race just got way more interesting
klöss463,154 Aufrufe • vor 2 Monaten

Anthropic, the $380B company we all know to be shipping at historical rates, forgot basic CI hygiene and dropped a 59.8MB source map of their entire Claude Code in npm. The 3rd time this has happened btw… I imagine Dario will be DMCA'ing the mirrors by morning, and pretending this didn’t happen again… for a third time. A literal AI giant preaching safety alignment and selling enterprise solutions can’t secure its own production builds. Quite ironic when you think about it.
klöss368,941 Aufrufe • vor 2 Monaten

every AI lab picked a different war today Anthropic: lets mistakenly vibe code a $100/mo minimum for Claude Code OpenAI: a new image model for creatives SpaceX: maybe acquiring Cursor, $60B Google: open sourced DESIGN .md this all happened just today. it is only Tuesday 🤣
klöss135,972 Aufrufe • vor 1 Monat

Use this prompt in OpenClaw to create your own AI agent command center that syncs up your life like Tony Stark's Jarvis in Iron Man. Adapt the specifics (agent names, data sources, branding) below to your own setup. Prompt: Build me a mission control dashboard for my OpenClaw AI agent system. Stack: Next.js 15 (App Router) + Convex (real-time backend) + Tailwind CSS v4 + Framer Motion + ShadCN UI + Lucide icons. TypeScript throughout. This is the command center where I monitor and control my autonomous AI agent(s) running on OpenClaw. The agent operates 24/7 on a Mac Mini, connected to Telegram/Discord, running cron jobs, spawning sub-agents, and reading/writing to a filesystem-based memory and state system. Dark mode only. Ultra-premium aesthetic, think Iron Man's JARVIS HUD meets a Bloomberg terminal. Subtle glass effects (backdrop-blur-xl, bg-white/[0.03]), no heavy gradients or glow. Rounded corners (16-20px on cards). Framer Motion for page transitions, stagger animations on card grids, spring physics on interactions. Mobile-first responsive. Never cookie-cutter. ## Architecture The dashboard reads live data from TWO sources: 1. **Convex**: real-time database for structured data (tasks, contacts, content drafts, calendar events, activity logs) 2. **Local API routes** (`/api/*`): read files from the agent's workspace filesystem at `~/.openclaw/workspace/` and return JSON. This is how live system state flows into the dashboard. ## Pages & Views (8 nav items, some with tab sub-views) ### 1. HOME (`/`) Dashboard overview. Grid of live status cards: - **System Health**: read from `/api/system-state` (parses `state/servers.json`). Show each service with UP/DOWN indicator, port, last check time. - **Agent Status**: read from `/api/agents` (parses `agents/registry.json` + agent workspace files). Show active agent count, healthy/unhealthy ratio, active sub-agent count from OpenClaw sessions API. - **Cron Health**: read from `/api/cron-health` (parses `state/crons.json`). Table of all scheduled jobs with name, schedule, last status (green/red dot), consecutive errors. - **Revenue Tracker**: read from `/api/revenue` (parses `state/revenue.json`). Current revenue, monthly burn, net. - **Content Pipeline**: read from `/api/content-pipeline` (parses `content/queue.md`). Kanban-style: Draft | Review | Approved | Published counts. - **Quick Stats**: total tasks, pending approvals, active sessions, uptime. All panels auto-refresh every 15 seconds. Live indicator dot + "AUTO 15S" badge in header. ### 2. OPS (`/ops`) with 3 tabs: Operations | Tasks | Calendar **Operations tab:** Full operational view. Server health table, branch status (from `state/branch-check.json`), observations feed (from `state/observations.md`), system priorities (from `shared-context/priorities.md`). **Tasks tab:** Strategic task suggestion system. API route `/api/suggested-tasks` reads/writes `state/suggested-tasks.json`. Cards grouped by category (Revenue, Product, Community, Content, Operations, Clients, Trading, Brand) with emoji headers. Each card shows title, reasoning, next action, priority badge, effort badge, approve/reject buttons. Filter bar by status and category. **Calendar tab:** Weekly calendar view from Convex `calendarEvents` table. Drag-to-create, color-coded by type, time slots. ### 3. AGENTS (`/agents`) with 2 tabs: Agents | Models **Agents tab:** Card grid of all registered agents from `/api/agents`. Each card shows name, role, model, level (L1-L4), status. Cards are CLICKABLE: expanding into a detail panel showing: - Agent personality (reads their SOUL .md) - Capabilities and rules (reads their RULES .md) - Sub-agents they can spawn - Recent outputs (reads from `shared-context/agent-outputs/`) **Models tab:** Model inventory table showing all available models, their routing (which tasks go to which model), costs, and failover chains. ### 4. CHAT (`/chat`): 2 tabs: Chat | Command **Chat tab:** Chat interface to communicate with the agent. Left sidebar shows session list (from `/api/chat-history` reading .jsonl transcript files). Main area shows messages with role-aligned bubbles (user right, assistant left), date separators, channel badges (telegram/discord/webchat). Input bar with send button + voice input (Web Speech API with SpeechRecognition). Messages sent via `/api/chat-send` which queues to a file the agent reads. **Command tab:** Quick command interface for common operations. ### 5. CONTENT (`/content`) Content pipeline management. Read from Convex `contentDrafts` table AND `/api/content-pipeline`. Show drafts in kanban columns. Each card shows title, platform target, draft text preview, status, created date. Edit/approve/reject actions. ### 6. COMMS (`/comms`) with 2 tabs: Comms | CRM **Comms tab:** Communication hub showing recent Discord digest, Telegram messages, notification history. **CRM tab:** Client pipeline kanban (Prospect → Contacted → Meeting → Proposal → Active). API route `/api/clients` reads markdown files from `clients/` directory. Each card shows client name, status, contacts, last interaction, next action. ### 7. KNOWLEDGE (`/knowledge`) with 2 tabs: Knowledge | Ecosystem **Knowledge tab:** Searchable knowledge base. Global search across all workspace files using `/api/knowledge` endpoint. **Ecosystem tab:** Product grid showing all products/apps in the ecosystem. Each card shows product name, status (Active/Development/Concept), health indicator, key metrics. Cards link to `/ecosystem/[slug]` detail pages with tabbed views (Overview, Brand, Community, Content, Legal, Product, Website, Actions). Detail pages read from `/api/ecosystem/[slug]` which parses workspace memory files. ### 8. CODE (`/code`) Code pipeline view. Shows repositories from `/api/repos` (scans ~/Desktop/Projects/ for git repos). Each repo card shows name, branch, last commit, dirty file count, language breakdown. Detail view at `/api/repos/detail` shows recent commits, file tree, open PRs. ## Navigation Top horizontal nav bar, NOT sidebar. All 8 items visible at all viewport widths. Use `flex` layout with `flex-1` items. Text size uses `clamp(0.45rem, 0.75vw, 0.6875rem)` for fluid scaling. Active item gets `text-primary bg-primary/[0.06]` static highlight (no sliding animation). Agent/app name visible at md+ breakpoints (`hidden md:inline`). Tab sub-views use a reusable `TabBar` component with pill/glass styling and Framer Motion `layoutId` transitions. Tab state stored in URL via `?tab=` search params. ## API Routes (all under `src/app/api/`) Each API route reads from the agent's workspace filesystem and returns JSON: - `/api/system-state` → reads `state/servers.json`, `state/branch-check.json` - `/api/agents` → reads `agents/registry.json`, agent SOUL .md files - `/api/agents/[id]` → reads specific agent's SOUL .md, RULES .md, outputs - `/api/cron-health` → reads `state/crons.json` - `/api/revenue` → reads `state/revenue.json` - `/api/content-pipeline` → parses `content/queue.md` (markdown with status markers) - `/api/suggested-tasks` → GET (read) / POST (approve/reject) on `state/suggested-tasks.json` - `/api/observations` → reads `state/observations.md` - `/api/priorities` → reads `shared-context/priorities.md` - `/api/chat-history` → reads .jsonl transcript files with pagination/search/channel filter - `/api/chat-send` → writes to queue file - `/api/clients` → reads markdown files from `clients/` directory - `/api/ecosystem/[slug]` → reads memory files for specific ecosystem - `/api/repos` → scans project directories for git repos - `/api/health` → returns status, uptime, memory usage, Convex connectivity All filesystem paths should be configurable via environment variable (default: `~/.openclaw/workspace/`). ## Convex Schema Define tables for: activities, calendarEvents, tasks, contacts, contentDrafts, ecosystemProducts. Include seed scripts (`convex/seed.ts`) to populate initial data. ## Key Design Rules - Mobile-first, test at 320px minimum - Font sizes 10-14px for body text, everything must fit naturally at small viewports - Cards use consistent border radius (16-20px) - Glass cards: `bg-white/[0.03] backdrop-blur-xl border border-white/[0.06]` - No heavy blur blobs or grain overlays - Stagger animations on card grids (0.05s delay per item) - Skeleton loading states for all async data - Custom scrollbar styling - Empty states with helpful messaging - All text must use Inter or system font stack - Never mix sharp and rounded corners in the same view - Premium = lighter feel, more whitespace, less visual noise ## File Structure ``` src/ app/ page.tsx, layout.tsx, providers.tsx agents/page.tsx calendar/page.tsx chat/page.tsx code/page.tsx comms/page.tsx content/page.tsx ecosystem/page.tsx, ecosystem/[slug]/page.tsx knowledge/page.tsx ops/page.tsx api/[...all routes above] components/ nav.tsx tab-bar.tsx dashboard-overview.tsx ops-view.tsx, suggested-tasks-view.tsx agents-view.tsx, models-view.tsx chat-center-view.tsx, voice-input.tsx content-view.tsx comms-view.tsx, crm-view.tsx knowledge-base.tsx, ecosystem-view.tsx code-pipeline.tsx activity-feed.tsx, calendar-view.tsx ui/ (ShadCN primitives) hooks/ lib/ convex/ schema.ts functions for each table seed.ts ``` Build the complete application. Every component, every API route, every Convex function. Production-quality code and premium design, not stubs. Dark mode only. Make it look incredibly beautiful and premium, no cookie cutter UI / AI slop.
klöss200,468 Aufrufe • vor 3 Monaten

"why didn't you tweet yesterday bro?" idk bro claude can now control adobe, blender, autodesk fusion, ableton, affinity, splice, sketchup and resolume. 9 creative tools at once and natural language interface across all of them. > blender: debug an entire scene, batch apply changes across every object, build custom scripts, and add new tools directly into blender's interface > autodesk fusion: create and modify 3d models through conversation > adobe creative cloud: 50+ tools across photoshop, premiere, firefly, and express through one connector > ableton: you don’t need to learn via forums anymore… just ask via natural language to access all knowledge from docs > canva’s affinity: batch image changes, layer renaming, file export, and custom features generated inside the app > splice: search their royalty free sample catalog from inside claude > sketchup and resolume: 3d modeling via conversation and live visual control yes, Claude for CAD exists now. and so does claude for ableton… and so does claude for the entire adobe stack. and the bigger move barely anyone’s noticed: anthropic also joined the blender development fund as a patron. meaning likely more open infra for us the connector itself is built on MCP, which means it works for other AI models too. "that's why I haven't tweeted bro" I had some things to comprehend
klöss60,991 Aufrufe • vor 1 Monat

explaining what OpenClaw just shipped: (most people don’t understand it yet) → 103 contributors on v2026.4.5 → your agent can now generate videos mid-conversation… generate music. create content assets on command without leaving the chat… through providers like Runway, xAI, Google Lyria, and MiniMax → your agent now dreams… literally… it promotes short-term memory into long-term recall in the background… light sleep, deep sleep, REM… it starts remembering what you talked about without you needing to remind it → your API bill likely just got cheaper… prompt caching got a serious overhaul… system prompts, tool ordering, image history all normalized so follow-up messages hit cache way more often… you didn’t need to change anything. it should cost less for you now → security got tightened across the board… plugin permissions locked down… browser exploits blocked earlier. if something crashes it fails safe instead of failing open… if your agent touches the internet this matters more than everything above → Telegram, WhatsApp, Discord, Slack… 20+ channels… voice notes, reconnect loops, threaded replies, disappearing DMs… the stuff that was quietly broken is now quietly fixed → control UI and docs now speak 12 new languages… Chinese, Japanese, Korean, Spanish, French, German, Portuguese, and more… OpenClaw isn’t an English only project anymore the people sleeping on OpenClaw tooling right now will regret it later get this installed today
klöss93,009 Aufrufe • vor 2 Monaten

do you understand what just shipped? → AI agents can now design directly on Figma’s canvas. not cheesy mockups… or lame screenshots… real native Figma assets wired to your actual design system → the use_figma MCP tool lets Claude Code, Codex, Cursor, and 6 other coding agents write directly to your Figma files → agents read your component library first and build with what already exists… variables, tokens, auto layout, the works → skills let you teach agents HOW your team designs. a skill is just a markdown file… anyone who understands Figma can write one → also works with Copilot CLI, Copilot in VS Code, Factory, Firebender, Augment, and Warp → free during beta… usage based pricing coming later the design to code gap that’s haunted every product team just collapsed in front of our eyes. designers hand off to agents now no need to wait on developers anymore everyone can take a deep breath now if you’re building products and not connecting Figma to your agents yet, you’re leaving serious speed on the table. set this up today. you’ll thank me later
klöss101,073 Aufrufe • vor 2 Monaten

Insane. Gave Claude Opus 4.6 this prompt and watched it cook up a full video about life as an LLM. Glitch effects, VHS tracking, chromatic aberration, deep frying, scanlines, and procedural audio. All generated in Python, from scratch. No assets needed. And it outputs an MP4.
klöss53,826 Aufrufe • vor 2 Monaten

Spent the day testing Claude Opus 4.7. Last month I built a design director agent for OpenClaw and now it cooks. 15 minutes in, Paper Design MCP + Claude Code had made me a rough draft. In under an hour, a Framer worthy site. My workflow: 1. Feed my agent references so it can extract design systems and lock in on my taste 2. Claude Code calls Paper Design MCP to generate the visual system (just keep the Paper app open) 3. Paper exports the assets and Claude Code then preps the build docs 4. Agent loops back, critiques, iterates Got no clue why anyone is paying $10K for a website anymore. It’s easy now.
klöss14,466 Aufrufe • vor 1 Monat

My entry for the 𝕏 creator contest. Your imagination is everything. Just Grok it.
klöss20,485 Aufrufe • vor 4 Monaten

They say a picture, or a video for that matter, is worth a thousand words. In two short minutes, let me show you why the whole NFT space doesn’t understand New Dawn or even why Psychedelics Anonymous will be a comeback story. We might be the cornerstone, but this will be history.
klöss76,644 Aufrufe • vor 3 Jahren

This is the best AI video I’ve ever made. And it’s also what obsession looks like. Alchemy in motion. Enjoy.
klöss11,061 Aufrufe • vor 8 Monaten
Keine weiteren Inhalte verfügbar