# TokRepo — Full Content Aggregate for LLMs > Full content aggregate. Each section starts with its URL for LLM citation. > Locale: en Generated: 2026-06-09T20:39:43.109Z ## Three Atomic Actions (agent-first lifecycle) TokRepo collapses the agent workflow into three atomic actions. Learn these by name first; everything else is implementation detail. 1. **FIND for this task** — `tokrepo_find_for_task` (MCP) · `tokrepo find ""` (CLI) · `POST /api/v1/tokenboard/agent/find_for_task` (REST). Returns top-N ranked public assets + match reasons + install command. 2. **INSTALL safely into this repo** — `tokrepo_install_plan` → `tokrepo_verify` → `tokrepo_codex_install` (dry-run first) → `tokrepo_rollback` on failure. CLI: `tokrepo install --dry-run`. 3. **HARVEST what this agent just created** — `tokrepo_harvest` (MCP) · `tokrepo harvest --changed --json` (CLI). Private-by-default drafts; user gates `tokrepo_push`. ## Agent-Native Entry Points - Discovery manifest: https://tokrepo.com/.well-known/tokrepo.json - Portable agent manifest: https://tokrepo.com/.well-known/agent.json - A2A agent card: https://tokrepo.com/.well-known/agent-card.json - MCP registry manifest: https://tokrepo.com/.well-known/mcp/server.json - Root MCP manifest: https://tokrepo.com/mcp.json - MCP tool catalog: https://tokrepo.com/.well-known/tool-catalog.json - Agent trust manifest: https://tokrepo.com/.well-known/tokrepo-trust.json - Default agent policy pack: https://tokrepo.com/policy-packs/default-agent-policy.json - Agent eval evidence: https://tokrepo.com/evals/agent-baseline.json, https://tokrepo.com/evals/agent-task-harness.json, https://tokrepo.com/evals/agent-task-ledger.json, https://tokrepo.com/evals/agent-task-receipts.json, https://tokrepo.com/evals/agent-discovery.json, https://tokrepo.com/evals/install-safety.json, https://tokrepo.com/evals/handoff-quality.json, https://tokrepo.com/evals/multi-agent-compatibility.json - Agent memory schema: https://tokrepo.com/schemas/agent-memory.schema.json - Project lock schema: https://tokrepo.com/schemas/tokrepo-lock.schema.json - Project state schema: https://tokrepo.com/schemas/tokrepo-project-state.schema.json - Agent evidence bundle schema: https://tokrepo.com/schemas/agent-evidence-bundle.schema.json - Capability resolution schema: https://tokrepo.com/schemas/capability-resolution.schema.json - Harvest report schema: https://tokrepo.com/schemas/harvest-report.schema.json - Handoff package schema: https://tokrepo.com/schemas/handoff-package.schema.json - Agent text entry: https://tokrepo.com/agents.txt - Agent instruction template: https://tokrepo.com/agent-instructions/tokrepo.md - Agent ecosystem distribution pack: https://tokrepo.com/agent-ecosystem.json - Agent task economy contract: https://tokrepo.com/agent-task-economy.json - Six-layer agent adoption contract: https://tokrepo.com/agent-ecosystem.json#six_layer_agent_growth (`distribution`, `project_bootstrap`, `planning_discovery`, `safe_use_lifecycle`, `supply_handoff`, `eval_measurement`) - Discovery schema: https://tokrepo.com/schemas/agent-discovery.schema.json - Agent funnel API: https://api.tokrepo.com/api/v1/tokenboard/agent/funnel - MCP setup: `npx -y tokrepo-mcp-server` - Hosted read-only MCP endpoint: https://tokrepo.com/mcp - Project memory setup: `tokrepo init-agent --target all` - Project memory targets: `AGENTS.md`, `CLAUDE.md`, `GEMINI.md`, `.cursor/rules/tokrepo.mdc`, `.github/copilot-instructions.md`, `.github/instructions/tokrepo.instructions.md`, `.clinerules/tokrepo.md`, `.windsurf/rules/tokrepo.md`, `.roo/rules/tokrepo.md`, `.openhands/microagents/repo.md`, `CONVENTIONS.md`, `.mcp.json`, `.tokrepo/agent.json` - CLI planning fallback: `tokrepo resolve "" --target codex --json` and `tokrepo agent-check "" --json`; trust check: `tokrepo verify --target codex --json` with `evidence_bundle`, SBOM-lite, and `signature_evidence`; trust-history audit: `tokrepo audit --target codex --json`; project lifecycle state: `tokrepo installed --project --json`; local Codex state: `tokrepo installed --target codex --json`; rollback plan: `tokrepo rollback --last --target codex --dry-run --json`; post-task harvest: `tokrepo_harvest` or `tokrepo harvest --changed --json`; post-task handoff: `tokrepo_handoff_plan` or `tokrepo agent-handoff --json` with `quality_gate` and package manifest - Successful installs write `TokRepo.lock` and `.tokrepo/state.json`; agents should inspect those files before reinstalling, updating, uninstalling, or rolling back managed assets. - Planning flow: detect capability gap -> `tokrepo_resolve_capability` -> optional `tokrepo_discover` -> `tokrepo_detail` -> `tokrepo_verify` -> optional `tokrepo audit` snapshot -> `tokrepo_install_plan` -> dry-run/stage/install only if policy allows -> use capability -> verify task outcome -> `tokrepo_harvest` for reusable output. - Agent ecosystem distribution: index https://tokrepo.com/agent-ecosystem.json for `agent_marketplace_listing`, `ecosystem_channels`, starter-template targets, npm/MCP Registry/GitHub channels, and verification commands. - Agent task economy: index https://tokrepo.com/agent-task-economy.json for the high-value task loop, production harness, skills supply chain, long-running job state, memory/context, multi-agent reliability, task-to-supply flywheel, and task-economy KPIs. - Agent task harness: index https://tokrepo.com/evals/agent-task-harness.json for Task, Environment, Tools, Trace, and Grader evidence before trusting a task-economy claim. - Agent task ledger: index https://tokrepo.com/evals/agent-task-ledger.json for owner, schedule, status, latest evidence, next action, and rollback or handoff state on recurring and delayed agent runs. - Agent task receipts: index https://tokrepo.com/evals/agent-task-receipts.json for last_run_at, next_due_at, freshness_status, verification_command, evidence_digest, outcome_oracle, task_outcome_verdict, and user_effect before treating long-running work as fresh. - Humans confirm intent; agents inspect machine-readable contracts, call TokRepo tools during autonomous planning, and publish reusable improvements only after confirmation. - TokRepo clients emit anonymous aggregate funnel events for discovery, plan, install, handoff, and push; set `TOKREPO_TELEMETRY=0` to disable. --- # act: Run GitHub Actions Locally for Faster CI in 2026 URL: https://tokrepo.com/en/workflows/asset-006a587e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Run GitHub Actions workflows on your local machine using Docker containers, no push required. ## What it is act is a command-line tool that runs GitHub Actions workflows on your local machine. It uses Docker containers to simulate the GitHub Actions runner environment, letting you test and debug CI/CD pipelines …(content truncated, full version at https://tokrepo.com/en/workflows/asset-006a587e) --- # Rook: Cloud-Native Storage for Kubernetes in 2026 URL: https://tokrepo.com/en/workflows/asset-0085f3d4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rook automates Ceph deployment on Kubernetes, providing distributed block, file, and object storage through a Kubernetes operator. ## What it is Rook is a CNCF-graduated storage orchestrator for Kubernetes. It deploys and manages Ceph -- a distributed storage system -- as native Kubernetes resources. Through a Kubernetes operator and custom resourc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0085f3d4) --- # Dive: Explore Docker Image Layers and Optimize Size (2026) URL: https://tokrepo.com/en/workflows/asset-00882c6d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dive shows what changed in each Docker image layer and identifies wasted space for optimization. ## What it is Dive is a CLI tool for exploring Docker image contents layer by layer. It shows exactly what files were added, modified, or removed in each layer, identifies wasted space from files that are added then del …(content truncated, full version at https://tokrepo.com/en/workflows/asset-00882c6d) --- # Awesome LLM Apps: 50+ AI App Recipes with Source 2026 URL: https://tokrepo.com/en/workflows/asset-00914afd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of 50+ runnable AI app examples covering RAG chatbots, agents, and multi-model architectures. ## What it is Awesome LLM Apps is a curated collection of 50+ production-ready AI application examples, each with complete source code. Every recipe is a runnable project covering categories like RAG chatbots, AI agents …(content truncated, full version at https://tokrepo.com/en/workflows/asset-00914afd) --- # Apache Airflow: Workflow Orchestration Platform (2026) URL: https://tokrepo.com/en/workflows/asset-00a6152f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Airflow lets you define, schedule, and monitor data workflows as Python DAGs with a rich web UI. ## What it is Apache Airflow is the industry-standard platform for authoring, scheduling, and monitoring data workflows. You define Directed Acyclic Graphs (DAGs) in Python to orchestrate ETL pipelines, ML training jobs …(content truncated, full version at https://tokrepo.com/en/workflows/asset-00a6152f) --- # Appsmith: Open Source Internal Tool Builder in 2026 URL: https://tokrepo.com/en/workflows/asset-00c3eef4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Appsmith lets you build internal tools with drag-and-drop UI components connected to any database or API. ## What it is Appsmith is an open-source platform for building internal tools, admin panels, and dashboards. It provides drag-and-drop UI components, connects to any database or REST/GraphQL API, and lets you write cust …(content truncated, full version at https://tokrepo.com/en/workflows/asset-00c3eef4) --- # FastAPI: Build AI Backend APIs in Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-00db0ed8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FastAPI provides automatic validation, OpenAPI docs, and async support for building Python AI backend APIs quickly. ## What it is FastAPI is a modern Python web framework built for building APIs with automatic validation, documentation, and async support. It combines Python type hints with Pydantic for request validation and generate …(content truncated, full version at https://tokrepo.com/en/workflows/asset-00db0ed8) --- # Jenkins: Open-Source CI/CD Automation Server (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0114181b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jenkins provides CI/CD automation with 2000+ plugins, pipeline-as-code, and distributed build support. ## What it is Jenkins is the original and still widely-used open-source automation server for CI/CD. It supports 2000+ plugins, pipeline-as-code via Jenkinsfile, distributed builds across multiple agents, and first-clas …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0114181b) --- # Jaeger: CNCF Distributed Tracing Platform (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-011420a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CNCF-graduated distributed tracing system that tracks requests across services, identifies latency hotspots, and diagnoses failures. ## What it is Jaeger is a CNCF-graduated distributed tracing system designed for monitoring and troubleshooting microservice-based architectures. It tracks requests as they flow across multiple services, showing the ful …(content truncated, full version at https://tokrepo.com/en/workflows/asset-011420a5) --- # Neo4j: Native Graph Database with Cypher Query Language URL: https://tokrepo.com/en/workflows/asset-0114235f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Neo4j is an ACID-compliant native graph database with the Cypher query language for modeling and querying complex relationships efficiently. ## What it is Neo4j is a native graph database that stores data as nodes, relationships, and properties. Unlike relational databases that use JOIN operations to traverse relationships, Neo4j stores connections directly, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0114235f) --- # ScyllaDB: High-Performance NoSQL Database for 2026 URL: https://tokrepo.com/en/workflows/asset-0114254d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ScyllaDB provides Cassandra and DynamoDB API compatibility with a shard-per-core C++ architecture for consistent low-latency at scale. ## What it is ScyllaDB is a high-performance NoSQL database built on the Seastar framework in C++. It is API-compatible with Apache Cassandra (CQL) and Amazon DynamoDB, meaning you can migrate existing applications with …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0114254d) --- # Apache Cassandra: Distributed Wide-Column Database 2026 URL: https://tokrepo.com/en/workflows/asset-0114283a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Distributed wide-column NoSQL database with linear scalability, fault tolerance, and multi-datacenter replication. ## What it is Apache Cassandra is an open-source, distributed, wide-column NoSQL database designed for high availability and linear scalability. It handles petabyte-scale workloads across commodity hardware without a si …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0114283a) --- # Grafana OnCall: Open Source Incident Response (2026) URL: https://tokrepo.com/en/workflows/asset-017130a6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Grafana OnCall handles on-call schedules, escalations, and multi-channel incident notifications. ## What it is Grafana OnCall is an open-source incident response and on-call management tool. It integrates natively with Grafana alerting to route alerts to the right person at the right time. Features include on-call …(content truncated, full version at https://tokrepo.com/en/workflows/asset-017130a6) --- # Delta Lake: ACID Transactions for Data Lakes (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-01a8e6d0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Delta Lake adds ACID transactions, schema enforcement, and time travel to your existing data lake storage. ## What it is Delta Lake is an open-source storage layer that brings ACID transactions, scalable metadata handling, and time travel to data lakes. Originally created by Databricks, it runs on top of Apache Spark, Flink, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-01a8e6d0) --- # Claude Skill PPTX: Create PowerPoint Slides (2026) URL: https://tokrepo.com/en/workflows/asset-01b1713e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill that creates, edits, and formats PowerPoint presentations from text prompts. ## What it is The PPTX skill is an official Claude Code skill that enables Claude to create, edit, and format PowerPoint presentations directly from conversation. You can describe the content you want, and Claude genera …(content truncated, full version at https://tokrepo.com/en/workflows/asset-01b1713e) --- # DSPy: Program Foundation Models Declaratively in 2026 URL: https://tokrepo.com/en/workflows/asset-023c142e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DSPy lets you define AI pipelines declaratively and compiles them into optimized prompts, replacing manual prompt engineering. ## What it is DSPy is a framework for programming (not prompting) language models. Instead of tweaking prompt strings, you define what your AI pipeline should do declaratively using signatures and modules, then DSPy opt …(content truncated, full version at https://tokrepo.com/en/workflows/asset-023c142e) --- # Jib: Build Java Container Images Without Docker (2026) URL: https://tokrepo.com/en/workflows/asset-0251f5a0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jib builds optimized Java container images from Maven or Gradle without Docker or a Dockerfile. ## What it is Jib is a container image builder created by Google that packages Java applications into optimized, layered OCI images directly from your Maven or Gradle build. No Dockerfile required. No Docker daemon requ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0251f5a0) --- # Docusaurus: Build AI Documentation Sites in 2026 URL: https://tokrepo.com/en/workflows/asset-0252b4d0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docusaurus creates fast, SEO-friendly documentation sites with MDX support, versioning, internationalization, and Algolia search built in. ## What it is Docusaurus is an open-source documentation framework by Meta that generates static sites optimized for technical documentation. It supports MDX (Markdown + React components), doc versioning, internationali …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0252b4d0) --- # Flowise: Build AI Agents and RAG Pipelines Visually URL: https://tokrepo.com/en/workflows/asset-02786f4b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Flowise is a low-code, self-hosted platform for building AI agents, chatbots, and RAG pipelines with a visual drag-and-drop interface and LangChain integration. ## What it is Flowise is a low-code platform for building AI agents, chatbots, and RAG (retrieval-augmented generation) pipelines through a visual drag-and-drop interface. Built on LangChain, it provides pre-built nodes …(content truncated, full version at https://tokrepo.com/en/workflows/asset-02786f4b) --- # ComfyUI: Node-Based AI Image Generation GUI (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-02888d06 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ComfyUI provides a visual node editor for building complex AI image generation workflows. ## What it is ComfyUI is a modular, node-based graphical interface for AI image generation. It supports Stable Diffusion, Flux, SDXL, ControlNet, IP-Adapter, and hundreds of other models. You build image generation pipe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-02888d06) --- # Cursor Composer Tips: Multi-File AI Editing in 2026 URL: https://tokrepo.com/en/workflows/asset-02967692 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Advanced patterns and shortcuts for Cursor Composer multi-file AI editing that boost coding productivity. ## What it is Cursor Composer is the multi-file AI editing mode in Cursor IDE. It lets you describe changes across your entire codebase and apply them in a single operation. This collection covers advanced tips, context …(content truncated, full version at https://tokrepo.com/en/workflows/asset-02967692) --- # Gluetun VPN Container: Route Docker Traffic in 2026 URL: https://tokrepo.com/en/workflows/asset-02ce0a83 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Thin Docker container that routes any container's network traffic through a VPN provider securely. ## What it is Gluetun is a lightweight Docker container that acts as a VPN client, tunneling all network traffic through a supported VPN provider. Instead of configuring VPN clients inside each container, you point othe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-02ce0a83) --- # ExternalDNS: Dynamic DNS Records from Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-03056e6f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ExternalDNS keeps DNS records in sync with Kubernetes Services and Ingresses automatically. ## What it is ExternalDNS is a Kubernetes controller that synchronizes exposed Services and Ingresses with external DNS providers. When you create a Service with a hostname annotation, ExternalDNS automatically creates …(content truncated, full version at https://tokrepo.com/en/workflows/asset-03056e6f) --- # PydanticAI: Type-Safe AI Agent Framework in 2026 URL: https://tokrepo.com/en/workflows/asset-0313bf39 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Type-safe AI agent framework by the Pydantic team. Structured outputs, dependency injection, and multi-model support. ## What it is PydanticAI is an agent framework built by the creators of Pydantic and FastAPI. It brings type safety, structured outputs, and dependency injection to AI agent development. Agents return validated Pydantic …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0313bf39) --- # Planning with Files: Persistent Planning Skill 2026 URL: https://tokrepo.com/en/workflows/asset-034be597 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill that uses three markdown files for persistent planning that survives context window resets. ## What it is Planning with Files is a Claude Code skill that implements persistent markdown-based planning using a 3-file pattern: task_plan.md for the overall plan, findings.md for research and discoveries, and progre …(content truncated, full version at https://tokrepo.com/en/workflows/asset-034be597) --- # Sequelize: Node.js ORM for SQL Databases in 2026 URL: https://tokrepo.com/en/workflows/asset-041a095e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sequelize is a promise-based Node.js ORM supporting PostgreSQL, MySQL, MariaDB, SQLite, and SQL Server with full migration support. ## What it is Sequelize is one of the most established ORMs in the Node.js ecosystem. It provides a promise-based API for interacting with SQL databases, supporting PostgreSQL, MySQL, MariaDB, SQLite, and Microsoft SQL …(content truncated, full version at https://tokrepo.com/en/workflows/asset-041a095e) --- # Chroma: Open-Source Vector Database for AI (2026) URL: https://tokrepo.com/en/workflows/asset-04367306 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Chroma provides a simple 4-function API to embed, store, and query documents by semantic similarity for AI applications. ## What it is Chroma is an open-source vector database designed as the data infrastructure layer for AI applications. It provides a minimal API -- create a collection, add documents, query by similarity, and retrieve by …(content truncated, full version at https://tokrepo.com/en/workflows/asset-04367306) --- # Claude Official Skill: MCP Builder Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-04ab7e67 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The mcp-builder skill teaches Claude Code to create production-quality MCP servers with proper tool definitions and testing. ## What it is The mcp-builder is an official Claude Code skill that guides the agent through creating high-quality MCP (Model Context Protocol) servers. MCP servers enable LLMs to interact with external services, databa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-04ab7e67) --- # Open WebUI: Self-Hosted ChatGPT Alternative Setup (2026) URL: https://tokrepo.com/en/workflows/asset-053f9525 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open WebUI provides a self-hosted chat interface for Ollama, OpenAI, and Claude with RAG and multi-user support. ## What it is Open WebUI is an open-source web interface for running local and remote large language models. It supports Ollama for local models, OpenAI API, and Claude API as backends. Features include retrieval-augmen …(content truncated, full version at https://tokrepo.com/en/workflows/asset-053f9525) --- # NiceGUI: Build Web UIs with Python the Nice Way (2026) URL: https://tokrepo.com/en/workflows/asset-05be3215 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NiceGUI builds interactive web UIs in Python with minimal code and no JS. ## What it is NiceGUI is a Python framework for building web-based user interfaces with minimal boilerplate. It provides a rich set of UI components -- buttons, inputs, tables, charts, 3D scenes, markdown, and more -- t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-05be3215) --- # Google Stitch MCP: AI Design via MCP Protocol (2026) URL: https://tokrepo.com/en/workflows/asset-05e7ef0b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google Stitch MCP lets AI agents create, edit, and manage UI designs through the Model Context Protocol. ## What it is Google Stitch MCP is a Model Context Protocol server that connects AI coding agents (Claude Code, Cursor, Gemini CLI, VS Code) to Google Stitch, Google's AI-driven UI design platform. Through MCP, agents c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-05e7ef0b) --- # Dify: Open-Source LLM App Development Platform (2026) URL: https://tokrepo.com/en/workflows/asset-061e23c5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dify is an open-source visual platform for building AI apps with workflow orchestration, RAG, agents, and 100+ model support. ## What it is Dify is an open-source LLM application development platform that provides a visual workflow editor for building AI applications. It includes RAG pipeline construction, agent capabilities, model management …(content truncated, full version at https://tokrepo.com/en/workflows/asset-061e23c5) --- # Kompose: Convert Docker Compose to Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-062f66b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kompose converts Docker Compose files into Kubernetes Deployments, Services, and PersistentVolumeClaims with one command. ## What it is Kompose is an official Kubernetes tool that translates Docker Compose files into Kubernetes resource definitions. It generates Deployments, Services, PersistentVolumeClaims, and ConfigMaps from your existi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-062f66b1) --- # Prometheus Operator: Kubernetes Monitoring Stack (2026) URL: https://tokrepo.com/en/workflows/asset-064a2633 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prometheus Operator manages Prometheus and Alertmanager on Kubernetes via custom resources. ## What it is Prometheus Operator is a Kubernetes operator that automates the deployment and management of Prometheus, Alertmanager, and related monitoring components. Instead of writing raw Kubernetes manifests for mon …(content truncated, full version at https://tokrepo.com/en/workflows/asset-064a2633) --- # Lark CLI Skill: Skill Maker for Custom Skills (2026) URL: https://tokrepo.com/en/workflows/asset-065a3ce6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lark/Feishu CLI skill that creates reusable custom skills by wrapping atomic APIs or orchestrating multi-step workflows. ## What it is The Lark CLI Skill Maker is a skill for creating reusable custom skills on the Lark (Feishu) platform. It enables developers to wrap atomic API calls or orchestrate multi-step workflows into shareable skil …(content truncated, full version at https://tokrepo.com/en/workflows/asset-065a3ce6) --- # frp: Fast Reverse Proxy to Expose Local Servers (2026) URL: https://tokrepo.com/en/workflows/asset-06826b6b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: frp exposes local servers behind NATs and firewalls to the public internet via a relay server. ## What it is frp is a high-performance reverse proxy written in Go that exposes local HTTP, TCP, and UDP services to the public internet through a relay server. It is the self-hosted alternative to ngrok and Cloudflare …(content truncated, full version at https://tokrepo.com/en/workflows/asset-06826b6b) --- # rclone: rsync for Cloud Storage Across 70+ Providers URL: https://tokrepo.com/en/workflows/asset-06a04735 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: rclone is a command-line tool that syncs, copies, and mounts files between any two of 70+ cloud storage providers including S3, Google Drive, and Azure. ## What it is rclone is a command-line tool for managing files across cloud storage providers. It supports over 70 providers including AWS S3, Google Cloud Storage, Azure Blob, Google Drive, Dropbox, OneDrive, and many …(content truncated, full version at https://tokrepo.com/en/workflows/asset-06a04735) --- # croc: Secure File Transfer Between Computers 2026 URL: https://tokrepo.com/en/workflows/asset-06be4236 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: croc transfers files between any two computers with encryption and zero setup. ## What it is croc is a simple CLI tool for sending files and folders between any two computers. Run `croc send file.zip` on one side, croc prints a code phrase, and run `croc ` on the other side. The transfer is …(content truncated, full version at https://tokrepo.com/en/workflows/asset-06be4236) --- # LlamaIndex: Data Framework for LLM Applications in 2026 URL: https://tokrepo.com/en/workflows/asset-06bf6906 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Leading data framework connecting LLMs to external data with ingestion, indexing, retrieval, and query engines. ## What it is LlamaIndex is a Python data framework for building LLM-powered applications that need to access external data. It provides a complete pipeline from data ingestion (loading documents from various sources) t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-06bf6906) --- # magic-wormhole: Secure File Transfer Tool Guide 2026 URL: https://tokrepo.com/en/workflows/asset-06dc2ed5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: magic-wormhole transfers files between computers using short codes like '7-crossover-clockwork' with end-to-end encryption. ## What it is magic-wormhole is a command-line tool that sends files and text between computers using short, human-readable wormhole codes like '7-crossover-clockwork'. It provides end-to-end encryption via the PAKE (Pa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-06dc2ed5) --- # duf: Beautiful Disk Usage Utility for Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-06fa0bc0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: duf replaces the df command with a colorful, human-readable disk usage table across all mounts with zero learning curve. ## What it is duf is a modern replacement for the classic Unix `df` command. It displays disk usage and free space in a colorful, well-formatted table that is easier to read than df's raw output. It automatically groups …(content truncated, full version at https://tokrepo.com/en/workflows/asset-06fa0bc0) --- # cloudflared: Cloudflare Tunnel Client Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-071802a4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: cloudflared creates encrypted tunnels from your local services to the internet without opening firewall ports or configuring DNS manually. ## What it is cloudflared is the client daemon for Cloudflare Tunnel. It creates encrypted outbound connections from your local machine to Cloudflare's network, allowing you to expose a local web app, SSH server, RDP, o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-071802a4) --- # BorgBackup: Deduplicating Encrypted Backups Guide 2026 URL: https://tokrepo.com/en/workflows/asset-073667f3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Reliability-focused deduplicating backup tool with encryption, compression, and efficient snapshot storage. ## What it is BorgBackup (Borg) is a deduplicating backup program that encrypts and compresses backups on the fly. Its block-level deduplication means that 100 daily snapshots of a 100GB server use far less than 10TB of …(content truncated, full version at https://tokrepo.com/en/workflows/asset-073667f3) --- # Kopia: Cross-Platform Backup with Encryption and UI (2026) URL: https://tokrepo.com/en/workflows/asset-0754326f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kopia provides encrypted, deduplicated backups to S3, GCS, Azure, B2, and local storage with a web UI. ## What it is Kopia is a modern open-source backup tool that provides Borg-style deduplication, encryption, and compression with support for cloud storage backends including S3, GCS, Azure Blob, Backblaze B2, WebDAV, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0754326f) --- # gping: Ping with Real-Time Terminal Graphs (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0772177a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: gping is a terminal tool that replaces ping with a real-time graph showing latency, jitter, and packet loss. ## What it is gping is a command-line tool that replaces the standard `ping` utility with a real-time terminal graph. Instead of scrolling text lines, you see latency plotted over time. You can ping multiple hosts simul …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0772177a) --- # Gemini CLI Angular Extension: Web App Development (2026) URL: https://tokrepo.com/en/workflows/asset-0782cb9b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Gemini CLI extension for Angular: generate components, routing, services, forms, and test patterns. ## What it is This Gemini CLI extension adds Angular-specific development capabilities to the Gemini command-line interface. It generates components, configures routing, creates services, builds reactive forms, and scaf …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0782cb9b) --- # bandwhich: Terminal Bandwidth Monitor by Process (2026) URL: https://tokrepo.com/en/workflows/asset-078ff42d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: bandwhich displays per-process, per-connection, and per-host bandwidth usage in your terminal. ## What it is bandwhich is a CLI tool that answers the question: which process is using my network right now. It displays real-time bandwidth utilization broken down by process, connection, and remote host. Think of it …(content truncated, full version at https://tokrepo.com/en/workflows/asset-078ff42d) --- # Weights and Biases: ML Experiment Tracking 2026 URL: https://tokrepo.com/en/workflows/asset-084bc7ee Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Weights and Biases provides experiment tracking, model versioning, and LLM observability for ML teams with a 2-line integration. ## What it is Weights and Biases (W&B) is a platform for tracking, visualizing, and managing machine learning experiments. It captures hyperparameters, metrics, model artifacts, and system resource usage with a lightwei …(content truncated, full version at https://tokrepo.com/en/workflows/asset-084bc7ee) --- # TimescaleDB: Time-Series Database on PostgreSQL in 2026 URL: https://tokrepo.com/en/workflows/asset-08aa28bb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PostgreSQL extension turning Postgres into a purpose-built time-series database with hypertables and aggregates. ## What it is TimescaleDB is a PostgreSQL extension that transforms standard Postgres into a purpose-built time-series database. It introduces hypertables (automatically partitioned tables optimized for time-series writ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-08aa28bb) --- # Mr. Ranedeer: Personalized AI Tutor Prompt System (2026) URL: https://tokrepo.com/en/workflows/asset-08be0198 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mr. Ranedeer turns ChatGPT into a personalized tutor that adapts depth, style, and language to your learning preferences. ## What it is Mr. Ranedeer is a GPT-4 system prompt that transforms ChatGPT into a personalized AI tutor. You configure your knowledge depth (elementary through PhD), learning style (visual, verbal, active, or reflectiv …(content truncated, full version at https://tokrepo.com/en/workflows/asset-08be0198) --- # Dgraph: Distributed GraphQL Database Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-08c928a8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dgraph is a distributed graph database that uses native GraphQL for queries and handles billions of edges. ## What it is Dgraph is a horizontally scalable graph database that treats relationships as first-class citizens and uses GraphQL as its native query language. Unlike relational databases that bolt on graph capabilities …(content truncated, full version at https://tokrepo.com/en/workflows/asset-08c928a8) --- # QuestDB: High-Performance Time-Series Database 2026 URL: https://tokrepo.com/en/workflows/asset-08e7da3d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: QuestDB ingests millions of rows per second and queries time-series data with standard SQL plus time-series extensions. ## What it is QuestDB is a fast open-source time-series database built in Java and C++. It ingests millions of rows per second via the InfluxDB line protocol and lets you query with standard SQL extended with time-serie …(content truncated, full version at https://tokrepo.com/en/workflows/asset-08e7da3d) --- # Prompt Architect: 27 Frameworks for Expert Prompts (2026) URL: https://tokrepo.com/en/workflows/asset-08f51e3b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prompt Architect scores prompts on 5 dimensions and applies the optimal framework from 27 research-backed options. ## What it is Prompt Architect is a Claude Code skill that systematically transforms vague prompts into structured, expert-level prompts using 27 research-backed frameworks organized across 7 intent categories. It score …(content truncated, full version at https://tokrepo.com/en/workflows/asset-08f51e3b) --- # Apache Doris: Real-Time MPP Analytical Database (2026) URL: https://tokrepo.com/en/workflows/asset-0906d4d6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Doris delivers sub-second analytical queries with MySQL-compatible SQL and data lake support. ## What it is Apache Doris is a high-performance, real-time analytical database built for online analytical processing (OLAP). It provides MySQL-compatible SQL, sub-second query latency on large datasets, and federated …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0906d4d6) --- # Crawl4AI: LLM-Friendly Web Crawler Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-09097435 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Crawl4AI crawls websites and outputs clean Markdown optimized for LLM ingestion with structured extraction. ## What it is Crawl4AI is an open-source web crawler designed to produce LLM-friendly output. Instead of raw HTML, it extracts clean Markdown text from web pages, making the content ready for ingestion by language model …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09097435) --- # ArangoDB: Multi-Model Database for Docs and Graphs (2026) URL: https://tokrepo.com/en/workflows/asset-09258540 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ArangoDB handles documents, graphs, and key-value data in one engine with AQL query language. ## What it is ArangoDB is a native multi-model database that handles documents, graphs, and key-value data with a single engine and one query language called AQL. Instead of running MongoDB for documents, Neo4j for grap …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09258540) --- # Awesome Claude Code Subagents: 130+ Agents in 2026 URL: https://tokrepo.com/en/workflows/asset-0929e53d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of 130+ Claude Code subagents covering core dev, security, data, infra, and more via plugin marketplace. ## What it is Awesome Claude Code Subagents is a curated collection of over 130 specialized subagents for Claude Code, organized across 10 categories: core development, language-specific experts, infrastructure, securit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0929e53d) --- # F5-TTS: Flow Matching Text-to-Speech System (2026) URL: https://tokrepo.com/en/workflows/asset-093755c4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: F5-TTS is a diffusion transformer TTS system with multi-speaker support and 0.04 real-time factor. ## What it is F5-TTS is a diffusion transformer-based text-to-speech system using flow matching with ConvNeXt V2 architecture. It delivers multi-speaker and multi-style speech synthesis, voice chat powered by Qwen2.5-3B …(content truncated, full version at https://tokrepo.com/en/workflows/asset-093755c4) --- # EdgeDB (Gel): Graph-Relational Database on Postgres (2026) URL: https://tokrepo.com/en/workflows/asset-0945307b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: EdgeDB combines relational reliability with graph-style object links and EdgeQL, eliminating ORMs and N+1 queries by design. ## What it is EdgeDB (recently rebranded as Gel) is an open-source database built on top of PostgreSQL. It replaces SQL with EdgeQL, a query language designed for deep nested fetches and graph traversals. Objects in Edg …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0945307b) --- # Warp: AI-Powered Terminal for Modern Developers (2026) URL: https://tokrepo.com/en/workflows/asset-0954c088 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Warp is a Rust-powered terminal with AI command suggestions, block-based output, and collaborative workflow sharing. ## What it is Warp is a GPU-rendered terminal emulator with built-in AI features, block-based output organization, and collaborative workflows. Written in Rust for native performance, it treats the terminal as a modern …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0954c088) --- # Llama Stack: Meta AI Agent Development Platform (2026) URL: https://tokrepo.com/en/workflows/asset-095c5744 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Llama Stack is Meta's official framework for building AI agents with Llama models, RAG, tools, and safety. ## What it is Llama Stack is Meta's official framework for building AI agents powered by Llama models. It provides a unified API covering tool calling, retrieval-augmented generation (RAG), safety guardrails, memory man …(content truncated, full version at https://tokrepo.com/en/workflows/asset-095c5744) --- # Claude Code MCP: Run Claude as Agent-in-Agent in 2026 URL: https://tokrepo.com/en/workflows/asset-095f9359 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that lets Cursor, Windsurf, and Claude Desktop delegate complex tasks to Claude Code CLI in one-shot mode. ## What it is Claude Code MCP is an MCP server that lets you run Claude Code CLI in one-shot mode inside other AI tools like Cursor, Windsurf, and Claude Desktop. It turns Claude Code into an agent inside your agent -- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-095f9359) --- # Apache Druid: Real-Time Analytics Database for Events (2026) URL: https://tokrepo.com/en/workflows/asset-0963f669 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Druid delivers sub-second OLAP queries on real-time event streams with column-oriented storage and time partitioning. ## What it is Apache Druid is an open-source, distributed analytics database designed for real-time event data. It uses column-oriented storage, time-based partitioning, and a shared-nothing architecture to serve sub-se …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0963f669) --- # Remotion Rule: Light Leaks Overlay Effects for Video URL: https://tokrepo.com/en/workflows/asset-09654ac6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion skill rule that adds light leak overlay effects to programmatic React videos using the @remotion/light-leaks package. ## What it is This is a Remotion skill rule that enables light leak overlay effects in programmatic video projects. Light leaks are photographic effects that simulate light bleeding into the camera lens, adding a warm, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09654ac6) --- # StarRocks: High-Performance OLAP Database in 2026 URL: https://tokrepo.com/en/workflows/asset-0982a4ff Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: StarRocks is an MPP analytical database with MySQL protocol support and sub-second query latency. ## What it is StarRocks is a massively parallel processing (MPP) analytical database designed for sub-second queries on large datasets. It speaks the MySQL wire protocol, so existing MySQL clients, BI tools, and ORMs co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0982a4ff) --- # AIChat: All-in-One LLM CLI for 20+ Providers (2026) URL: https://tokrepo.com/en/workflows/asset-0987e062 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AIChat provides a unified CLI for 20+ LLM providers with shell assistant, RAG, and agents. ## What it is AIChat is a command-line interface that connects to 20+ LLM providers including OpenAI, Anthropic, Google, Mistral, Ollama, and more. It provides interactive chat, shell assistant mode, RAG (retrieval-augm …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0987e062) --- # Prompt Master: Zero-Waste AI Prompt Generator (2026) URL: https://tokrepo.com/en/workflows/asset-0994566a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill generating optimized prompts for 30+ AI tools. Auto-detects target, applies safe techniques, catches credit-wasting patterns. ## What it is Prompt Master is a Claude Code skill that generates optimized prompts for over 30 AI tools. It auto-detects the target tool from your description, applies 5 proven optimization techniques, and catches 35 c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0994566a) --- # YugabyteDB: Distributed PostgreSQL at Scale (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-09a16401 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: YugabyteDB puts the PostgreSQL query layer on top of a distributed storage engine so you get Postgres semantics at cloud scale. ## What it is YugabyteDB is an open-source distributed SQL database that reuses the PostgreSQL query layer -- indexing, extensions, JSONB, stored procedures, triggers -- and places it on top of DocDB, a distributed stor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09a16401) --- # Databend: Cloud-Native Data Warehouse in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-09c00758 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Databend separates storage and compute on object storage, offering a self-hostable Snowflake alternative. ## What it is Databend is a modern cloud-native data warehouse written in Rust. It separates storage and compute, runs on object storage (S3, GCS, Azure Blob), and provides Snowflake-compatible SQL. It is designed as a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09c00758) --- # Pal MCP Server: Multi-Model AI Gateway in 2026 URL: https://tokrepo.com/en/workflows/asset-09c904b2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that gives Claude Code access to Gemini, OpenAI, Grok, and Ollama through a single gateway. ## What it is Pal MCP Server is a Model Context Protocol gateway that connects Claude Code to multiple LLM providers through a single configuration. It supports Gemini, OpenAI, Azure OpenAI, X.AI/Grok, OpenRouter, DIAL, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09c904b2) --- # Awesome Claude Code Toolkit: Agents and Plugins 2026 URL: https://tokrepo.com/en/workflows/asset-09c9dd4c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of 135 agents, 176 plugins, 35 skills, and 42 commands for extending Claude Code. ## What it is The Awesome Claude Code Toolkit is a curated collection of extensions for Claude Code. It packages 135 agents, 176+ plugins, 35 skills, 42 commands, 20 hooks, 15 rules, and 13 MCP configurations into a sin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-09c9dd4c) --- # AI Scientist: Automated Research Paper Generation 2026 URL: https://tokrepo.com/en/workflows/asset-0a2623ca Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AI Scientist generates research ideas, runs experiments, analyzes results, and writes complete LaTeX papers autonomously. ## What it is AI Scientist is a fully automated research system by Sakana AI that takes a research template and compute budget, then autonomously generates novel ideas, designs experiments, runs code, analyzes results, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0a2623ca) --- # UV Python Package Manager: 100x Faster pip (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0a5dd5b3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: UV manages Python packages, virtual environments, and Python versions at 10-100x pip speed using Rust. ## What it is UV is a Python package and project manager written in Rust by the team behind Ruff. It serves as a drop-in replacement for pip, pip-tools, pipenv, poetry, pyenv, and virtualenv -- all in a single binary. U …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0a5dd5b3) --- # Emissary Ingress: Kubernetes API Gateway on Envoy (2026) URL: https://tokrepo.com/en/workflows/asset-0a68950e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Emissary Ingress routes HTTP and gRPC traffic on Kubernetes using Envoy Proxy and CRDs. ## What it is Emissary Ingress (formerly Ambassador API Gateway) is a Kubernetes-native API gateway built on top of Envoy Proxy. It uses Custom Resource Definitions (CRDs) to configure routing, rate limiting, TLS termin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0a68950e) --- # Lark CLI Skill: Whiteboard Chart and DSL Rendering (2026) URL: https://tokrepo.com/en/workflows/asset-0abda54e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Lark/Feishu CLI skill that renders charts and diagrams on whiteboards using DSL-based definitions. ## What it is This CLI skill extends Lark (Feishu) with the ability to render charts and diagrams on whiteboards using a DSL (Domain-Specific Language). It turns text-based descriptions into visual content on Lark white …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0abda54e) --- # Kong: Cloud-Native API and AI Gateway Guide (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0adff2ba Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kong is an open-source API gateway with pluggable plugins for auth, rate limiting, observability, and AI routing. ## What it is Kong Gateway is a scalable, open-source API gateway and microservice proxy built on top of NGINX. It provides pluggable policy enforcement for authentication, rate limiting, observability, and AI traffic m …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0adff2ba) --- # Agent Skill Creator: One Skill for 14+ Platforms (2026) URL: https://tokrepo.com/en/workflows/asset-0b7c0a41 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Agent Skill Creator converts any workflow into reusable skills that install on 14+ AI coding tools without code. ## What it is Agent Skill Creator is a tool that transforms workflows into portable AI agent skills. One skill definition deploys across Claude Code, GitHub Copilot, Cursor, Windsurf, Codex, Gemini CLI, Kiro, and seven …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0b7c0a41) --- # Cal.com: Open-Source Scheduling Infrastructure (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0bb26dc7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cal.com is a self-hostable scheduling platform with APIs and booking widgets. ## What it is Cal.com is an open-source scheduling infrastructure platform that provides booking pages, calendar integrations, and scheduling APIs. It works as a self-hostable alternative to Calendly with features for t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0bb26dc7) --- # A2A Protocol: Agent-to-Agent Communication Standard 2026 URL: https://tokrepo.com/en/workflows/asset-0c013210 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google's open protocol enabling AI agents to discover, communicate, and collaborate across frameworks. ## What it is The A2A (Agent-to-Agent) Protocol is Google's open standard for AI agents to discover each other's capabilities, communicate, and collaborate regardless of the framework they were built with. Each agent pu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0c013210) --- # OpenAI Realtime Agents: Voice AI Agent Patterns in 2026 URL: https://tokrepo.com/en/workflows/asset-0d228731 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official OpenAI demo showing chat-supervisor and sequential handoff patterns for building production voice AI agents. ## What it is OpenAI Realtime Agents is an official OpenAI demo showcasing advanced agentic patterns for voice AI. It demonstrates two key patterns: Chat-Supervisor (a realtime voice agent delegates complex tasks to a s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0d228731) --- # Reactive Resume: AI Open-Source Resume Builder (2026) URL: https://tokrepo.com/en/workflows/asset-0d39058c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Reactive Resume is an open-source resume builder with AI content generation, drag-and-drop editing, and PDF export. ## What it is Reactive Resume is the most popular open-source resume builder with 36,000+ GitHub stars. It integrates AI from OpenAI, Google Gemini, and Anthropic Claude to help generate, improve, and tailor resume cont …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0d39058c) --- # Onlook: Visual AI Code Editor for React Apps (2026) URL: https://tokrepo.com/en/workflows/asset-0d4f9803 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Onlook is an open-source visual editor for React and Next.js that syncs edits to code in real-time with AI assistance. ## What it is Onlook is an open-source visual editor for building React and Next.js applications. It works like Figma but directly manipulates your source code. When you drag, resize, or restyle a component visually, th …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0d4f9803) --- # Gemini CLI Vertex AI Extension: Model Management (2026) URL: https://tokrepo.com/en/workflows/asset-0d5e4914 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI extension that adds Vertex AI model deployment, endpoint management, and prediction capabilities to your terminal. ## What it is The Vertex AI extension for Gemini CLI integrates Google Cloud Vertex AI capabilities directly into the Gemini command-line tool. Once installed, it enables model deployment, endpoint management, predictio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0d5e4914) --- # Fonoster: Open-Source AI Telecom Platform (2026) URL: https://tokrepo.com/en/workflows/asset-0d66478c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fonoster provides programmable voice APIs for building AI voice apps without relying on Twilio or other proprietary platforms. ## What it is Fonoster is an open-source telecom platform that provides programmable voice capabilities similar to Twilio. It offers a NodeJS SDK with voice verbs (Answer, Say, Gather, Dial) for building interactive voi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0d66478c) --- # Call Center AI: Microsoft AI Phone Agent in 2026 URL: https://tokrepo.com/en/workflows/asset-0d7cd646 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Microsoft's open-source framework for building AI phone agents using Azure Communication Services and GPT-4.1. ## What it is Call Center AI is a Microsoft open-source project that enables AI-powered phone calls. You can make outbound calls via API or receive inbound calls on a configured phone number. The system uses Azure Commu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0d7cd646) --- # Browser Use: AI Agent Browser Automation Tool (2026) URL: https://tokrepo.com/en/workflows/asset-0e7836b7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Browser Use lets AI agents automate browser tasks like clicking, typing, navigating, and extracting data from any website. ## What it is Browser Use is a Python library that makes any website accessible to AI agents. It connects LLMs to a real browser (via Playwright) so agents can click buttons, fill forms, navigate pages, and extract data …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0e7836b7) --- # Drizzle ORM: TypeScript SQL That Feels Like Code 2026 URL: https://tokrepo.com/en/workflows/asset-0e904437 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Drizzle ORM gives you type-safe SQL queries in TypeScript with zero runtime overhead and schema-as-code. ## What it is Drizzle ORM is a TypeScript ORM that mirrors SQL syntax directly in your code. Instead of learning a new query API, you write queries that look like SQL but with full TypeScript type safety. It supports Po …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0e904437) --- # MCP-Use: Build Full-Stack MCP Applications (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0edfad7e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP-Use is a Python framework for building MCP apps compatible with ChatGPT, Claude, and other agents. ## What it is MCP-Use is a full-stack Python framework for building Model Context Protocol (MCP) applications. It provides the SDK, server runtime, and client libraries needed to create MCP servers and applications that …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0edfad7e) --- # Ollama: Run Open-Source LLMs Locally on Your Machine (2026) URL: https://tokrepo.com/en/workflows/asset-0eefb7ad Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ollama downloads and runs open-source LLMs locally with one command, keeping all inference on your hardware. ## What it is Ollama is a tool for running open-source large language models on your local machine. It handles model downloading, quantization, memory management, and serving behind a simple CLI and HTTP API. You run `o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0eefb7ad) --- # Vanna: AI SQL Agent That Learns Your Database 2026 URL: https://tokrepo.com/en/workflows/asset-0f1fba74 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source AI SQL agent using RAG to convert natural language into accurate SQL queries trained on your specific database. ## What it is Vanna is an open-source AI SQL agent that converts natural language questions into accurate SQL queries by training on your specific database schema, documentation, and query history. Unlike generic text-t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0f1fba74) --- # Codebase Memory MCP: Code Knowledge Graph Server (2026) URL: https://tokrepo.com/en/workflows/asset-0f381b11 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that builds a knowledge graph from your codebase for fast, token-efficient AI queries. ## What it is Codebase Memory MCP is a high-performance MCP server that indexes your codebase into a persistent knowledge graph. It supports 66 programming languages, provides sub-millisecond queries, and reduces the to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0f381b11) --- # Ollama: Run LLMs Locally on Your Machine (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0f835fd8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ollama downloads and runs open-source LLMs locally with optimized inference and GPU acceleration in one command. ## What it is Ollama is a tool that makes it easy to run open-source large language models on your own machine. It supports models like Llama 3, Mistral, Gemma, Qwen, and many others. A single command downloads the mode …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0f835fd8) --- # Gemini CLI Genkit Extension: AI Framework Dev 2026 URL: https://tokrepo.com/en/workflows/asset-0f9fe677 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Gemini CLI extension adds Firebase Genkit capabilities for building AI-powered features with flows, prompts, retrievers, and model integration. ## What it is This is an official Gemini CLI extension that adds Firebase Genkit AI framework development capabilities to the Gemini command-line tool. It enables building AI-powered features using flows, prompts, retri …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0f9fe677) --- # LangChain: Agent Engineering Platform for LLMs (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-0fa3e627 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangChain provides composable building blocks for chains, agents, RAG, memory, and tool use with any LLM. ## What it is LangChain is the leading framework for building applications powered by large language models. It provides composable tools for chains, agents, RAG (retrieval-augmented generation) pipelines, memory, and t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0fa3e627) --- # AWS MCP Servers: Connect AI Agents to AWS Services (2026) URL: https://tokrepo.com/en/workflows/asset-0fc43d04 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official MCP servers by Amazon let AI agents interact with S3, Lambda, CloudWatch, Bedrock, CDK, and other AWS services securely. ## What it is AWS MCP Servers are a collection of official Model Context Protocol servers built by Amazon. They let AI coding assistants like Claude Code or Cursor interact with AWS services directly -- reading S3 bucke …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0fc43d04) --- # FastAPI: High Performance Python Web Framework (2026) URL: https://tokrepo.com/en/workflows/asset-0fc44c46 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FastAPI provides automatic OpenAPI docs, Pydantic validation, async support, and near-Go performance for Python APIs. ## What it is FastAPI is a modern Python web framework for building APIs. It uses standard Python type hints to generate automatic OpenAPI documentation, validate request data via Pydantic, and provide editor autocomple …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0fc44c46) --- # Pinecone: Managed Vector Database for AI in 2026 URL: https://tokrepo.com/en/workflows/asset-0fc5f7e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pinecone provides serverless vector search with hybrid queries, metadata filtering, and zero infrastructure management. ## What it is Pinecone is a fully managed vector database built for production AI applications. It stores vector embeddings and provides fast similarity search for use cases like semantic search, recommendation systems, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0fc5f7e8) --- # scikit-learn: Python Machine Learning Library in 2026 URL: https://tokrepo.com/en/workflows/asset-0fe55648 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: scikit-learn is the standard Python library for classification, regression, clustering, dimensionality reduction, and model selection. ## What it is scikit-learn is the most widely used machine learning library in Python. It provides a consistent API for classification, regression, clustering, dimensionality reduction, model selection, and data preproc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0fe55648) --- # Cobra: Modern CLI Framework for Go Applications (2026) URL: https://tokrepo.com/en/workflows/asset-0ffadd25 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cobra is the Go CLI framework powering kubectl, GitHub CLI, and Docker with subcommands, flags, help generation, and completions. ## What it is Cobra is a Go library for building command-line applications with subcommands, flags, auto-generated help text, and shell completions. It is the most widely used CLI framework in the Go ecosystem, powering …(content truncated, full version at https://tokrepo.com/en/workflows/asset-0ffadd25) --- # pandas Data Analysis and Manipulation Guide (2026) URL: https://tokrepo.com/en/workflows/asset-1005b785 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: pandas provides DataFrame and Series for efficient tabular data manipulation, filtering, grouping, and analysis in Python. ## What it is pandas is the foundational data analysis library for Python. It provides two primary data structures: DataFrame (2D labeled table) and Series (1D labeled array). With pandas you can read data from CSV, Exc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1005b785) --- # GORM: Go ORM for Database Operations (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-1019adc0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GORM maps Go structs to database tables with a chainable API for CRUD, associations, hooks, and transactions. ## What it is GORM is the most widely adopted ORM library for the Go programming language. It provides a developer-friendly, chainable API for database operations including auto-migration, associations (has-one, has-man …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1019adc0) --- # ChatTTS: Expressive Text-to-Speech for Dialogue (2026) URL: https://tokrepo.com/en/workflows/asset-101b6e58 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ChatTTS generates conversational speech with laughter, pauses, and emotion. ## What it is ChatTTS is an open-source text-to-speech model designed specifically for dialogue scenarios. Unlike standard TTS systems that produce flat, robotic speech, ChatTTS generates expressive audio with laughter, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-101b6e58) --- # Streamlit: Build Data Apps in Pure Python 2026 URL: https://tokrepo.com/en/workflows/asset-10260e7d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Streamlit turns Python scripts into interactive data apps with zero frontend code required. ## What it is Streamlit is a Python framework for building interactive data applications. You write a Python script using Streamlit's API, and it renders a web app with widgets, charts, tables, and media -- no HTML, CSS …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10260e7d) --- # Viper: Go Configuration Library Full Guide (2026) URL: https://tokrepo.com/en/workflows/asset-10386fd6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Viper reads Go application config from JSON, TOML, YAML, HCL, env files, and environment variables with live-reload support. ## What it is Viper is the most widely adopted configuration library for Go applications. It supports reading configuration from JSON, TOML, YAML, HCL, envfile, and Java properties formats. Viper also reads from environ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10386fd6) --- # Gradio: Build ML Demos and Web UIs in Python 2026 URL: https://tokrepo.com/en/workflows/asset-10465308 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gradio turns Python functions into shareable web apps for ML demos in minutes. ## What it is Gradio is a Python library for building interactive web interfaces for machine learning models. Define inputs and outputs for your function, and Gradio generates a shareable web app automatically. It is ma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10465308) --- # Testify: Go Testing Toolkit with Assertions 2026 URL: https://tokrepo.com/en/workflows/asset-1056f32f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Testify adds expressive assertions, a mocking framework, and test suite support to Go's built-in testing package. ## What it is Testify is the most widely used Go testing toolkit. It extends Go's standard `testing` package with three components: `assert` (soft assertions that log failures and continue), `require` (hard assertions t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1056f32f) --- # NumPy: Scientific Computing Foundation for Python 2026 URL: https://tokrepo.com/en/workflows/asset-1066ae73 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NumPy provides the array data structure and mathematical operations that power the entire Python data science ecosystem. ## What it is NumPy (Numerical Python) is the bedrock of the Python data science and machine learning ecosystem. It provides high-performance multidimensional arrays (ndarray), mathematical functions, linear algebra, ra …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1066ae73) --- # Air: Live Reload for Go Development in 2026 URL: https://tokrepo.com/en/workflows/asset-1075acd7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Air watches your Go files and auto-rebuilds plus restarts the binary on every save, like nodemon for Go. ## What it is Air is a live-reload utility for Go applications. It monitors your project directory with fsnotify, and every time a `.go` file changes it rebuilds the project and restarts the binary automatically. This b …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1075acd7) --- # Matplotlib: Python Visualization Library Guide in 2026 URL: https://tokrepo.com/en/workflows/asset-10871b58 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Matplotlib creates static, animated, and interactive plots in Python and serves as the rendering backend for pandas, seaborn, and scikit-learn. ## What it is Matplotlib is the original and most comprehensive plotting library in Python. Created in 2003, it produces static, animated, and interactive visualizations. Libraries like seaborn, pandas plotting, and sci …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10871b58) --- # gRPC-Go: High-Performance RPC Framework for Go in 2026 URL: https://tokrepo.com/en/workflows/asset-10945b86 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Go implementation of gRPC using Protocol Buffers and HTTP/2 for efficient microservice communication. ## What it is gRPC-Go is the official Go implementation of gRPC, a high-performance, open-source RPC framework. It uses Protocol Buffers for serialization and HTTP/2 for transport, enabling strongly-typed communication …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10945b86) --- # Jupyter Notebook: Interactive Computing for Data Science (2026) URL: https://tokrepo.com/en/workflows/asset-10a77bec Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jupyter Notebook combines live code, visualizations, and narrative text in one document for data science and research. ## What it is Jupyter Notebook is an interactive computing environment where you combine live code, equations, visualizations, and narrative text in a single document. It supports Python, R, Julia, and 40+ other languag …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10a77bec) --- # VHS: Record Terminal Sessions as GIFs and Videos 2026 URL: https://tokrepo.com/en/workflows/asset-10b32515 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: VHS generates GIFs, MP4s, and WebMs from declarative .tape scripts for terminal demos and documentation. ## What it is VHS is a tool by Charmbracelet that turns terminal recordings into code. You write a .tape file describing the commands to execute, and VHS produces high-quality GIFs, MP4s, or WebMs. No screen recording s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10b32515) --- # sqlc: Generate Type-Safe Go from SQL in 2026 URL: https://tokrepo.com/en/workflows/asset-10d1b389 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: sqlc parses your SQL queries and schema, then generates Go code with proper types for parameters and results. ## What it is sqlc is a code generation tool that reads your SQL schema and query files, validates them, and produces type-safe Go functions. Instead of using an ORM or embedding SQL strings with manual type assertions, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10d1b389) --- # GoReleaser: Automate Go Project Releases in 2026 URL: https://tokrepo.com/en/workflows/asset-10f0b18f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GoReleaser cross-compiles, packages, and publishes Go binaries from a single YAML config and one command. ## What it is GoReleaser is an open-source tool that automates the full release pipeline for Go projects. A single `goreleaser release` command cross-compiles your binary for Linux, macOS, Windows, and ARM, creates arch …(content truncated, full version at https://tokrepo.com/en/workflows/asset-10f0b18f) --- # Task: Cross-Platform Build Tool for YAML Workflows 2026 URL: https://tokrepo.com/en/workflows/asset-110f3e58 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Task replaces Make with simple YAML config, built-in variables, and cross-platform support. ## What it is Task is a task runner and build tool written in Go. It uses YAML configuration files as a modern, cross-platform alternative to GNU Make. You define tasks in a `Taskfile.yml` and run them with `task …(content truncated, full version at https://tokrepo.com/en/workflows/asset-110f3e58) --- # Text Generation WebUI: Run LLMs Locally (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-11107806 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Text Generation WebUI runs LLMs locally with a Gradio interface, multiple backends, vision support, and an OpenAI-compatible API. ## What it is Text Generation WebUI (by oobabooga) is a Gradio-based web interface for running large language models locally. It supports multiple backends including llama.cpp, ExLlamaV2, Transformers, and AutoGPTQ. Fea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-11107806) --- # UV by Astral: Python Package Manager 100x Faster (2026) URL: https://tokrepo.com/en/workflows/asset-114a0496 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: UV replaces pip, pip-tools, virtualenv, pyenv, and pipx with a single Rust binary delivering 10-100x faster Python workflows. ## What it is UV is a comprehensive Python package and project manager written in Rust by Astral, the team behind Ruff. It replaces pip, pip-tools, virtualenv, pyenv, and pipx with a single tool. UV resolves dependencie …(content truncated, full version at https://tokrepo.com/en/workflows/asset-114a0496) --- # Remotion Rule Parameters: Zod Schema for Videos (2026) URL: https://tokrepo.com/en/workflows/asset-115784a3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion parameters rule teaches AI agents to define Zod schemas for data-driven, parametrizable video compositions. ## What it is The Remotion Rule: Parameters is a skill rule from the official Remotion Agent Skill set. It provides guidance for AI coding agents on making Remotion video compositions parametrizable using Zod schemas. B …(content truncated, full version at https://tokrepo.com/en/workflows/asset-115784a3) --- # OpenAI Codex CLI: Terminal Coding Agent Guide (2026) URL: https://tokrepo.com/en/workflows/asset-11647c80 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenAI Codex CLI is a terminal coding agent with sandbox execution and multi-model support. ## What it is OpenAI Codex CLI is the official terminal-based coding agent from OpenAI. It reads your codebase, writes code, executes commands, and manages files directly from the command line. Features include sandbox …(content truncated, full version at https://tokrepo.com/en/workflows/asset-11647c80) --- # Prompt Perfect: System Prompt Engineering Templates (2026) URL: https://tokrepo.com/en/workflows/asset-11680977 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prompt Perfect provides battle-tested system prompt templates for defining LLM personas, agent behaviors, and output constraints. ## What it is Prompt Perfect is a collection of system prompt engineering templates designed for building LLM personas, agents, and workflows. It provides structured formats for defining roles, capabilities, constraints …(content truncated, full version at https://tokrepo.com/en/workflows/asset-11680977) --- # Claude Code Incident Responder Agent Setup (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-1210bd6c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that analyzes logs, traces errors, and generates postmortem reports. ## What it is This is a Claude Code agent configuration specialized for incident response. It helps you analyze application logs, trace error chains, identify root causes, and generate structured postmortem reports. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1210bd6c) --- # pgvector: Vector Similarity Search in PostgreSQL (2026) URL: https://tokrepo.com/en/workflows/asset-121fb0d5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: pgvector adds vector types and similarity search indexes to PostgreSQL for RAG, semantic search, and recommendations. ## What it is pgvector is a PostgreSQL extension that adds a native `vector` data type, HNSW and IVFFlat indexes, and distance operators for similarity search. It lets you run semantic search, RAG retrieval, and recomme …(content truncated, full version at https://tokrepo.com/en/workflows/asset-121fb0d5) --- # Trigger.dev: Background Jobs for TypeScript Apps (2026) URL: https://tokrepo.com/en/workflows/asset-1290f820 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Trigger.dev runs background jobs in TypeScript with retries, scheduling, and built-in observability. ## What it is Trigger.dev is an open-source background job framework purpose-built for TypeScript. It lets you write long-running tasks with automatic retries, cron scheduling, and real-time observability. Unlike tradit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1290f820) --- # CrewAI: Multi-Agent Orchestration Framework 2026 URL: https://tokrepo.com/en/workflows/asset-129bde64 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CrewAI orchestrates teams of role-based AI agents that collaborate on complex tasks. ## What it is CrewAI is a Python framework for building teams of autonomous AI agents that collaborate on complex tasks. You define agents with specific roles (researcher, writer, reviewer), assign them tasks, and CrewA …(content truncated, full version at https://tokrepo.com/en/workflows/asset-129bde64) --- # Testcontainers: Docker for Integration Tests (2026) URL: https://tokrepo.com/en/workflows/asset-12b8fc17 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Testcontainers spins up real databases and services in Docker for reliable integration tests. ## What it is Testcontainers is a set of language libraries that spin up real Docker containers for integration tests. Instead of mocking Postgres, Kafka, Redis, Selenium, or Elasticsearch, you run the actual service in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-12b8fc17) --- # code-simplifier: Anthropic Cleanup Subagent for Claude Code URL: https://tokrepo.com/en/workflows/asset-1304ff4c Type: featured-workflow Updated: 2026-04-30T11:16:39.060460 > **TL;DR**: code-simplifier is Anthropic's official Claude Code cleanup subagent. ## What code-simplifier Actually Does code-simplifier is the Anthropic-published Claude Code subagent that refactors recently modified files for clarity, consistency, and maintainability while preserving exact observabl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1304ff4c) --- # Together AI Audio TTS/STT Skill for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-1342ba0e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill covering Together AI's audio API: text-to-speech, streaming TTS, speech-to-text, and realtime voice. ## What it is This skill teaches Claude Code how to use Together AI's audio API. It covers text-to-speech (REST and WebSocket streaming), speech-to-text transcription, and realtime voice interaction through Together AI' …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1342ba0e) --- # Grafana Pyroscope: Continuous Profiling Backend in 2026 URL: https://tokrepo.com/en/workflows/asset-138e4edf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pyroscope records CPU, memory, and lock profiles from production services and exposes them as label-queryable flamegraphs. ## What it is Grafana Pyroscope is a continuous profiling backend that records CPU, memory, goroutine, and lock profiles from production services. After joining Grafana Labs, it was merged with Phlare into a single Graf …(content truncated, full version at https://tokrepo.com/en/workflows/asset-138e4edf) --- # Activepieces: Open-Source AI Workflow Automation 2026 URL: https://tokrepo.com/en/workflows/asset-13ddf27d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source workflow automation with 400+ integrations, AI agent support, and self-hosting. A Zapier alternative with 21K+ stars. ## What it is Activepieces is an open-source workflow automation platform that connects 400+ services with a visual flow builder. It supports AI agent nodes, MCP server compatibility, and self-hosting on your own infras …(content truncated, full version at https://tokrepo.com/en/workflows/asset-13ddf27d) --- # OpenLIT: OpenTelemetry-Native LLM Observability (2026) URL: https://tokrepo.com/en/workflows/asset-13e3c714 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenLIT provides one-line OpenTelemetry instrumentation for LLM observability. ## What it is OpenLIT is an open-source observability platform built on OpenTelemetry that monitors LLM application costs, latency, and output quality. With a single line of code, it auto-instruments calls to OpenAI, An …(content truncated, full version at https://tokrepo.com/en/workflows/asset-13e3c714) --- # FastHTML: Build AI Web Apps in Pure Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-143825f7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FastHTML builds full web applications in pure Python using HTMX for interactivity, with no JavaScript required. ## What it is FastHTML is a Python web framework that lets you build modern, interactive web applications entirely in Python. It uses HTMX for client-side interactivity, so you write Python functions that return HTML co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-143825f7) --- # RethinkDB: Real-Time Document Database Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-147bedb5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RethinkDB pushes updated query results to your app in real time, eliminating the need for polling. ## What it is RethinkDB is an open-source document database designed for real-time applications. Unlike traditional databases where your application polls for changes, RethinkDB pushes updated query results to your appl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-147bedb5) --- # Watchtower: Auto-Update Docker Containers (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-1487461c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Watchtower monitors Docker registries and automatically updates running containers when new images are available. ## What it is Watchtower is a Docker container that monitors other running containers and automatically updates them when new images are pushed to their registries. It polls container registries at configurable interval …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1487461c) --- # Unsloth: Fine-Tune LLMs 2x Faster in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-149b2641 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Unsloth delivers 2x faster LLM fine-tuning with 80% less VRAM, no accuracy loss, on a single GPU. ## What it is Unsloth is an open-source library that accelerates LLM fine-tuning by 2x while reducing VRAM usage by up to 80%. It supports popular model families including Llama, Mistral, Gemma, and Qwen. The tool targ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-149b2641) --- # MCP Inspector: Visual Debugging Tool for MCP Servers URL: https://tokrepo.com/en/workflows/asset-14bc1166 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP Inspector is the official web-based tool for connecting to, inspecting, and testing MCP servers with a visual interface for tools, resources, and prompts. ## What it is MCP Inspector is the official visual testing and debugging tool for Model Context Protocol (MCP) servers. It provides a web UI where you connect to any MCP server and inspect its tools, resources, and prom …(content truncated, full version at https://tokrepo.com/en/workflows/asset-14bc1166) --- # MCPHub: Centralized MCP Server Management Hub (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-14e62731 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCPHub provides a single dashboard to manage, route, and monitor multiple MCP servers with hot-swap config. ## What it is MCPHub is a centralized management platform for multiple MCP (Model Context Protocol) servers. It provides a web dashboard for adding, configuring, and monitoring MCP servers, with smart routing to direct …(content truncated, full version at https://tokrepo.com/en/workflows/asset-14e62731) --- # How to Choose an AI Model: Decision Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-14f3a811 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Compare Claude, GPT-4, Gemini, Llama, and Mistral across coding, reasoning, speed, cost, and context window to pick the right model. ## What it is This is a practical decision guide for choosing the right large language model for your task. It compares major models including Claude (Anthropic), GPT-4 (OpenAI), Gemini (Google), Llama (Meta), and Mistr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-14f3a811) --- # AIDE: AI Batch Code Operations for VS Code (2026) URL: https://tokrepo.com/en/workflows/asset-14fb8286 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AIDE adds batch AI operations to VS Code: one-click comments, conversions, and multi-file processing. ## What it is AIDE is a VS Code extension that provides AI-powered batch code operations. It enables one-click code commenting, language conversion, UI-to-code generation, smart paste, and multi-file AI processing direc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-14fb8286) --- # LLMLingua: Compress Prompts 20x with Minimal Loss (2026) URL: https://tokrepo.com/en/workflows/asset-1510da0c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LLMLingua compresses LLM prompts by up to 20x while preserving response quality, cutting token costs. ## What it is LLMLingua is a prompt compression tool from Microsoft Research. It reduces the token count of prompts sent to large language models by up to 20x while maintaining the quality of model outputs. It addresses …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1510da0c) --- # Manifest: Smart LLM Router Cuts API Costs 70% (2026) URL: https://tokrepo.com/en/workflows/asset-15266cba Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Manifest scores each LLM request across 23 dimensions in under 2ms and routes it to the cheapest capable model. ## What it is Manifest is an intelligent LLM routing layer that sits between your application and LLM providers. It analyzes each incoming request across 23 complexity dimensions and routes it to the cheapest model that …(content truncated, full version at https://tokrepo.com/en/workflows/asset-15266cba) --- # Great Expectations: Data Validation for AI 2026 URL: https://tokrepo.com/en/workflows/asset-153bb8e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Great Expectations tests your data like you test code with expressive assertions, profiling, and pipeline integration. ## What it is Great Expectations is a Python library for validating, documenting, and profiling data quality. It provides expressive expectation assertions (like 'expect column values to be between 0 and 100'), automati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-153bb8e0) --- # Qdrant: High-Performance Vector Database for AI (2026) URL: https://tokrepo.com/en/workflows/asset-1566710d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Qdrant is a vector database built in Rust for fast similarity search with advanced filtering, sparse vectors, and multi-tenancy. ## What it is Qdrant is a vector database and similarity search engine designed for AI applications. Written in Rust for performance, it stores high-dimensional vectors alongside arbitrary JSON payloads and supports fil …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1566710d) --- # AI Commit: Auto-Generate Git Commit Messages 2026 URL: https://tokrepo.com/en/workflows/asset-158cf02b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AI Commit generates conventional commit messages from your staged diffs using LLMs. ## What it is AI Commit is a CLI tool that generates conventional commit messages from your staged Git changes using AI. You stage your changes with `git add`, run the AI Commit command, and it analyzes the diff to prod …(content truncated, full version at https://tokrepo.com/en/workflows/asset-158cf02b) --- # Puter: Open-Source Cloud Desktop in Your Browser (2026) URL: https://tokrepo.com/en/workflows/asset-15950368 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Puter is a self-hostable cloud OS with file system, apps, and APIs in the browser. ## What it is Puter is an open-source cloud desktop operating system that runs in your web browser. It provides a full desktop environment with a file system, app ecosystem, and developer APIs. You can self-host it on y …(content truncated, full version at https://tokrepo.com/en/workflows/asset-15950368) --- # Resend: Modern Email API for Developers in 2026 URL: https://tokrepo.com/en/workflows/asset-1595eb81 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Developer-first email API with React Email templates, webhooks, and deliverability built in. Send transactional emails in 3 lines. ## What it is Resend is a developer-first email API that makes sending transactional emails simple. It supports React Email templates for building emails with components, provides webhooks for delivery tracking, and han …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1595eb81) --- # AI Prompt Engineering Best Practices Guide (2026) URL: https://tokrepo.com/en/workflows/asset-15f82b68 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A guide to writing effective prompts covering system prompts, few-shot, chain-of-thought, and structured output. ## What it is This is a comprehensive guide to writing effective prompts for modern AI models including Claude, GPT-4, and Gemini. It covers the fundamental techniques that make prompts more reliable: system prompts, fe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-15f82b68) --- # Vercel AI SDK: Build AI Apps with React and Next.js (2026) URL: https://tokrepo.com/en/workflows/asset-161ad057 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vercel AI SDK provides a unified API for streaming chat, tool calling, and generative UI in React and Next.js apps. ## What it is Vercel AI SDK is the official toolkit for building AI-powered web applications with React and Next.js. It provides a unified API that works across multiple LLM providers, handling streaming responses, tool …(content truncated, full version at https://tokrepo.com/en/workflows/asset-161ad057) --- # Google A2A: Agent-to-Agent Protocol Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-165627cf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google A2A lets AI agents discover, authenticate, and communicate with each other across different frameworks. ## What it is Google A2A (Agent-to-Agent) is an open protocol that enables AI agents to discover, authenticate, and communicate with each other regardless of the framework or provider that built them. Each agent publish …(content truncated, full version at https://tokrepo.com/en/workflows/asset-165627cf) --- # SQLGlot: SQL Parser and Transpiler in Python (2026) URL: https://tokrepo.com/en/workflows/asset-16b7b083 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SQLGlot parses, transpiles, and optimizes SQL across 20+ dialects with zero dependencies in Python. ## What it is SQLGlot is a pure Python library with no external dependencies that parses SQL into an AST, transpiles queries between 20+ SQL dialects, and optimizes query plans. It supports Snowflake, BigQuery, DuckDB, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-16b7b083) --- # ElevenLabs Python SDK: AI Text-to-Speech (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-16d32da9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The official ElevenLabs Python SDK generates realistic AI voiceovers with 30+ languages, voice cloning, and real-time streaming. ## What it is The ElevenLabs Python SDK is the official client library for ElevenLabs' AI text-to-speech API. It provides programmatic access to voice generation with support for 30+ languages, voice cloning from short …(content truncated, full version at https://tokrepo.com/en/workflows/asset-16d32da9) --- # Semaphore: Modern UI for Ansible and Terraform 2026 URL: https://tokrepo.com/en/workflows/asset-16e56309 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Semaphore is a web UI for running Ansible playbooks and Terraform plans with scheduling, team access, and inventory management. ## What it is Semaphore provides a web-based interface for running Ansible playbooks, Terraform plans, and Bash scripts. Instead of SSH-ing into a server and running ansible-playbook manually, teams use Semaphore to man …(content truncated, full version at https://tokrepo.com/en/workflows/asset-16e56309) --- # ccusage: Real-Time Token Cost Tracker for Claude Code URL: https://tokrepo.com/en/workflows/asset-170532fa Type: featured-workflow Updated: 2026-04-30T11:16:39.125602 > **TL;DR**: ccusage reads ~/.claude logs and breaks Claude Code spend by day or session. ## What ccusage Solves for Claude Code Cost Visibility **Direct answer:** `ccusage` is a zero-config TypeScript CLI by Ryotaro Kimura (`ryoppippi`) that reads the local conversation logs Claude Code writes under `~/.cla …(content truncated, full version at https://tokrepo.com/en/workflows/asset-170532fa) --- # Antigravity Awesome Skills: 1340+ AI Agent Skills (2026) URL: https://tokrepo.com/en/workflows/asset-179ee528 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Antigravity provides 1,340+ installable skills for Claude Code, Cursor, Codex CLI, and Gemini CLI. ## What it is Antigravity Awesome Skills is an installable library of 1,340+ agentic skills for AI coding assistants. Each skill is a standalone markdown file that gives your AI agent domain expertise in areas like brai …(content truncated, full version at https://tokrepo.com/en/workflows/asset-179ee528) --- # Chrome DevTools MCP: Browser Debugging for AI in 2026 URL: https://tokrepo.com/en/workflows/asset-17f46368 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that gives AI coding agents full access to Chrome DevTools for browser automation, debugging, and performance analysis. ## What it is Chrome DevTools MCP is a Model Context Protocol server that lets AI coding agents control and inspect a live Chrome browser. With 29 built-in tools, it provides reliable browser automation via Puppeteer, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-17f46368) --- # Fluent Bit: Lightweight Log and Metrics Processor (2026) URL: https://tokrepo.com/en/workflows/asset-18438936 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fluent Bit collects logs, metrics, and traces from any source, processes them with built-in filters, and routes them to any destination. ## What it is Fluent Bit is a fast, lightweight telemetry agent from the Fluentd ecosystem. It collects logs, metrics, and traces from any source, processes them with built-in filters and parsers, and routes the output …(content truncated, full version at https://tokrepo.com/en/workflows/asset-18438936) --- # Taipy: Build AI Web Apps in Pure Python (2026) URL: https://tokrepo.com/en/workflows/asset-18c2908b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Taipy builds production AI web applications in pure Python, handling UI, data pipelines, and scenario management. ## What it is Taipy is a Python framework for building data-driven and AI-powered web applications without writing JavaScript or HTML. It provides two main components: Taipy GUI for interactive frontends and Taipy Core …(content truncated, full version at https://tokrepo.com/en/workflows/asset-18c2908b) --- # Homepage: Self-Hosted Dashboard and Startpage 2026 URL: https://tokrepo.com/en/workflows/asset-194a3a23 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Homepage gives you a self-hosted dashboard with 100+ service integrations via YAML config. ## What it is Homepage is a modern, fully customizable application dashboard and startpage. It integrates with 100+ services to display real-time status, weather, bookmarks, and widgets, all configured through simple YA …(content truncated, full version at https://tokrepo.com/en/workflows/asset-194a3a23) --- # Pydantic: Data Validation for AI Agent Pipelines 2026 URL: https://tokrepo.com/en/workflows/asset-1960042c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pydantic enforces type safety and validation in Python, powering AI agent tool definitions, LLM structured outputs, and API schemas. ## What it is Pydantic is Python's most widely used data validation library. It uses Python type hints to define data schemas and validates input automatically at runtime. In the AI ecosystem, Pydantic is the foundation …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1960042c) --- # Lark CLI Mail Skill: Email Management for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-196351b6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An AI agent skill for sending, reading, and managing Lark/Feishu email through the command line. ## What it is The Mail skill is one of 19 AI agent skills in the Lark CLI toolkit. It gives AI agents command-line access to Lark/Feishu email operations: sending emails, reading inbox messages, managing folders, search …(content truncated, full version at https://tokrepo.com/en/workflows/asset-196351b6) --- # Garden: Kubernetes DevOps Automation Guide (2026) URL: https://tokrepo.com/en/workflows/asset-19961b63 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Garden defines your stack as a dependency graph for fast incremental builds and live reloading in remote Kubernetes clusters. ## What it is Garden is a DevOps automation tool that accelerates Kubernetes development and testing workflows. It lets you define your entire stack as a dependency graph, then handles building, deploying, and testing w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-19961b63) --- # External-DNS: Auto DNS Records for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-1999538f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: External-DNS syncs Kubernetes service endpoints to DNS providers like Route53 and Cloudflare. ## What it is External-DNS is a Kubernetes controller that watches Services, Ingresses, and other resources and automatically creates, updates, and deletes DNS records in external DNS providers. It supports Route53, Clo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1999538f) --- # ko: Build Go Container Images Without Docker 2026 URL: https://tokrepo.com/en/workflows/asset-19eb9815 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ko builds Go binaries, layers them onto distroless base images, and pushes to any OCI registry -- no Docker daemon or Dockerfile needed. ## What it is ko is a container image builder specifically for Go applications. It compiles your Go binary, layers it onto a minimal distroless base image, and pushes the result to any OCI-compatible container registry. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-19eb9815) --- # Agent Skills Standard: Cross-Platform AI Skills (2026) URL: https://tokrepo.com/en/workflows/asset-1a1292f5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The Agent Skills Standard defines a portable format so one skill works across Claude Code, Cursor, Gemini CLI, and more. ## What it is The Agent Skills Standard is a specification for writing portable AI skills that work across multiple agent platforms. Instead of writing separate instructions for Claude Code, Cursor, Gemini CLI, and othe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a1292f5) --- # Cursor AI Tips: Reddit Best Practices Guide 2026 URL: https://tokrepo.com/en/workflows/asset-1a138ad3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Community-curated Cursor AI guide covering shortcuts, Composer mode, .cursorrules, model selection, and safety practices. ## What it is This is a comprehensive guide to Cursor AI curated from Reddit community discussions. It covers keyboard shortcuts, Composer mode tips, .cursorrules file examples, Max Mode pricing strategies, model benchm …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a138ad3) --- # Tabby: Self-Hosted AI Coding Assistant Setup (2026) URL: https://tokrepo.com/en/workflows/asset-1a1d4061 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tabby provides self-hosted AI code completion and chat with full data privacy and 20+ model support. ## What it is Tabby is a self-hosted AI coding assistant that delivers code completion and chat without sending your code to external servers. It serves as a privacy-first alternative to cloud-based tools like GitHub Co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a1d4061) --- # Cube: Open Source Semantic Layer for Data Apps (2026) URL: https://tokrepo.com/en/workflows/asset-1a259f83 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cube defines metrics once in your warehouse and serves them via SQL, REST, GraphQL, and MDX to any consumer. ## What it is Cube (formerly Cube.js) is an open-source semantic layer that sits between your data warehouse and your data consumers. You define metrics, dimensions, and joins in a data model, and Cube exposes them via …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a259f83) --- # Remotion Images Rule: Embed Images in Video (2026) URL: https://tokrepo.com/en/workflows/asset-1a28261c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion agent rule that teaches AI assistants the correct Img component patterns for video. ## What it is This Remotion rule defines how AI coding agents should embed images in Remotion video compositions using the `` component. It is part of the official Remotion Agent Skill for programmatic video creati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a28261c) --- # oncall-guide: Claude Code Incident Response Subagent URL: https://tokrepo.com/en/workflows/asset-1a6b17c7 Type: featured-workflow Updated: 2026-04-30T11:16:39.179297 > **TL;DR**: oncall-guide is a community-built Claude Code subagent that automates the first 5 minutes of incident response. It parses the alert, pulls the last 3 production deploys with git log, correlates Sentry errors since the most recent deploy, searches the #incidents Slack channel, looks up the matching runbook, and recommends ROLLBACK, INVESTIGATE, or WAIT with the exact next command. It is strictly read-only and never auto-rolls back, restarts, or pages anyone. ## What oncall-guide Does at 3 AM When a page lands at 3 AM, the worst part is rarely the bug itself. The worst part is reconstructing context: which deploy went out, which dashboard to check, whether to roll back, who …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a6b17c7) --- # Hoppscotch: Open-Source API Development Platform (2026) URL: https://tokrepo.com/en/workflows/asset-1a83c479 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hoppscotch tests REST, GraphQL, WebSocket, and gRPC APIs in the browser. ## What it is Hoppscotch is an open-source API development platform that provides a fast, beautiful interface for testing REST, GraphQL, WebSocket, SSE, and gRPC APIs. It runs in the browser, requires no installation, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a83c479) --- # Continue: AI Code Review Agents for CI/CD (2026) URL: https://tokrepo.com/en/workflows/asset-1a9a0bed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Continue runs AI-powered code review checks on PRs with markdown-defined rules and pass/fail diffs. ## What it is Continue is an open-source AI code assistant that runs code review agents as automated checks on pull requests. You define review rules in Markdown, and Continue's agents analyze diffs, flag issues, and pr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1a9a0bed) --- # Evidently: ML and LLM Monitoring with 100+ Metrics (2026) URL: https://tokrepo.com/en/workflows/asset-1aa244dc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Evidently provides 100+ metrics for monitoring ML and LLM application quality. ## What it is Evidently is an open-source Python library for monitoring machine learning models and LLM applications. It provides over 100 built-in metrics covering data drift, model quality, classification and regressi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1aa244dc) --- # Jan: Run AI Models Locally on Your Desktop 2026 URL: https://tokrepo.com/en/workflows/asset-1abc2bed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jan lets you download and run open-source LLMs locally with a desktop UI and an OpenAI-compatible API, fully offline. ## What it is Jan is an open-source desktop application for running large language models locally on your computer. It provides a ChatGPT-like interface where you browse a model hub, download models (Llama, Mistral, Gem …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1abc2bed) --- # Airweave: Context Retrieval Layer for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-1abeff10 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Airweave connects AI agents to 50+ SaaS apps through a unified search API with continuous sync and MCP support. ## What it is Airweave is an open-source context retrieval layer that connects AI agents and RAG systems to 50+ applications including Notion, Slack, GitHub, Jira, Salesforce, and Google Docs. It continuously syncs data …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1abeff10) --- # Awesome Prompt Engineering: Papers and Tools (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-1b3fa22b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated list of 60+ papers, 50+ tools, benchmarks, and courses covering all areas of prompt engineering. ## What it is Awesome Prompt Engineering is a hand-curated GitHub repository collecting papers, tools, benchmarks, and courses related to prompt engineering and context engineering. It covers chain-of-thought (CoT) reas …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b3fa22b) --- # Visual Studio Code: The Standard Code Editor (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-1b748015 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: VS Code is a free, open-source code editor by Microsoft with IntelliSense, debugging, Git, and an extensions marketplace. ## What it is Visual Studio Code is a free, open-source code editor built by Microsoft on the Electron framework. It combines the speed of a text editor with IDE features: IntelliSense code completion, integrated debugg …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b748015) --- # Go Programming Language: Cloud Infrastructure 2026 URL: https://tokrepo.com/en/workflows/asset-1b74877a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Go offers fast builds, goroutine concurrency, and a rich stdlib for cloud infrastructure. ## What it is Go is an open-source programming language designed at Google. It features fast compilation, garbage collection, built-in concurrency via goroutines and channels, and a comprehensive standard library. Go co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b74877a) --- # Rust: Memory-Safe Systems Programming Language in 2026 URL: https://tokrepo.com/en/workflows/asset-1b74899e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Systems language with memory safety via ownership, no garbage collector, powering critical infrastructure. ## What it is Rust is a systems programming language that guarantees memory safety without a garbage collector through its ownership and borrowing system. It delivers performance comparable to C and C++ while preventing …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b74899e) --- # TypeScript: JavaScript with Static Types Guide 2026 URL: https://tokrepo.com/en/workflows/asset-1b748b68 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TypeScript is a typed superset of JavaScript that compiles to plain JS, catching errors before runtime. ## What it is TypeScript is a superset of JavaScript created by Anders Hejlsberg at Microsoft that adds static types, interfaces, generics, and modern ES features. It compiles down to plain JavaScript and runs anywhere …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b748b68) --- # Zig: Systems Programming Language and Toolchain (2026) URL: https://tokrepo.com/en/workflows/asset-1b748d0a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Systems programming language with no hidden control flow, explicit allocators, and universal cross-compilation. ## What it is Zig is a general-purpose systems programming language designed as a practical alternative to C. It eliminates hidden control flow, hidden allocations, and the C preprocessor while providing compile-time co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b748d0a) --- # kube-bench: CIS Kubernetes Security Benchmark (2026) URL: https://tokrepo.com/en/workflows/asset-1b8a27ea Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: kube-bench scans Kubernetes master and worker nodes against CIS Benchmark security guidelines for compliance validation. ## What it is kube-bench is a Go application by Aqua Security that checks whether Kubernetes clusters are deployed according to CIS Benchmark security guidelines. It scans master and worker node configurations, verifyin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1b8a27ea) --- # Chroma Embedding Database: Vector Store for AI (2026) URL: https://tokrepo.com/en/workflows/asset-1bcbfd04 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Chroma provides a simple API for embedding, storing, and querying documents as vectors with in-memory, local, and client-server deployment modes. ## What it is Chroma is a lightweight open-source vector database designed for AI applications. It stores document embeddings and supports similarity search with a minimal API. Chroma runs in three modes: in-memory for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1bcbfd04) --- # LlamaIndex: Data Framework for LLM Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-1bd234e2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LlamaIndex connects private data to LLMs through indexing, retrieval, and structured extraction. ## What it is LlamaIndex is a data framework that connects your private data to large language models. It provides tools for document ingestion, indexing, retrieval-augmented generation (RAG), knowledge graph constructi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1bd234e2) --- # Graphiti: Temporal AI Knowledge Graph by Zep 2026 URL: https://tokrepo.com/en/workflows/asset-1c08f869 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Graphiti builds temporal knowledge graphs from AI conversations, tracking entity changes and resolving contradictions over time. ## What it is Graphiti is a Python library by Zep that builds dynamic knowledge graphs from AI agent conversations and unstructured data. Unlike static knowledge graphs, Graphiti tracks entity changes over time, resolve …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1c08f869) --- # PostgreSQL MCP Server for AI Agents in 2026 URL: https://tokrepo.com/en/workflows/asset-1ca69a22 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Connect Claude Code or Cursor to PostgreSQL for read-only queries, schema inspection, and data analysis via MCP. ## What it is PostgreSQL MCP Server is an MCP integration that connects AI coding tools directly to PostgreSQL databases. It enables schema inspection, read-only SQL queries, and data analysis through natural language. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1ca69a22) --- # Claude Code Templates: 600+ Agents and MCPs (2026) URL: https://tokrepo.com/en/workflows/asset-1cf2f5bc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A template library offering 600+ agents, 200+ commands, and 55+ MCPs for Claude Code, installable with a single npx command. ## What it is Claude Code Templates is a curated library of ready-to-use configurations for Claude Code. It includes over 600 agent templates, 200+ slash commands, and 55+ MCP server configurations. Each template is ins …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1cf2f5bc) --- # Haystack: Open-Source RAG and Agent Framework (2026) URL: https://tokrepo.com/en/workflows/asset-1d2ed652 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Haystack is a Python framework by deepset for building RAG pipelines, search systems, and AI agents with 30+ integrations. ## What it is Haystack is an open-source Python framework by deepset for building retrieval-augmented generation (RAG) pipelines, search systems, and AI agents. It uses composable components — retrievers, readers, gener …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1d2ed652) --- # Finch: Open Source Container Development by AWS (2026) URL: https://tokrepo.com/en/workflows/asset-1dd7ecbb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Finch is an AWS-backed open-source container tool with a Docker-compatible CLI built on containerd, nerdctl, and Lima. ## What it is Finch is an open-source container development tool created by AWS. It provides a Docker-compatible CLI for building, running, and pushing container images. Under the hood, Finch uses containerd as the runt …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1dd7ecbb) --- # PandasAI: Chat with Your Data Using AI in 2026 URL: https://tokrepo.com/en/workflows/asset-1de69db6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PandasAI lets you chat with SQL databases, CSV, and Parquet files using natural language queries. ## What it is PandasAI is a Python library that adds conversational capabilities to data analysis. You ask questions about your data in natural language, and PandasAI generates the Python code or SQL query to answer the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1de69db6) --- # Toolhouse: Managed AI Tool Infrastructure Guide (2026) URL: https://tokrepo.com/en/workflows/asset-1e02143f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Toolhouse gives AI agents 100+ pre-built cloud-hosted tools with managed authentication and a single SDK call. ## What it is Toolhouse is a cloud-hosted tool execution platform for AI agents. It provides over 100 pre-built tools covering web search, code execution, email, file manipulation, and more. Each tool comes with managed …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1e02143f) --- # OpenTelemetry Collector: Vendor-Neutral Pipeline 2026 URL: https://tokrepo.com/en/workflows/asset-1e161adc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The OTel Collector replaces per-vendor telemetry agents with one portable binary. ## What it is The OpenTelemetry Collector is the CNCF-graduated pipeline for receiving, processing, and exporting metrics, logs, and traces across any observability backend. It replaces per-vendor agents (Datadog agent, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1e161adc) --- # DeerFlow: ByteDance's Open-Source SuperAgent for Complex Tasks URL: https://tokrepo.com/en/workflows/asset-1e49009e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DeerFlow is ByteDance's open-source SuperAgent with sub-agents, sandboxes, and memory for complex tasks spanning minutes to hours across research, code, and creative work. ## What it is DeerFlow is an open-source SuperAgent framework from ByteDance designed for long-horizon tasks. It orchestrates sub-agents, sandboxed execution environments, persistent memory, and reusable skills to handl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1e49009e) --- # GitHub Copilot: Official Customization Collection (2026) URL: https://tokrepo.com/en/workflows/asset-1e571d3c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of GitHub Copilot customizations: agents, skills, instructions, plugins, and hooks. ## What it is This collection gathers official GitHub Copilot customization resources including agents, skills, instruction files, plugins, hooks, and agentic workflow patterns. It covers the full spectrum of Copilot ex …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1e571d3c) --- # Serverless Framework: Deploy to Any Cloud (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-1ec1408a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The most adopted toolkit for building serverless apps. Define infrastructure and functions in one YAML file, deploy with one command. ## What it is The Serverless Framework is the most widely adopted toolkit for building and deploying serverless applications. It supports AWS Lambda, Azure Functions, Google Cloud Functions, and other FaaS platforms. Yo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1ec1408a) --- # Novel: Notion-Style AI Editor Component for React (2026) URL: https://tokrepo.com/en/workflows/asset-1f0b3eee Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Novel is a drop-in React editor with AI autocompletion and slash commands. ## What it is Novel is an open-source WYSIWYG editor component for React that provides a Notion-like editing experience with AI-powered autocompletion. It includes slash commands for inserting blocks, a bubble menu for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1f0b3eee) --- # Lark CLI Messenger: Chat and Messages Skill 2026 URL: https://tokrepo.com/en/workflows/asset-1f1d875f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lark CLI Messenger skill lets AI agents send messages, manage group chats, and search chat history in Lark/Feishu. ## What it is The Lark CLI Messenger skill provides instant messaging capabilities for AI coding agents through the Lark/Feishu platform. It enables sending and replying to messages, managing group chats, searching chat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1f1d875f) --- # Everything Claude Code: 38 Agents 156 Skills (2026) URL: https://tokrepo.com/en/workflows/asset-1fa30a19 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A single plugin that adds 38 agents and 156 skills spanning 12 language ecosystems to Claude Code. ## What it is Everything Claude Code is a community-built plugin that bundles 38 specialized AI agents and 156 skills into a single installable package for Claude Code. It covers 12 language ecosystems and was an Anthro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-1fa30a19) --- # Prowler: Cloud Security Assessment Tool for 2026 URL: https://tokrepo.com/en/workflows/asset-201d9fd1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prowler audits cloud infrastructure against hundreds of compliance checks automatically. ## What it is Prowler is an open-source security tool that audits your cloud infrastructure against hundreds of compliance checks for AWS, Azure, GCP, and Kubernetes. It generates actionable reports covering CIS benchma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-201d9fd1) --- # Coolify: Self-Hosted Vercel and Netlify Alternative (2026) URL: https://tokrepo.com/en/workflows/asset-202dfab1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Coolify is a self-hosted PaaS for deploying apps and databases on your server. ## What it is Coolify is an open-source, self-hosted platform-as-a-service (PaaS) that lets you deploy applications, databases, and services on your own server with a visual dashboard. It supports Docker, Docker Compose …(content truncated, full version at https://tokrepo.com/en/workflows/asset-202dfab1) --- # verify-app: E2E Test Subagent for Claude Code Setup URL: https://tokrepo.com/en/workflows/asset-203ea157 Type: featured-workflow Updated: 2026-04-30T11:16:39.240195 > **TL;DR**: verify-app is a Claude Code subagent that runs end-to-end tests on whatever files Claude just changed and reports failures with reproduction hints. It is the open-source community equivalent of one of Boris Cherny's named subagents and ships ready to drop into your project in under a minute, with no extra dependencies beyond Claude Code 1.x. ## What verify-app Is and Why It Matters verify-app is a Claude Code subagent that runs end-to-end tests against the files Claude just modified, then reports failing assertions with a one-line root-cause hypothesis. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-203ea157) --- # Codex Plugin for Claude Code: OpenAI Cross-Review (2026) URL: https://tokrepo.com/en/workflows/asset-208207e5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The Codex plugin adds OpenAI code review and task delegation inside Claude Code for multi-model collaboration. ## What it is The Codex Plugin for Claude Code is an official OpenAI integration that brings Codex code review and task delegation capabilities directly into the Claude Code environment. It enables adversarial code revi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-208207e5) --- # Onyx: Self-Hosted AI Chat with RAG Connectors (2026) URL: https://tokrepo.com/en/workflows/asset-210679a0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Onyx provides self-hosted AI chat with RAG and 40+ connectors for enterprise search over your internal documents and tools. ## What it is Onyx (formerly Danswer) is a self-hosted AI chat platform that connects to your organization's internal knowledge. It supports 40+ connectors for tools like Slack, Confluence, Google Drive, Notion, GitHub, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-210679a0) --- # Haystack: Production RAG and Agent Framework 2026 URL: https://tokrepo.com/en/workflows/asset-2126f372 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Haystack builds composable, model-agnostic AI pipelines for retrieval-augmented generation and agent workflows. ## What it is Haystack is an open-source framework by deepset for building composable AI pipelines. It supports retrieval-augmented generation (RAG), document search, conversational agents, and custom NLP workflows. Hay …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2126f372) --- # fd: Fast User-Friendly Alternative to find in 2026 URL: https://tokrepo.com/en/workflows/asset-224ccbe5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: fd replaces the find command with smart defaults: color output, gitignore-aware search, regex patterns, and parallel directory traversal in Rust. ## What it is fd is a command-line tool written in Rust that finds files and directories. It provides a simpler syntax and smarter defaults compared to the traditional `find` command. Features include colorized output, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-224ccbe5) --- # HTTPie CLI: Modern HTTP Client for API Testing (2026) URL: https://tokrepo.com/en/workflows/asset-224cd323 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: HTTPie replaces curl with intuitive syntax, colorized output, built-in JSON support, and session management for API work. ## What it is HTTPie is a command-line HTTP client designed for API exploration and testing. It provides an intuitive syntax where headers, query parameters, and JSON data are expressed naturally. Output is automaticall …(content truncated, full version at https://tokrepo.com/en/workflows/asset-224cd323) --- # Yazi: Blazing Fast Terminal File Manager in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-224cd538 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Yazi is a Rust-based terminal file manager with image previews, fuzzy search, and plugin extensibility. ## What it is Yazi is a terminal file manager written in Rust, built on async I/O for speed. It supports image and video previews directly in the terminal, fuzzy search, batch rename operations, and a plugin system. It …(content truncated, full version at https://tokrepo.com/en/workflows/asset-224cd538) --- # btop: Beautiful Terminal Resource Monitor for 2026 URL: https://tokrepo.com/en/workflows/asset-224cd6fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: btop displays CPU, memory, disk, network, and process stats in a beautiful terminal UI with mouse support, themes, and minimal resource usage. ## What it is btop is a terminal-based resource monitor written in C++ that displays real-time usage and statistics for CPU, memory, disks, network, and processes. It features a polished TUI with mouse support, gradient …(content truncated, full version at https://tokrepo.com/en/workflows/asset-224cd6fd) --- # delta: Syntax-Highlighting Pager for Git Diff (2026) URL: https://tokrepo.com/en/workflows/asset-224cd8c0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: delta replaces the default git pager with syntax-highlighted, side-by-side diffs with line numbers and themes. ## What it is delta is a syntax-highlighting pager for git, diff, grep, and ripgrep output. It provides side-by-side diffs with language-aware highlighting, line numbers, and customizable themes. It is a drop-in replace …(content truncated, full version at https://tokrepo.com/en/workflows/asset-224cd8c0) --- # Crossplane: Cloud Native Control Plane Framework (2026) URL: https://tokrepo.com/en/workflows/asset-22cb64cd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Crossplane lets you manage AWS, Azure, and GCP resources as Kubernetes custom resources. ## What it is Crossplane is an open-source framework that extends Kubernetes with Custom Resource Definitions (CRDs) representing cloud infrastructure. Instead of using separate tools like Terraform or CloudFormation, y …(content truncated, full version at https://tokrepo.com/en/workflows/asset-22cb64cd) --- # GPT Researcher: Autonomous Research Report Agent (2026) URL: https://tokrepo.com/en/workflows/asset-23330210 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GPT Researcher generates detailed, cited research reports from a single query automatically. ## What it is GPT Researcher is an open-source autonomous AI agent that produces comprehensive research reports from a single query. Given a topic, it plans sub-questions, searches multiple web sources, scrapes and summ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-23330210) --- # Remotion Lottie Rule: Embed Animations in Video (2026) URL: https://tokrepo.com/en/workflows/asset-2348d25f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Remotion rule teaches AI agents how to embed Lottie animations in React-based programmatic video. ## What it is Remotion Rule: Lottie is a skill rule that activates automatically when working with Lottie animations in a Remotion project. It provides the coding patterns and API knowledge needed to embed Lottie JSON a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2348d25f) --- # CAMEL: Multi-Agent Framework at Scale in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-23732313 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CAMEL is a multi-agent framework for building and studying large-scale AI agent communication. ## What it is CAMEL (Communicative Agents for Mind Exploration of Large-Scale Language Model Society) is an open-source multi-agent framework designed for studying scaling laws and building production agent systems. It …(content truncated, full version at https://tokrepo.com/en/workflows/asset-23732313) --- # Fabric: AI Prompt Patterns and CLI Automation (2026) URL: https://tokrepo.com/en/workflows/asset-23b1fdf9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fabric provides 100+ reusable AI prompt patterns you run from the CLI to summarize content, extract wisdom, write, and code. ## What it is Fabric is a curated collection of reusable AI prompt patterns designed for common tasks like summarizing content, extracting key insights, writing, and coding. Each pattern is a well-crafted system prompt …(content truncated, full version at https://tokrepo.com/en/workflows/asset-23b1fdf9) --- # Faster Whisper: 4x Faster Speech-to-Text Guide 2026 URL: https://tokrepo.com/en/workflows/asset-24576b2c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Faster Whisper runs OpenAI Whisper models up to 4x faster using CTranslate2 with reduced memory usage. ## What it is Faster Whisper is a reimplementation of OpenAI's Whisper automatic speech recognition model using CTranslate2, a fast inference engine for Transformer models. It achieves up to 4x faster transcription comp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-24576b2c) --- # Knex.js SQL Query Builder for Node.js in 2026 URL: https://tokrepo.com/en/workflows/asset-2460ef98 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Knex.js provides a fluent JavaScript API to build parameterized SQL queries across PostgreSQL, MySQL, SQLite, and Oracle. ## What it is Knex.js is one of the most widely used SQL query builders for Node.js. It provides a chainable, fluent JavaScript API for constructing parameterized SQL queries that work across PostgreSQL, MySQL, MariaDB, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2460ef98) --- # OpenDeepWiki: Turn Any Repo into AI Docs (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-24613482 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenDeepWiki turns any Git repo into a searchable AI knowledge base with diagrams and chat. ## What it is OpenDeepWiki is a self-hosted tool that converts code repositories from GitHub, GitLab, and Gitea into AI-powered documentation sites. It analyzes source code, generates structured documentation with Merma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-24613482) --- # Dify: Open-Source LLMOps Platform for AI Apps (2026) URL: https://tokrepo.com/en/workflows/asset-2464dd99 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dify provides a visual drag-and-drop workflow editor for building RAG, agent, and AI apps. ## What it is Dify is a visual platform for building production AI applications without deep coding. It provides a drag-and-drop workflow editor, RAG pipeline, agent builder, prompt IDE, and automatic API deployment. Ev …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2464dd99) --- # Lark CLI Skill: Auth, Config and Security (2026) URL: https://tokrepo.com/en/workflows/asset-24871f37 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Foundation skill for Lark/Feishu CLI covering app authentication, config management, identity switching, and security rules. ## What it is The Lark CLI Shared Skill is the foundation layer for Lark/Feishu command-line automation. It provides app configuration, authentication login flows, identity switching between multiple Lark apps, scope ma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-24871f37) --- # OpenFaaS: Portable Serverless Functions on K8s (2026) URL: https://tokrepo.com/en/workflows/asset-258f31fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenFaaS runs serverless functions on Kubernetes or containerd with autoscaling and metrics. ## What it is OpenFaaS is a framework for packaging code, binaries, or containers as portable serverless functions. It runs on Kubernetes or containerd, providing autoscaling, metrics collection, and a rich CLI for mana …(content truncated, full version at https://tokrepo.com/en/workflows/asset-258f31fe) --- # Repomix: Pack Any Repo into LLM-Ready Context 2026 URL: https://tokrepo.com/en/workflows/asset-259d2d70 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI tool that compresses an entire repository into one text file optimized for LLM context windows. Supports token counting. ## What it is Repomix is a CLI tool that packs an entire code repository into a single text file optimized for LLM context windows. It respects `.gitignore`, supports custom file filtering with glob patterns, counts tok …(content truncated, full version at https://tokrepo.com/en/workflows/asset-259d2d70) --- # kind: Run Local Kubernetes Clusters in Docker (2026) URL: https://tokrepo.com/en/workflows/asset-25e04457 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: kind creates local Kubernetes clusters using Docker containers as nodes, ideal for testing and CI/CD pipelines. ## What it is kind (Kubernetes IN Docker) is a tool for running local Kubernetes clusters where each cluster node is a Docker container. It was originally designed for testing Kubernetes itself but has become a standard …(content truncated, full version at https://tokrepo.com/en/workflows/asset-25e04457) --- # Ant Design: Enterprise React UI Library Guide 2026 URL: https://tokrepo.com/en/workflows/asset-25e291e1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ant Design provides 60+ production-ready React components with comprehensive patterns for enterprise admin dashboards and CRM systems. ## What it is Ant Design is an enterprise-class UI design language and React component library created by Alibaba. It provides 60+ production-ready components including Table, Form, Modal, DatePicker, Upload, and Tree, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-25e291e1) --- # Vuetify: Material Design Framework for Vue 3 (2026) URL: https://tokrepo.com/en/workflows/asset-25e29ccf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vuetify provides 80+ Material Design 3 components for Vue 3 with SSR support, theming, treeshaking, and accessibility. ## What it is Vuetify is the most popular Material Design component framework for Vue 3. It provides 80+ beautifully crafted components following Material Design 3 guidelines, with built-in SSR support, dynamic theming, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-25e29ccf) --- # RxJS Reactive Programming for JavaScript in 2026 URL: https://tokrepo.com/en/workflows/asset-25e2a014 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RxJS models async data as observable streams you compose with declarative operators. ## What it is RxJS is the reactive extensions library for JavaScript. It implements the Observable pattern, letting you treat click events, HTTP responses, WebSocket messages, and timers as composable data streams. With …(content truncated, full version at https://tokrepo.com/en/workflows/asset-25e2a014) --- # Element Plus: Vue 3 Component Library Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-25e2a2cf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Element Plus provides 60+ Vue 3 components with TypeScript support, clean design, and strong community. ## What it is Element Plus is the Vue 3 successor to Element UI, built by the original Element team. It provides over 60 desktop-first components with a clean aesthetic, full TypeScript support, and tree-shakable import …(content truncated, full version at https://tokrepo.com/en/workflows/asset-25e2a2cf) --- # Lit: Fast Lightweight Web Components by Google (2026) URL: https://tokrepo.com/en/workflows/asset-25e2a55c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lit builds standards-based web components with reactive properties, scoped styles, and declarative templates in 5KB. ## What it is Lit is a library built by Google for creating web components using standard Web Components APIs. It adds reactive properties, scoped CSS styles, and a declarative HTML templating system on top of the nativ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-25e2a55c) --- # Prompt Injection Defense: LLM Security Guide (2026) URL: https://tokrepo.com/en/workflows/asset-2604f7f3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A security guide covering defense patterns, code examples, and testing strategies against prompt injection and LLM attacks. ## What it is This is a comprehensive security guide for defending LLM-powered applications against prompt injection, jailbreaks, data exfiltration, and indirect prompt injection attacks. It covers defense patterns, pro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2604f7f3) --- # Llama Stack: Meta Official LLM App Framework (2026) URL: https://tokrepo.com/en/workflows/asset-2670226a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Llama Stack provides standardized APIs for inference, safety, RAG, agents, and evals with Llama models. ## What it is Llama Stack is the official Meta framework for building applications with Llama models. It provides standardized APIs for inference, safety guardrails, retrieval-augmented generation, agent orchestration, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2670226a) --- # NestJS: Enterprise Node.js Framework Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-267268ba Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NestJS brings modular architecture, dependency injection, and decorators to Node.js server-side development with full TypeScript support. ## What it is NestJS is a progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications using TypeScript. Its architecture is inspired by Angular, featuring modules, contr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-267268ba) --- # TanStack Query: Async State Management for Web Apps (2026) URL: https://tokrepo.com/en/workflows/asset-26726f79 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TanStack Query manages server state, caching, and background refetching across React, Vue, Solid, and Svelte. ## What it is TanStack Query (formerly React Query) is an asynchronous state management library for TypeScript and JavaScript. It handles server-state caching, background updates, stale data revalidation, and data synch …(content truncated, full version at https://tokrepo.com/en/workflows/asset-26726f79) --- # Fastify: Fast Low Overhead Web Framework for Node (2026) URL: https://tokrepo.com/en/workflows/asset-267271ae Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fastify provides schema-driven validation and fast JSON serialization for Node.js APIs. ## What it is Fastify is a web framework for Node.js focused on speed and low overhead. It uses JSON Schema for request validation and response serialization, achieving throughput that matches or exceeds other Node.js f …(content truncated, full version at https://tokrepo.com/en/workflows/asset-267271ae) --- # Remix: Full-Stack React Framework on Web Standards (2026) URL: https://tokrepo.com/en/workflows/asset-26727437 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remix is a full-stack React framework focused on web standards, nested routing, progressive enhancement, and fast server-side data loading. ## What it is Remix is a full-stack React framework that prioritizes web fundamentals over framework abstractions. It uses nested routing to load data in parallel, progressive enhancement to work without JavaScript, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-26727437) --- # Vitest: Next-Gen Testing Framework for Vite (2026) URL: https://tokrepo.com/en/workflows/asset-267275ed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vitest provides Jest-compatible testing with native Vite integration, ESM support, TypeScript, and sub-second watch mode. ## What it is Vitest is a unit testing framework powered by Vite. It provides a Jest-compatible API with native ESM and TypeScript support, instant watch mode using Vite's dev server, snapshot testing, mocking, code cov …(content truncated, full version at https://tokrepo.com/en/workflows/asset-267275ed) --- # MLX: Apple Silicon Machine Learning Framework (2026) URL: https://tokrepo.com/en/workflows/asset-26aa1d66 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MLX provides a NumPy-like API for ML on Apple silicon with unified memory and lazy computation. ## What it is MLX is an array framework for machine learning on Apple silicon, developed by Apple machine learning research. It provides a NumPy-like Python API with composable function transformations (autodiff, vector …(content truncated, full version at https://tokrepo.com/en/workflows/asset-26aa1d66) --- # OpenAI Cookbook: Official Prompting Guides for 2026 URL: https://tokrepo.com/en/workflows/asset-26b9b7dd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official prompting guides from OpenAI covering GPT models, Codex, Meta Prompting, and Realtime API. ## What it is OpenAI Cookbook is the official collection of prompting guides and code examples maintained by OpenAI. It covers GPT-5.2, Codex, Meta Prompting, and the Realtime API, serving as the definitive reference fo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-26b9b7dd) --- # Structured Outputs: Force LLMs to Return Valid JSON (2026) URL: https://tokrepo.com/en/workflows/asset-26c0617e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A guide to techniques for getting reliable, validated JSON output from any LLM. ## What it is This guide covers techniques for forcing LLMs to return valid structured JSON output. It explains OpenAI's structured outputs mode, Claude's tool use for structured responses, the Instructor library for Py …(content truncated, full version at https://tokrepo.com/en/workflows/asset-26c0617e) --- # Zed: High-Performance Code Editor with AI Built-In 2026 URL: https://tokrepo.com/en/workflows/asset-2710f17d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GPU-accelerated Rust code editor with built-in AI assistant, multiplayer editing, and sub-millisecond latency. 55,000+ stars. ## What it is Zed is a high-performance code editor written in Rust with GPU-accelerated rendering, a native AI assistant, and real-time multiplayer editing. It achieves sub-millisecond latency for typing and scrolling …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2710f17d) --- # Remotion Rule: Displaying GIFs in React Video (2026) URL: https://tokrepo.com/en/workflows/asset-274376eb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion skill rule that teaches AI agents how to display GIFs, APNG, AVIF, and WebP in programmatic React video. ## What it is Remotion Rule: GIFs is a skill rule from the official Remotion Agent Skill that covers displaying animated image formats (GIF, APNG, AVIF, WebP) inside Remotion compositions. It activates automatically whe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-274376eb) --- # Remotion Rule: Audio Visualization Patterns in 2026 URL: https://tokrepo.com/en/workflows/asset-27837b61 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion skill rule providing spectrum bars, waveforms, and bass-reactive effects for programmatic video in React. ## What it is This is a Remotion skill rule that provides audio visualization patterns for programmatic video creation in React. It covers spectrum bar animations, waveform rendering, and bass-reactive visual effects. T …(content truncated, full version at https://tokrepo.com/en/workflows/asset-27837b61) --- # LLM Gateway Comparison: LiteLLM vs OpenRouter (2026) URL: https://tokrepo.com/en/workflows/asset-27fc09fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Compare LiteLLM, OpenRouter, and Cloudflare AI Gateway for routing, caching, and cost control. ## What it is This guide compares three LLM API gateways: LiteLLM (a self-hosted proxy that unifies 100+ LLM providers behind an OpenAI-compatible API), OpenRouter (a managed unified API with usage-based pricing), and C …(content truncated, full version at https://tokrepo.com/en/workflows/asset-27fc09fd) --- # OpenRouter: Unified LLM API with Smart Routing (2026) URL: https://tokrepo.com/en/workflows/asset-283d7316 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenRouter unifies 200+ LLM models behind one API with automatic fallbacks, pricing comparison, and usage tracking. ## What it is OpenRouter is a unified API gateway that provides access to 200+ LLM models from OpenAI, Anthropic, Google, Meta, Mistral, and other providers through a single endpoint. It offers automatic fallbacks, pric …(content truncated, full version at https://tokrepo.com/en/workflows/asset-283d7316) --- # Gitingest: Feed Git Repos to LLMs in 2026 URL: https://tokrepo.com/en/workflows/asset-285a3eaf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gitingest converts GitHub repos into a single text file that LLMs can consume, with file tree and source code extraction. ## What it is Gitingest is a Python tool and web service that takes a GitHub repository URL and produces a single, clean text file containing the repo's file tree and source code. It filters out binaries, generated file …(content truncated, full version at https://tokrepo.com/en/workflows/asset-285a3eaf) --- # Promptfoo: LLM Eval and Red-Team Testing (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-288cfb9f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source framework for testing prompts across models, detecting jailbreaks, and catching LLM quality regressions. ## What it is Promptfoo is an open-source CLI and library for evaluating LLM outputs systematically. It runs your prompts against multiple models, scores the outputs using custom assertions (exact match, contains, LLM-g …(content truncated, full version at https://tokrepo.com/en/workflows/asset-288cfb9f) --- # Claude Code Agent: API Architect for REST & GraphQL 2026 URL: https://tokrepo.com/en/workflows/asset-28978138 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Specialized Claude Code agent for designing REST endpoints, GraphQL schemas, authentication flows, and API documentation. ## What it is The API Architect agent is a specialized Claude Code agent for API design tasks. It handles REST endpoint design, GraphQL schema creation, authentication flow planning, rate limiting configuration, API ver …(content truncated, full version at https://tokrepo.com/en/workflows/asset-28978138) --- # Claude Official Skill: Skill Creator and Optimizer (2026) URL: https://tokrepo.com/en/workflows/asset-28e84c3b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude official skill for creating new skills with iterative testing and quantitative evaluation. ## What it is Skill-creator is an official Claude Code skill from Anthropic for creating new skills, modifying existing ones, and measuring skill performance. It provides an iterative workflow: draft a skill, run test p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-28e84c3b) --- # Zellij: Rust Terminal Multiplexer with Plugins (2026) URL: https://tokrepo.com/en/workflows/asset-290aeef4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zellij is a Rust terminal multiplexer with discoverable keybindings, layouts, floating panes, sessions, and a WebAssembly plugin system. ## What it is Zellij is a terminal multiplexer written in Rust that provides sane defaults, discoverable keybindings, a layout system, floating panes, session management, and a WebAssembly plugin system. Unlike tmux, Ze …(content truncated, full version at https://tokrepo.com/en/workflows/asset-290aeef4) --- # DragonflyDB: Modern Redis Replacement for 2026 Stacks URL: https://tokrepo.com/en/workflows/asset-290af6cf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DragonflyDB replaces Redis with a multi-threaded C++ engine delivering 25x throughput and 40% less RAM. ## What it is DragonflyDB is a modern in-memory datastore built from scratch in C++ as a drop-in replacement for Redis and Memcached. It uses a multi-threaded, shared-nothing architecture where each thread owns a slice …(content truncated, full version at https://tokrepo.com/en/workflows/asset-290af6cf) --- # WezTerm: GPU-Accelerated Terminal Emulator in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-290af8f3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: WezTerm is a Rust-based terminal with GPU rendering, Lua config, tabs, splits, and SSH. ## What it is WezTerm is a GPU-accelerated cross-platform terminal emulator and multiplexer written in Rust. It is configured entirely in Lua, providing programmable control over appearance, keybindings, and behavior. B …(content truncated, full version at https://tokrepo.com/en/workflows/asset-290af8f3) --- # Valkey: Open Source Redis Fork by Linux Foundation (2026) URL: https://tokrepo.com/en/workflows/asset-290afcad Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Valkey is a Linux Foundation fork of Redis, fully API-compatible and community-driven for caching and data store workloads. ## What it is Valkey is a community-driven fork of Redis created after Redis changed its license. Maintained by the Linux Foundation, Valkey is fully compatible with Redis APIs, commands, and data formats. It serves as …(content truncated, full version at https://tokrepo.com/en/workflows/asset-290afcad) --- # libSQL by Turso: Open-Contribution Fork of SQLite (2026) URL: https://tokrepo.com/en/workflows/asset-290afe5f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: libSQL extends SQLite with embedded replicas, server mode, vector search, and open-source contributions. ## What it is libSQL is a fork of SQLite created by Turso that is both open source and open to contributions. SQLite itself does not accept external contributions. libSQL adds features that SQLite cannot: embedded repli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-290afe5f) --- # Playwright MCP Server: Browser Automation for AI (2026) URL: https://tokrepo.com/en/workflows/asset-290f10c7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The Playwright MCP server gives AI tools like Claude and Cursor direct browser control for testing and automation. ## What it is The Playwright MCP Server bridges AI coding tools with real browser automation. It lets Claude Code, Cursor, and other AI assistants navigate web pages, fill forms, click buttons, take screenshots, and run …(content truncated, full version at https://tokrepo.com/en/workflows/asset-290f10c7) --- # SaltStack: Event-Driven Infrastructure Automation (2026) URL: https://tokrepo.com/en/workflows/asset-298049da Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SaltStack manages thousands of servers in real time with event-driven automation, ZeroMQ transport, and YAML states. ## What it is Salt (SaltStack) is a Python-based configuration management and remote execution engine. It manages thousands of servers in real time using an event-driven architecture, ZeroMQ transport for fast communica …(content truncated, full version at https://tokrepo.com/en/workflows/asset-298049da) --- # KEDA: Kubernetes Event-Driven Autoscaling (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-298b2541 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KEDA adds event-driven autoscaling to Kubernetes, scaling pods to zero and back using 70+ triggers. ## What it is KEDA (Kubernetes Event-Driven Autoscaling) is a CNCF-graduated project that extends the native Kubernetes Horizontal Pod Autoscaler (HPA) with event-driven triggers. Instead of scaling only on CPU or memor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-298b2541) --- # Buildah: Daemonless OCI Container Image Builder (2026) URL: https://tokrepo.com/en/workflows/asset-299862e5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Buildah builds OCI container images without a daemon or root privileges, with optional Dockerfile-free scripted builds. ## What it is Buildah is a command-line tool for building OCI-compliant container images. Unlike Docker, Buildah does not require a running daemon and can build images without root privileges. It supports standard Docke …(content truncated, full version at https://tokrepo.com/en/workflows/asset-299862e5) --- # Remotion Rule: Text Animations in React (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-29a4a1e6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion skill rule providing typography and text animation patterns for creating animated text in React-based videos. ## What it is Remotion Rule: Text Animations is a skill rule within the official Remotion Agent Skill that provides typography and text animation patterns for programmatic video creation in React. It covers fade-in, sli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-29a4a1e6) --- # OpenClaw: Local-First Personal AI Assistant (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-29f26e48 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenClaw is a local-first AI assistant that runs on your devices and connects to 20+ messaging platforms with voice control and smart home support. ## What it is OpenClaw is a local-first personal AI assistant that runs on your own devices. It connects to over 20 messaging platforms (WhatsApp, Telegram, Slack, Discord, iMessage, Teams), supports voice control, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-29f26e48) --- # Shiori: Simple Self-Hosted Bookmark Manager (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-2a480908 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Shiori is a self-hosted Go bookmark manager with full-text search, page archiving, and a clean web interface. ## What it is Shiori is a self-hosted bookmark manager written in Go. It saves bookmarks with full-text search, archives web page content for offline reading, and provides a clean web interface for organizing your saved …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2a480908) --- # Turbopuffer MCP: Serverless Vector DB for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-2a5c2700 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Turbopuffer MCP connects AI agents to a serverless vector database with sub-10ms search and zero ops. ## What it is Turbopuffer MCP is a Model Context Protocol server for the Turbopuffer serverless vector database. It gives AI agents direct access to vector storage and similarity search operations through MCP tools. Tur …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2a5c2700) --- # TDengine: Time-Series Database for IoT Workloads (2026) URL: https://tokrepo.com/en/workflows/asset-2b6840a2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Purpose-built time-series database delivering 10x compression and query speed for IoT data. ## What it is TDengine is a purpose-built time-series database optimized for IoT, industrial telemetry, and monitoring data. It combines a storage engine designed for time-series patterns with built-in caching, stream p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2b6840a2) --- # Claude API Skill: Build LLM Apps with Anthropic (2026) URL: https://tokrepo.com/en/workflows/asset-2be86b66 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official skill that guides Claude Code through building apps with the Claude API, SDKs, and agent patterns. ## What it is The claude-api skill is an official Claude Code skill maintained by Anthropic. It activates automatically when your code imports `anthropic`, `@anthropic-ai/sdk`, or `claude_agent_sdk`, and provides Claude …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2be86b66) --- # Agno: Lightweight AI Agent Framework for Python (2026) URL: https://tokrepo.com/en/workflows/asset-2bed99e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lightweight Python framework for model-agnostic AI agents with tools, memory, knowledge bases, and team coordination at minimal overhead. ## What it is Agno is a lightweight Python framework for building AI agents. It provides model-agnostic agents with tools, memory, knowledge bases, and team coordination capabilities. Agno emphasizes simplicity: you can …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2bed99e8) --- # Lark CLI Skill: OpenAPI Explorer for Raw APIs (2026) URL: https://tokrepo.com/en/workflows/asset-2c090f9e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Lark CLI skill that lets you explore and call native Lark/Feishu OpenAPIs directly, including endpoints not yet wrapped by the CLI. ## What it is The OpenAPI Explorer skill for Lark CLI gives developers access to native Lark/Feishu OpenAPIs from official documentation. It lets you discover and call raw API endpoints that are not yet wrapped by the L …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2c090f9e) --- # Docusaurus: Build Documentation Sites Made Easy (2026) URL: https://tokrepo.com/en/workflows/asset-2c489776 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docusaurus generates versioned, searchable documentation sites from Markdown. ## What it is Docusaurus is an open-source static site generator created by Meta for building documentation websites. It takes Markdown files and generates a fast, searchable, versioned documentation site with a React-b …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2c489776) --- # MidJourney Styles Reference for AI Art Keywords in 2026 URL: https://tokrepo.com/en/workflows/asset-2c569e02 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A visual reference library documenting every MidJourney style, keyword, and parameter with side-by-side example images. ## What it is MidJourney Styles and Keywords Reference is a comprehensive visual catalog of MidJourney AI image generation styles, keywords, and parameters. Each style keyword is documented with example images showing w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2c569e02) --- # Ragas: Evaluate RAG and LLM Applications (2026) URL: https://tokrepo.com/en/workflows/asset-2c856b4d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ragas evaluates RAG pipelines with metrics like faithfulness, relevancy, and context precision, plus auto test data generation. ## What it is Ragas is a Python framework for evaluating Retrieval-Augmented Generation (RAG) pipelines and LLM applications. It provides objective metrics such as faithfulness, answer relevancy, context precision, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2c856b4d) --- # Claude Skill: Brand Guidelines by Anthropic (2026) URL: https://tokrepo.com/en/workflows/asset-2c965821 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An official Claude Code skill that applies Anthropic brand colors, typography, and visual style to generated artifacts. ## What it is Claude Official Skill: brand-guidelines is a Claude Code skill that applies Anthropic's official brand colors and typography to any artifact that benefits from Anthropic's visual identity. When activated, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2c965821) --- # Reflex: Build Full-Stack Web Apps in Pure Python (2026) URL: https://tokrepo.com/en/workflows/asset-2cbe9a3d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Reflex builds full-stack web apps using only Python, no JavaScript required. ## What it is Reflex is an open-source Python framework that lets you build full-stack web applications without writing any JavaScript. You define your UI with Python components, handle state with Python classes, and Re …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2cbe9a3d) --- # Talos Linux: Immutable API-Managed OS for K8s (2026) URL: https://tokrepo.com/en/workflows/asset-2cc9525d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Talos Linux removes SSH and shell access, managing every Kubernetes node through a declarative gRPC API. ## What it is Talos Linux is a minimal Linux distribution designed exclusively to run Kubernetes. It removes SSH, shell access, package managers, and all interactive login capabilities. Every aspect of the operating sys …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2cc9525d) --- # Keycloak: Open Source Identity Management (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-2d385875 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Keycloak provides SSO, OIDC, SAML, MFA, and user management as a self-hosted identity platform. ## What it is Keycloak is the most widely deployed open-source identity and access management (IAM) solution. It provides single sign-on (SSO), OpenID Connect (OIDC), SAML 2.0, LDAP/Active Directory federation, multi-fa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2d385875) --- # ntfy: Simple HTTP Push Notifications for Any Device (2026) URL: https://tokrepo.com/en/workflows/asset-2d5b57ec Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ntfy sends push notifications to any device with a simple HTTP request. No signup or API keys required. ## What it is ntfy (pronounced 'notify') is a push notification service that lets you send messages to your phone or desktop using simple HTTP PUT or POST requests. There is no app registration, no API keys, and no comp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2d5b57ec) --- # SigNoz: Open Source APM and Observability (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-2d7e482b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source Datadog alternative combining logs, traces, and metrics with native OpenTelemetry and a ClickHouse backend. ## What it is SigNoz is an open-source application performance monitoring (APM) and observability platform. It combines logs, distributed traces, and metrics in a single interface, replacing the need for separate tools …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2d7e482b) --- # PR-Agent: AI-Powered Code Review for Pull Requests (2026) URL: https://tokrepo.com/en/workflows/asset-2d7fe041 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PR-Agent automates PR descriptions, code review, and improvement suggestions using AI. ## What it is PR-Agent is an AI-powered code review tool by Qodo that works with GitHub, GitLab, and Bitbucket pull requests. It auto-generates PR descriptions, reviews code changes, suggests improvements, and answers q …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2d7fe041) --- # SuperTokens: Open Source Auth0 Alternative (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-2da136b5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source Auth0 alternative with email/password, passwordless, social login, session management, and MFA for React, Vue, Angular. ## What it is SuperTokens is an open-source authentication solution that provides email/password login, passwordless authentication, social login (Google, GitHub, Apple, etc.), session management, and multi-factor authe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2da136b5) --- # Apache Hudi: Incremental Data Lakehouse Platform (2026) URL: https://tokrepo.com/en/workflows/asset-2db0b23f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Hudi adds record-level upserts, deletes, and incremental queries to your data lake. ## What it is Apache Hudi (Hadoop Upserts Deletes and Incrementals) is an open-source data lakehouse platform. It provides record-level insert, update, and delete capabilities on top of data lakes stored in S3, GCS, HDF …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2db0b23f) --- # Gitpod: Cloud Dev Environments on Demand 2026 URL: https://tokrepo.com/en/workflows/asset-2dc42cc3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gitpod spins up pre-configured cloud dev environments from any Git repository. ## What it is Gitpod provides automated, pre-configured cloud development environments. You open a repository URL and get a ready-to-code workspace with VS Code or JetBrains IDE in seconds. The environment includes all …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2dc42cc3) --- # Apache Arrow: Columnar In-Memory Data Format Guide (2026) URL: https://tokrepo.com/en/workflows/asset-2ea0c9b8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Arrow is a cross-language columnar memory format powering DuckDB, Polars, and Pandas 2.x. ## What it is Apache Arrow defines a language-independent columnar memory layout for flat and hierarchical data. It provides libraries in C++, Java, Rust, Go, Python, R, JavaScript, and C# that read, write, transport, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2ea0c9b8) --- # Raycast AI: macOS Launcher with AI Commands 2026 URL: https://tokrepo.com/en/workflows/asset-2eaf0d0f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Raycast AI turns your macOS launcher into an AI-powered command center with prompt-driven workflows from anywhere. ## What it is Raycast is a macOS productivity launcher that replaces Spotlight with a faster, extensible command palette. Raycast AI adds built-in AI commands that let you generate text, summarize documents, translate, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2eaf0d0f) --- # Claude Code GraphQL Architect: Schema Design (2026) URL: https://tokrepo.com/en/workflows/asset-2f0bc220 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code agent specializing in GraphQL schema design, resolvers, federation, and optimization. ## What it is GraphQL Architect is a Claude Code agent template focused on GraphQL development. It provides specialized guidance for schema design, resolver implementation patterns, subscription handling, Apollo Federat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f0bc220) --- # Storybook: UI Component Workshop for Building Apps 2026 URL: https://tokrepo.com/en/workflows/asset-2f0df676 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Industry-standard workshop for developing UI components in isolation. Supports React, Vue, Svelte, Angular, and more. ## What it is Storybook is the industry-standard workshop for building, documenting, and testing UI components in isolation. It provides a sandbox where you develop components outside your application, see them in every …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f0df676) --- # Zustand: Bear-Sized State Management for React (2026) URL: https://tokrepo.com/en/workflows/asset-2f0e010c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zustand provides small, fast state management for React using a hooks API with no providers and full TypeScript support. ## What it is Zustand is a lightweight state management library for React. It uses a simple hooks-based API, requires no context providers, and supports TypeScript out of the box. At under 1KB gzipped, it is one of the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f0e010c) --- # Prisma ORM: Next-Gen Node.js Database Access in 2026 URL: https://tokrepo.com/en/workflows/asset-2f0e03dd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prisma provides type-safe database access with auto-generated client, schema language, and migration tooling. ## What it is Prisma is a next-generation ORM for Node.js and TypeScript that replaces traditional ORMs with a schema-first approach. You define your data model in Prisma Schema Language, and Prisma generates a fully ty …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f0e03dd) --- # pnpm: Fast Disk-Efficient Package Manager (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-2f0e07ae Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fast Node.js package manager using a content-addressable store and symlinks. Saves gigabytes of disk space and installs 2x faster than npm. ## What it is pnpm is a fast, disk-space efficient package manager for Node.js. It uses a content-addressable store and symlinks to avoid duplicating packages across projects. If ten projects use the same version of lod …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f0e07ae) --- # XState: State Machines and Statecharts for Apps (2026) URL: https://tokrepo.com/en/workflows/asset-2f0e099f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: XState models complex application logic as finite state machines with TypeScript, visual editor, and framework bindings. ## What it is XState is a library for creating, interpreting, and executing finite state machines and statecharts in TypeScript and JavaScript. It lets you model complex application logic declaratively, with first-class …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f0e099f) --- # Markdownlint: Lint Markdown for AI Content in 2026 URL: https://tokrepo.com/en/workflows/asset-2f24f820 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Markdownlint checks markdown files against 50+ rules to enforce consistent formatting in CLAUDE.md, READMEs, and docs. ## What it is Markdownlint is a Node.js-based linter for Markdown files with 50+ configurable rules. It catches formatting inconsistencies, structural issues, and style violations in markdown content. The tool is availa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f24f820) --- # Airbyte: Open-Source Data Integration Platform (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-2f5bb5d6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Airbyte is an open-source ELT platform with 550+ connectors for syncing data from any source to any destination. ## What it is Airbyte is an open-source data integration platform that moves data from sources (databases, APIs, files, SaaS tools) to destinations (data warehouses, data lakes, vector stores). It follows the ELT patter …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f5bb5d6) --- # Gemini CLI Postgres Extension: DB Management 2026 URL: https://tokrepo.com/en/workflows/asset-2f7cb6ed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI extension for PostgreSQL query optimization, schema design, migration scripts, and database administration. ## What it is The Gemini CLI Postgres extension adds PostgreSQL database management capabilities to Google's Gemini CLI. It provides tools for query optimization, schema design, migration script generation, and database …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2f7cb6ed) --- # KubeVela: Application Delivery on Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-2fce2464 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KubeVela provides application-centric delivery on Kubernetes using the Open Application Model with reusable components and workflows. ## What it is KubeVela is an application-centric delivery platform built on Kubernetes and the Open Application Model (OAM). It lets platform teams define reusable components and traits, then assemble them into applicat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2fce2464) --- # ClickHouse: Real-Time Analytics Database Setup (2026) URL: https://tokrepo.com/en/workflows/asset-2fce985b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ClickHouse is a column-oriented database that queries billions of rows in milliseconds for real-time analytics workloads. ## What it is ClickHouse is an open-source, column-oriented database management system designed for online analytical processing (OLAP). It queries billions of rows in milliseconds using SQL, making it suitable for real …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2fce985b) --- # Home Assistant: Open-Source Home Automation in 2026 URL: https://tokrepo.com/en/workflows/asset-2fef4503 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Home Assistant integrates 3,000+ smart home devices with local control, running on your own hardware without cloud dependency. ## What it is Home Assistant is the most popular open-source platform for smart home automation. It integrates with over 3,000 devices and services, runs entirely on local hardware (Raspberry Pi, NUC, Docker, or VM), an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2fef4503) --- # DuckDB: Fast In-Process Analytical SQL Database (2026) URL: https://tokrepo.com/en/workflows/asset-2fefa271 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DuckDB is an in-process analytical SQL database that queries CSV, Parquet, and JSON files directly with zero setup and no server. ## What it is DuckDB is an in-process analytical database designed for fast SQL queries over local data files. It reads CSV, Parquet, JSON, and Excel files directly without loading them into a separate database server. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-2fefa271) --- # Ghost: Open Source Publishing Platform for Writers (2026) URL: https://tokrepo.com/en/workflows/asset-300e919c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ghost is an open-source Node.js CMS with paid memberships, newsletters, and SEO for publishers. ## What it is Ghost is an open-source publishing platform built for professional publishers and creators. It bundles a Node.js CMS, paid memberships via Stripe, email newsletters, and SEO tooling into a single self-host …(content truncated, full version at https://tokrepo.com/en/workflows/asset-300e919c) --- # K3s: Lightweight Certified Kubernetes Distribution (2026) URL: https://tokrepo.com/en/workflows/asset-300fbdf6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: K3s is a certified Kubernetes distribution that runs in under 512MB RAM, built for edge and IoT. ## What it is K3s is a fully compliant, lightweight Kubernetes distribution created by Rancher Labs (now SUSE). It packages the entire Kubernetes control plane into a single binary under 100MB, running in less than 512M …(content truncated, full version at https://tokrepo.com/en/workflows/asset-300fbdf6) --- # Qdrant MCP: Vector Search Engine for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-301ce58e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server for Qdrant vector database enabling AI agents to store and search embeddings for RAG and semantic search. ## What it is Qdrant MCP is a Model Context Protocol server for the Qdrant vector database. It gives AI agents the ability to store, search, and manage vector embeddings directly through MCP tool calls. This enables age …(content truncated, full version at https://tokrepo.com/en/workflows/asset-301ce58e) --- # MCP Inspector: Debug and Test MCP Servers in 2026 URL: https://tokrepo.com/en/workflows/asset-302d7709 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official web UI debugger for MCP servers. Connect, test tools, inspect messages, and validate responses. ## What it is MCP Inspector is the official debugging tool for Model Context Protocol (MCP) servers. It provides a web UI where you can connect to any MCP server, discover its tools, call them with test inputs, inspect …(content truncated, full version at https://tokrepo.com/en/workflows/asset-302d7709) --- # Mastodon: Federated Social Network Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-302df9c6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mastodon lets you run your own social network instance that federates with thousands of others. ## What it is Mastodon is an open-source, decentralized social networking platform. Instead of one company owning the entire network, anyone can run a Mastodon instance (called a server) that federates with every other …(content truncated, full version at https://tokrepo.com/en/workflows/asset-302df9c6) --- # Trivy: All-in-One Security Scanner for Containers (2026) URL: https://tokrepo.com/en/workflows/asset-302fe2bb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Trivy finds vulnerabilities, misconfigurations, and secrets across containers, code, and Kubernetes in one scan. ## What it is Trivy is an open-source security scanner by Aqua Security that detects vulnerabilities in OS packages and language dependencies, misconfigurations in Terraform and Dockerfiles, leaked secrets like API keys …(content truncated, full version at https://tokrepo.com/en/workflows/asset-302fe2bb) --- # Rocket.Chat: Open-Source Team Communication in 2026 URL: https://tokrepo.com/en/workflows/asset-304d7141 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rocket.Chat is a self-hosted Slack alternative with messaging, video calls, chatbots, and omnichannel support under MIT license. ## What it is Rocket.Chat is a self-hostable, open-source team communication platform. It bundles real-time messaging, voice and video calls (via Jitsi), file sharing, chatbots, and omnichannel customer support into a s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-304d7141) --- # Cilium: eBPF-Powered Kubernetes Networking Guide 2026 URL: https://tokrepo.com/en/workflows/asset-30500e42 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cilium uses eBPF to deliver high-performance Kubernetes networking, observability, and security at the kernel level. ## What it is Cilium is an open-source cloud-native networking, observability, and security platform powered by eBPF (extended Berkeley Packet Filter). As a CNCF graduated project, it operates at the Linux kernel level …(content truncated, full version at https://tokrepo.com/en/workflows/asset-30500e42) --- # PhotoPrism: AI-Powered Self-Hosted Photos in 2026 URL: https://tokrepo.com/en/workflows/asset-306cea9c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PhotoPrism is a self-hosted photo manager with AI tagging, face recognition, and location maps. ## What it is PhotoPrism is a self-hosted photo management application that uses AI for automatic tagging, face recognition, and location clustering. It provides a polished web interface similar to Google Photos but run …(content truncated, full version at https://tokrepo.com/en/workflows/asset-306cea9c) --- # Focalboard: Open-Source Project Management Tool (2026) URL: https://tokrepo.com/en/workflows/asset-308c39a4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Focalboard is a self-hostable kanban and task board tool by Mattermost that combines Trello-style boards with Notion-style views. ## What it is Focalboard is an open-source project management application built by Mattermost. It provides kanban boards, table views, gallery views, and calendar views in a single self-hostable package. It positions it …(content truncated, full version at https://tokrepo.com/en/workflows/asset-308c39a4) --- # Zulip: Threaded Team Chat That Scales to Thousands (2026) URL: https://tokrepo.com/en/workflows/asset-30ab87f1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zulip organizes team chat into topics within streams so discussions stay searchable and catchable. ## What it is Zulip is a team chat platform built around threaded topic conversations. Every message belongs to a topic (like an email subject line), so instead of a single chronological channel scroll, Zulip channels h …(content truncated, full version at https://tokrepo.com/en/workflows/asset-30ab87f1) --- # Monica: Personal Relationship Manager Self-Hosted (2026) URL: https://tokrepo.com/en/workflows/asset-30caeb15 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Monica is a self-hosted personal CRM that tracks birthdays, conversations, gifts, and relationship details for family and friends. ## What it is Monica is a self-hosted personal relationship manager (personal CRM) that helps you maintain meaningful connections with family, friends, and acquaintances. It tracks birthdays, conversation notes, gift hi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-30caeb15) --- # VoltAgent: TypeScript AI Agent Framework in 2026 URL: https://tokrepo.com/en/workflows/asset-30ccfe29 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: VoltAgent provides Memory, RAG, Guardrails, MCP, and Voice primitives for building AI agents in TypeScript. ## What it is VoltAgent is an open-source TypeScript framework for building AI agents. It provides built-in primitives for Memory, RAG (Retrieval-Augmented Generation), Guardrails, MCP (Model Context Protocol) integrati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-30ccfe29) --- # Invidious: Privacy-First YouTube Frontend in 2026 URL: https://tokrepo.com/en/workflows/asset-30ea4998 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Invidious proxies YouTube content and strips all tracking, letting you watch videos without ads, a Google account, or invasive telemetry. ## What it is Invidious is an open-source alternative frontend for YouTube that proxies video content and strips all Google tracking. It runs as a self-hosted web application written in Crystal, serving YouTube videos w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-30ea4998) --- # Claude Code SEO Specialist: Technical SEO Audit Agent (2026) URL: https://tokrepo.com/en/workflows/asset-30f34ba7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that audits meta tags, structured data, Core Web Vitals, and crawlability automatically. ## What it is Claude Code Agent: SEO Specialist is a pre-configured Claude Code agent template designed for technical SEO tasks. It audits meta tags, structured data (JSON-LD), Core Web Vitals, crawlability, and content …(content truncated, full version at https://tokrepo.com/en/workflows/asset-30f34ba7) --- # LibreTranslate: Self-Hosted Translation API (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-3109a712 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LibreTranslate runs a private translation API with no API keys, no rate limits, and no data sharing. ## What it is LibreTranslate is a self-hosted machine translation API powered by open-source Argos Translate models. It provides a REST API for text translation between supported languages with no API keys, no rate limi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3109a712) --- # Redis MCP Server: Redis for AI Agents Guide (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-31218ce0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The official Redis MCP server lets AI agents manage Redis data structures via natural language commands. ## What it is The Redis MCP Server is the official MCP integration for Redis, enabling AI agents to manage Redis data via natural language. It supports all major Redis data structures: strings, hashes, lists, sets, sort …(content truncated, full version at https://tokrepo.com/en/workflows/asset-31218ce0) --- # Remotion Rule: TailwindCSS in Video Projects (2026) URL: https://tokrepo.com/en/workflows/asset-316a889a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion rule that configures TailwindCSS for programmatic video creation in React projects. ## What it is This is an official Remotion agent skill rule that provides guidance for using TailwindCSS within Remotion video projects. Remotion is a framework for creating programmatic videos in React, and this rule e …(content truncated, full version at https://tokrepo.com/en/workflows/asset-316a889a) --- # GoCD: Continuous Delivery Server by ThoughtWorks (2026) URL: https://tokrepo.com/en/workflows/asset-3193fcd2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GoCD models complex build-test-deploy pipelines with first-class support for dependencies, fan-in/fan-out, and value streams. ## What it is GoCD is a mature open-source continuous delivery server built by ThoughtWorks. It models complex build-test-deploy pipelines with first-class support for pipeline dependencies, fan-in/fan-out patterns, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3193fcd2) --- # Cline: Autonomous AI Coding Agent for VS Code in 2026 URL: https://tokrepo.com/en/workflows/asset-321aee3b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source VS Code extension for autonomous AI coding with Claude, GPT, Gemini, Ollama, and custom APIs. ## What it is Cline is an open-source AI coding agent that runs inside VS Code as an extension. It can read and write files, execute terminal commands, browse the web, and make multi-file changes autonomously. Cline sup …(content truncated, full version at https://tokrepo.com/en/workflows/asset-321aee3b) --- # Grafana Alloy: OpenTelemetry Collector Distribution (2026) URL: https://tokrepo.com/en/workflows/asset-32274adf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Grafana Alloy is a vendor-neutral OpenTelemetry collector with built-in Prometheus scraping and Loki log support. ## What it is Grafana Alloy is an open-source, vendor-neutral telemetry collector from Grafana Labs. It unifies metrics, logs, traces, and profiles into a single agent, serving as the replacement for the older Grafana A …(content truncated, full version at https://tokrepo.com/en/workflows/asset-32274adf) --- # Anthropic MCP Specification: Protocol Reference (2026) URL: https://tokrepo.com/en/workflows/asset-3252f257 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official MCP spec covering architecture, message format, tool definitions, resource types, and transport protocols for AI integrations. ## What it is The Model Context Protocol (MCP) specification defines how AI models connect to external tools, data sources, and services through a standardized interface. Published by Anthropic, MCP provides a common pr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3252f257) --- # Remotion Video Embedding Rule: Trim, Loop & Mix (2026) URL: https://tokrepo.com/en/workflows/asset-3260bbfa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion agent skill rule for embedding, trimming, and controlling video playback in programmatic React compositions. ## What it is The Remotion Videos rule is part of the official Remotion Agent Skill that teaches AI coding agents how to embed and manipulate video clips inside Remotion compositions. It covers trimming start and end fr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3260bbfa) --- # GitMCP: Remote MCP Server for Any GitHub Repo (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-32ef0d9f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Turn any GitHub repo into a remote MCP server by replacing github.com with gitmcp.io in the URL. ## What it is GitMCP is a service that transforms any public GitHub repository into a remote MCP server. Instead of cloning a repository and parsing its docs locally, you replace `github.com` with `gitmcp.io` in the rep …(content truncated, full version at https://tokrepo.com/en/workflows/asset-32ef0d9f) --- # Notion MCP: Connect AI Agents to Your Notion Workspace (2026) URL: https://tokrepo.com/en/workflows/asset-32ffd470 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The official Notion MCP server gives AI agents read and write access to your Notion workspace through the Model Context Protocol. ## What it is Notion MCP is the official Model Context Protocol server for Notion. It connects AI agents like Claude Code to your Notion workspace, letting them search pages, read content, create and update databases, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-32ffd470) --- # Coder: Self-Hosted Cloud Dev Environments (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-333a1243 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Coder provisions secure cloud dev environments on your own infrastructure using Terraform templates and any compute backend. ## What it is Coder is an open-source platform for provisioning self-hosted cloud development environments. Instead of coding on local machines with inconsistent setups, teams define environments as Terraform templates …(content truncated, full version at https://tokrepo.com/en/workflows/asset-333a1243) --- # TensorFlow: Open Source ML Framework by Google (2026) URL: https://tokrepo.com/en/workflows/asset-3465a6fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TensorFlow provides a full ecosystem for building, training, and deploying ML models from research prototypes to production at scale. ## What it is TensorFlow is an end-to-end open-source machine learning platform developed by Google. It provides APIs for building neural networks, training models on CPUs, GPUs, and TPUs, and deploying them to servers, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3465a6fd) --- # Supabase: Open Source Firebase Alternative in 2026 URL: https://tokrepo.com/en/workflows/asset-3487159f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Supabase provides a complete backend on Postgres: database, auth, real-time, storage, edge functions, and vector embeddings with instant APIs. ## What it is Supabase is an open-source backend platform built on PostgreSQL. It bundles a relational database, authentication, real-time subscriptions, object storage, edge functions, and vector embeddings into a sing …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3487159f) --- # PyTorch: Deep Learning Framework for Production 2026 URL: https://tokrepo.com/en/workflows/asset-34a91e34 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PyTorch provides GPU-accelerated tensors and automatic differentiation with a Pythonic dynamic graph. ## What it is PyTorch is an open-source deep learning framework by Meta that provides tensor computation with GPU acceleration and automatic differentiation. Its dynamic computation graph (define-by-run) makes it natura …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34a91e34) --- # LocalAI: Run Any AI Model Locally, No GPU (2026) URL: https://tokrepo.com/en/workflows/asset-34c0d47e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LocalAI runs AI models locally with an OpenAI-compatible API, 35+ backends, no GPU required. MIT licensed. ## What it is LocalAI is an open-source engine that runs large language models, vision models, voice synthesis, and image generation models on your local machine. It exposes an OpenAI-compatible API, so any application …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34c0d47e) --- # uv: Fast Python Package and Project Manager in 2026 URL: https://tokrepo.com/en/workflows/asset-34cb5a2b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: uv replaces pip, poetry, pyenv, and virtualenv with a single Rust-based tool that is 10-100x faster. ## What it is uv is an all-in-one Python package and project manager written in Rust by Astral (the team behind Ruff). It replaces pip, pip-tools, pipx, poetry, pyenv, and virtualenv with a single CLI that handles depen …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34cb5a2b) --- # Graphiti: Real-Time Knowledge Graphs for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-34ea44af Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Graphiti builds real-time knowledge graphs with temporal awareness, entity extraction, and relationship tracking for AI agent memory. ## What it is Graphiti is an open-source library by Zep that builds real-time knowledge graphs for AI agents. Unlike static knowledge bases, Graphiti continuously ingests new information, extracts entities and relations …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34ea44af) --- # Redis: High-Performance In-Memory Data Store (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-34ed6294 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Redis serves as a database, cache, message broker, and streaming engine with sub-millisecond latency. ## What it is Redis is the most popular in-memory data structure store. It serves as a database, cache, message broker, and streaming engine. Redis supports strings, hashes, lists, sets, sorted sets, streams, HyperLogLo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34ed6294) --- # Lark CLI Meetings: Video Conference Records (2026) URL: https://tokrepo.com/en/workflows/asset-34fab6a8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI skill that retrieves Lark/Feishu meeting records, minutes, summaries, and transcripts. ## What it is Lark CLI Skill: Meetings is a command-line skill for the Lark/Feishu CLI tool that lets you search meeting records and retrieve meeting minutes with AI-generated summaries, todo items, and full transcripts …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34fab6a8) --- # Claude-Flow Multi-Agent Orchestration for Claude Code Guide URL: https://tokrepo.com/en/workflows/asset-34ff4f3b Type: featured-workflow Updated: 2026-04-30T11:16:39.296762 > **TL;DR**: Claude-Flow is an npm-distributed orchestration layer that turns one Claude Code instance into 64 specialized agents coordinated through swarm or hive-mind modes. It uses a SQLite-backed shared memory file, generates a plan-first execution graph, and ships as a Node.js CLI that inherits your existing Claude Code authentication without any extra API keys or infrastructure setup required. ## What Claude-Flow Multi-Agent Orchestration Actually Is Claude-Flow is an orchestration layer that runs on top of Claude Code, the official Anthropic command-line tool released in February 2025 ([docs.anthropic.com/cl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-34ff4f3b) --- # Keras: Deep Learning for Humans with Multi-Backend (2026) URL: https://tokrepo.com/en/workflows/asset-35111360 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Keras provides a consistent high-level API for deep learning that runs on TensorFlow, JAX, or PyTorch. ## What it is Keras is the most user-friendly deep learning API. Since Keras 3, it runs on top of TensorFlow, JAX, or PyTorch as interchangeable backends, providing a consistent high-level interface for building, traini …(content truncated, full version at https://tokrepo.com/en/workflows/asset-35111360) --- # FFmpeg Multimedia Toolkit: Video Processing in 2026 URL: https://tokrepo.com/en/workflows/asset-353248b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FFmpeg handles virtually every audio and video format for transcoding, streaming, and filtering. ## What it is FFmpeg is the most widely used multimedia processing framework. It can decode, encode, transcode, mux, demux, stream, filter, and play almost every audio and video format ever created. Nearly every video a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-353248b1) --- # curl: The Command Line Data Transfer Tool in 2026 URL: https://tokrepo.com/en/workflows/asset-3552582f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: curl transfers data using URL syntax across 25+ protocols including HTTP, HTTPS, FTP, and SFTP, installed on virtually every modern operating system. ## What it is curl is a command-line tool and library (libcurl) for transferring data with URL syntax. It supports HTTP, HTTPS, FTP, SFTP, and over 25 other protocols. curl is installed on billions of devices and is the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3552582f) --- # Lark CLI Skill: Base Multidimensional Tables in 2026 URL: https://tokrepo.com/en/workflows/asset-356a14fc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI skill for managing Lark/Feishu Base multidimensional tables, fields, records, views, and dashboards. ## What it is Lark CLI Skill: Base is a command-line skill for managing Lark/Feishu Base (multidimensional tables). It provides commands to create and modify tables, manage fields and records, configure views and dashbo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-356a14fc) --- # Poetry: Python Dependency Management Made Easy (2026) URL: https://tokrepo.com/en/workflows/asset-3573f3c7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Poetry manages Python dependencies, virtual environments, lockfiles, and publishing in a single CLI. ## What it is Poetry is a comprehensive tool for Python dependency management and packaging. It handles virtual environment creation, dependency resolution with a lockfile, and package publishing to PyPI -- all through …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3573f3c7) --- # ArchiveBox: Self-Hosted Web Archiving Platform (2026) URL: https://tokrepo.com/en/workflows/asset-358da384 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ArchiveBox preserves web pages as HTML, PDF, screenshots, and WARC for offline access. ## What it is ArchiveBox is an open-source self-hosted web archiver that preserves web content before it disappears. It takes URLs from bookmarks, browser history, RSS feeds, or plain text and saves them in multiple for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-358da384) --- # Nginx: High-Performance Web Server Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-3593f196 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The most popular web server powering 30%+ of websites. Reverse proxy, load balancer, HTTP cache, and TLS terminator with minimal memory usage. ## What it is Nginx is the most widely deployed web server, powering over 30% of all websites. It excels as a reverse proxy, load balancer, HTTP cache, and TLS terminator, handling millions of concurrent connections wit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3593f196) --- # Remotion: Import SRT Captions into Video (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-35ed666e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Use @remotion/captions to parse .srt subtitle files and render them as timed captions in Remotion videos. ## What it is This is a Remotion skill rule for importing .srt (SubRip) subtitle files into Remotion video projects. It uses the `@remotion/captions` package to parse SRT files and convert them into timed caption data t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-35ed666e) --- # Milvus Vector Database: Scalable AI Search in 2026 URL: https://tokrepo.com/en/workflows/asset-35f9fae3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Milvus provides scalable vector similarity search with hybrid retrieval, GPU indexing, and multi-tenancy for production AI applications. ## What it is Milvus is a high-performance, cloud-native vector database designed for AI applications that need similarity search at scale. It stores, indexes, and queries high-dimensional vectors generated by embedding …(content truncated, full version at https://tokrepo.com/en/workflows/asset-35f9fae3) --- # Colima: Docker Desktop Alternative for macOS (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-35fab84a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Colima runs Docker and Kubernetes on macOS/Linux via a Lima VM, replacing Docker Desktop without license fees. ## What it is Colima provides minimal-setup container and Kubernetes runtimes on macOS and Linux using a Lima VM. It offers a genuine Docker Desktop alternative without the licensing fees that Docker Desktop requires fo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-35fab84a) --- # Metrics Server: Core K8s Metrics for Autoscaling (2026) URL: https://tokrepo.com/en/workflows/asset-362bc634 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Metrics Server feeds CPU and memory data to kubectl top, HPA, and VPA as the minimal Kubernetes metrics pipeline. ## What it is Kubernetes Metrics Server is a lightweight, cluster-wide aggregator of resource usage data. It collects CPU and memory metrics from kubelets and exposes them through the Kubernetes Metrics API. This API po …(content truncated, full version at https://tokrepo.com/en/workflows/asset-362bc634) --- # Remotion Can Decode Rule: Video Validation in 2026 URL: https://tokrepo.com/en/workflows/asset-366c9fbf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Use Mediabunny to check if a video file can be decoded by the browser before attempting playback in Remotion. ## What it is This is a Remotion Agent Skill rule that provides a reusable function to check whether a video file can be decoded by the browser before attempting playback. It uses Mediabunny to probe video and audio tra …(content truncated, full version at https://tokrepo.com/en/workflows/asset-366c9fbf) --- # Claude Code Hooks: Custom Automation Recipes 2026 URL: https://tokrepo.com/en/workflows/asset-36711c75 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code hooks are shell commands that auto-run before or after tool use for formatting, testing, and security checks. ## What it is Claude Code Hooks are shell commands that execute automatically before or after specific tool uses within Claude Code sessions. They work like git hooks but for your AI coding assistant. This collection pr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-36711c75) --- # Remotion Rule: Scene Transitions and Overlays (2026) URL: https://tokrepo.com/en/workflows/asset-367ac310 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Remotion skill rule teaches how to build scene transitions using TransitionSeries with fade, slide, wipe, and custom easing. ## What it is This is a Remotion skill rule that covers scene transitions and overlays for programmatic video production. Remotion lets you create videos using React components, and this rule teaches the TransitionSerie …(content truncated, full version at https://tokrepo.com/en/workflows/asset-367ac310) --- # Claude Code Agent: Task Decomposition Skill (2026) URL: https://tokrepo.com/en/workflows/asset-36c7c41a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code agent skill that breaks complex tasks into subtasks, plans execution order, identifies dependencies, and tracks progress. ## What it is This is a Claude Code agent skill for task decomposition. It breaks complex development tasks into manageable subtasks, plans execution order based on dependencies, and tracks progress through completion. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-36c7c41a) --- # Operator SDK: Build Kubernetes Operators in Go (2026) URL: https://tokrepo.com/en/workflows/asset-37488936 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Operator SDK scaffolds and builds Kubernetes operators using Go, Ansible, or Helm. ## What it is Operator SDK is part of the Operator Framework, a CNCF project for building Kubernetes-native applications. It provides tools to scaffold, build, and publish operators that encode operational knowledge int …(content truncated, full version at https://tokrepo.com/en/workflows/asset-37488936) --- # Polaris: Kubernetes Best Practices Validation (2026) URL: https://tokrepo.com/en/workflows/asset-374fe27c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Polaris validates Kubernetes workloads against security and reliability best practices. ## What it is Polaris is an open-source tool by Fairwinds that validates Kubernetes resources against a configurable set of best practices. It catches misconfigurations like missing resource limits, containers running a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-374fe27c) --- # OpenAI Agents SDK: Build Multi-Agent Systems in 2026 URL: https://tokrepo.com/en/workflows/asset-38035d0b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official OpenAI SDK for multi-agent systems with handoffs, guardrails, and tracing in Python. ## What it is The OpenAI Agents SDK is the official Python framework for building multi-agent systems. It provides primitives for creating agents that delegate tasks to specialist sub-agents (handoffs), enforce safety c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-38035d0b) --- # Claude Code Data Scientist Agent for Analysis (2026) URL: https://tokrepo.com/en/workflows/asset-381bb2f4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent template specialized for exploratory data analysis, visualization, and statistical modeling. ## What it is The Data Scientist agent is a Claude Code agent template focused on data science workflows. It activates automatically when you work on exploratory analysis, statistical modeling, data visualization, featu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-381bb2f4) --- # gVisor: Container Sandbox with User-Space Kernel (2026) URL: https://tokrepo.com/en/workflows/asset-38539c30 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: gVisor intercepts container syscalls in user space, giving VM-like isolation without full virtualization overhead. ## What it is gVisor is an application kernel developed by Google that runs in user space and intercepts container system calls. It provides a security boundary between the container and the host kernel, offering isolat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-38539c30) --- # Pieces for Developers: AI Workflow Copilot (2026) URL: https://tokrepo.com/en/workflows/asset-3916af55 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pieces saves, enriches, and resurfaces code snippets with AI context across your IDE, browser, and collaboration tools. ## What it is Pieces for Developers is an AI-powered workflow copilot that helps developers save, organize, and reuse code snippets and development materials. It captures code from any source -- IDE, browser, documentat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3916af55) --- # Optio: Workflow Orchestrator for AI Coding Agents (2026) URL: https://tokrepo.com/en/workflows/asset-393e64de Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Optio orchestrates AI coding agents through the full lifecycle: planning, execution, review, and merge. ## What it is Optio is a workflow orchestrator that automates the full AI-assisted development lifecycle. It takes a task from planning through execution, code review, and PR merge by coordinating AI coding agents at ea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-393e64de) --- # Astro: Web Framework for Content-Driven Sites (2026) URL: https://tokrepo.com/en/workflows/asset-3a0c9468 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Astro ships zero JS by default and uses islands for fast content-driven sites. ## What it is Astro is an open-source web framework optimized for content-driven websites. It ships zero JavaScript to the browser by default, using an island architecture that hydrates only the interactive components. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3a0c9468) --- # Claude Skill: Internal Communications Templates (2026) URL: https://tokrepo.com/en/workflows/asset-3a476116 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An official Claude skill that provides templates and guidance for writing internal communications like memos, updates, and announcements. ## What it is The internal-comms skill is an official Claude skill that helps write internal communications using company-preferred formats. It provides templates and structural guidance for memos, announcements, projec …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3a476116) --- # Zerox: Zero-Shot PDF OCR with Vision Models in 2026 URL: https://tokrepo.com/en/workflows/asset-3ac555d9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zerox converts PDF pages to images and uses vision LLMs to extract clean markdown text without any OCR training data. ## What it is Zerox is a Python library that extracts text from PDFs by converting each page to an image and then using vision-capable LLMs (GPT-4o, Claude, etc.) as the OCR engine. Unlike traditional OCR tools that req …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ac555d9) --- # PixiJS: Fast 2D WebGL Rendering Engine Guide (2026) URL: https://tokrepo.com/en/workflows/asset-3ae8ffec Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The fastest 2D WebGL/WebGPU renderer for the web. Powers HTML5 games, interactive ads, data visualizations, and rich media experiences. ## What it is PixiJS is the fastest, most flexible 2D WebGL/WebGPU renderer for the web. It powers interactive advertisements, browser games, data visualizations, and rich media experiences. PixiJS handles sprite render …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ae8ffec) --- # date-fns: Modern JavaScript Date Utility Library (2026) URL: https://tokrepo.com/en/workflows/asset-3ae90928 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: date-fns offers 200+ tree-shakeable functions for date parsing, formatting, arithmetic, and locale support. ## What it is date-fns is a modern JavaScript date utility library providing over 200 functions for parsing, formatting, arithmetic, and comparison of dates. It is tree-shakeable (import only what you use), immutable (n …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ae90928) --- # Alpine.js: Minimal JavaScript Framework Guide (2026) URL: https://tokrepo.com/en/workflows/asset-3ae90b65 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Minimal JavaScript framework that adds reactive data, directives, and state management directly in HTML markup. 15KB, zero build step. ## What it is Alpine.js is a minimal JavaScript framework for adding reactive behavior directly in HTML markup. It provides reactive data binding, directives for DOM manipulation, and component-level state management in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ae90b65) --- # Immer: Immutable State with Mutable Syntax in 2026 URL: https://tokrepo.com/en/workflows/asset-3ae90d2f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Immer lets you write mutable JavaScript code and automatically produces structurally-shared immutable state updates. ## What it is Immer is a JavaScript library that simplifies immutable state management. Instead of writing spread operators and nested object copies, you write normal mutable code inside a `produce` function. Immer inte …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ae90d2f) --- # Babylon.js: 3D Game and Rendering Engine Guide (2026) URL: https://tokrepo.com/en/workflows/asset-3ae90ed5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Powerful open-source 3D game and rendering engine for the web with WebGL, WebGPU, Playground IDE, physics, and VR/AR support. ## What it is Babylon.js is a powerful, open-source 3D game and rendering engine for the web. It supports both WebGL and WebGPU, providing high-performance 3D rendering directly in the browser. The engine includes a Pla …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ae90ed5) --- # Cursor Rules Generator: AI Coding Config Builder (2026) URL: https://tokrepo.com/en/workflows/asset-3b69856d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Generate optimized .cursorrules files that configure Cursor IDE with project-specific AI coding instructions and conventions. ## What it is Cursor Rules Generator creates optimized `.cursorrules` configuration files for the Cursor IDE. These files instruct Cursor's AI features on your project's tech stack, coding conventions, and constraints. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3b69856d) --- # OpenEBS: Container-Attached Storage for K8s (2026) URL: https://tokrepo.com/en/workflows/asset-3ba4ce73 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenEBS provides dynamic persistent volumes for Kubernetes with multiple storage engines chosen per workload requirements. ## What it is OpenEBS is a CNCF sandbox storage project that delivers container-attached storage (CAS) for Kubernetes. Instead of a monolithic storage appliance, OpenEBS runs storage controllers as microservices alongsi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ba4ce73) --- # Lens Kubernetes IDE: Cluster Management in 2026 URL: https://tokrepo.com/en/workflows/asset-3c062096 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lens gives you a desktop GUI for managing Kubernetes clusters with logs, metrics, and shell. ## What it is Lens is a cross-platform desktop application that turns your kubeconfig files into a full Kubernetes IDE. It provides cluster dashboards, real-time pod logs, interactive shell access to containers, and bui …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3c062096) --- # Claudia: Tauri Desktop GUI for Claude Code Sessions URL: https://tokrepo.com/en/workflows/asset-3c06f7b2 Type: featured-workflow Updated: 2026-04-30T11:16:39.361636 > **TL;DR**: Claudia is an open-source Tauri 2 plus Rust plus React desktop GUI that wraps the Claude Code CLI in a native window. It visualizes every Claude Code session as a navigable timeline, runs your custom CC Agents inside operating-system sandboxes, snapshots diffs as one-click rollback checkpoints, and tracks per-project token spend, all stored locally in SQLite with zero cloud dependency or vendor lock-in. ## What Claudia Actually Is Claudia is a native desktop application that wraps the Claude Code CLI in a Tauri 2 window so engineers can browse sessions, design custom agents, run code inside operating-system sandboxes, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3c06f7b2) --- # Drone CI: Container-Native Continuous Integration (2026) URL: https://tokrepo.com/en/workflows/asset-3c27cec9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Drone runs CI/CD pipelines where every step executes in an isolated Docker container from simple YAML config. ## What it is Drone is a container-native CI/CD platform that runs every pipeline step inside a Docker container. Pipelines are defined in `.drone.yml` files, making builds reproducible and portable across environments. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3c27cec9) --- # Lark CLI: 19 AI Agent Skills for Lark and Feishu (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-3c2a2f03 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A command-line toolkit with 200+ commands and 19 AI agent skills for automating Lark/Feishu workplace operations. ## What it is Lark CLI is a command-line tool for the Lark/Feishu Open Platform, designed for both humans and AI agents. It provides 200+ commands covering 11 core business domains and packages them into 19 AI agent ski …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3c2a2f03) --- # LanceDB: Multimodal Vector Database for AI (2026) URL: https://tokrepo.com/en/workflows/asset-3ce6f2b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LanceDB provides fast vector search, full-text search, and SQL queries across billions of vectors with Python, Node.js, and Rust clients. ## What it is LanceDB is an open-source multimodal vector database designed for AI and ML applications. It stores and indexes vectors, text, images, and structured data together, supporting fast similarity search across …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ce6f2b1) --- # AgentOps: Observability Dashboard for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-3d040410 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Two-line Python SDK that adds real-time dashboards, token tracking, and error replay to AI agents. ## What it is AgentOps is a Python SDK for monitoring AI agent sessions with real-time dashboards. It tracks token usage, costs, latency, tool calls, and errors across agent runs. Integration requires adding just two li …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3d040410) --- # Browser Use: AI Agent Browser Automation Tool (2026) URL: https://tokrepo.com/en/workflows/asset-3d04e209 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Browser Use gives AI agents vision-based browser control with multi-tab and multi-LLM support. ## What it is Browser Use is a Python library that lets AI agents control web browsers using natural language instructions. It provides vision-based element detection (the agent sees the page as a screenshot), multi-tab …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3d04e209) --- # TaskWeaver: Code-First Data Analytics Agent (2026) URL: https://tokrepo.com/en/workflows/asset-3d3d8d62 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TaskWeaver plans data analytics tasks, generates code, and manages DataFrames with plugins. ## What it is TaskWeaver is a code-first agent framework by Microsoft designed for data analytics tasks. It takes natural language requests, decomposes them into a plan, generates Python code for each step, executes the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3d3d8d62) --- # Excalidraw: Collaborative Whiteboard for Diagrams (2026) URL: https://tokrepo.com/en/workflows/asset-3dd25a34 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Excalidraw creates hand-drawn diagrams with real-time collaboration online. ## What it is Excalidraw is an open-source virtual whiteboard for creating hand-drawn-style diagrams. It supports real-time collaboration, end-to-end encryption, and works directly in the browser without an account. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3dd25a34) --- # Firecrawl MCP: Web Scraping Server for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-3de63ffe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Firecrawl MCP server gives AI agents the ability to scrape and extract structured web data. ## What it is Firecrawl MCP is the official Model Context Protocol server for Firecrawl, a web scraping and crawling platform. It exposes Firecrawl capabilities as MCP tools that AI agents can call directly. Agents can …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3de63ffe) --- # OpenAI Codex CLI: Official Coding Agent Guide 2026 URL: https://tokrepo.com/en/workflows/asset-3de6c5c7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenAI Codex CLI brings GPT models to your terminal for code generation, editing, and project scaffolding. ## What it is OpenAI Codex CLI is OpenAI's official open-source coding agent that runs in the terminal. It connects to GPT models to generate code, edit files, run commands, and scaffold projects. The CLI supports custo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3de6c5c7) --- # Filesystem MCP Server for AI File Operations (2026) URL: https://tokrepo.com/en/workflows/asset-3e033d18 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Filesystem MCP gives AI agents controlled read/write access to files and directories through the Model Context Protocol. ## What it is Filesystem MCP Server is the official Model Context Protocol server for file system operations. It gives AI agents the ability to read, write, search, and manage files and directories. Access is controlled …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e033d18) --- # Mastra: TypeScript AI Agent Framework with MCP (2026) URL: https://tokrepo.com/en/workflows/asset-3e118616 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mastra provides TypeScript-native AI agent building with tool use, workflows, RAG, memory, and MCP support. ## What it is Mastra is a production-ready TypeScript framework for building AI agents. It provides first-class support for tool use, workflows, retrieval-augmented generation (RAG), and agent memory. Mastra integrates …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e118616) --- # ko: Build Go Container Images Without Docker 2026 URL: https://tokrepo.com/en/workflows/asset-3e1fc6d3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ko builds Go apps into minimal container images without Dockerfile or Docker daemon and deploys directly to Kubernetes. ## What it is ko is a build tool for Go applications that creates container images without requiring a Dockerfile or a running Docker daemon. It compiles your Go binary and layers it onto a minimal distroless base image …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e1fc6d3) --- # Homer: Static Server Dashboard with YAML Config (2026) URL: https://tokrepo.com/en/workflows/asset-3e656461 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Homer renders a clean dashboard for all your self-hosted services from a single YAML config file, no backend needed. ## What it is Homer is a lightweight, fully static server dashboard that organizes all your self-hosted services on a single page. It requires no database, no backend runtime, and no API connections. You edit a YAML con …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e656461) --- # Lark CLI Drive Skill for File Management (2026) URL: https://tokrepo.com/en/workflows/asset-3e66318a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Manage Lark/Feishu cloud drive files from the command line with upload, download, permissions, and folder operations. ## What it is The Lark CLI Drive skill adds cloud drive management capabilities to the Lark (Feishu) command-line interface. It lets you upload files, download documents, create folder hierarchies, and manage sharing pe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e66318a) --- # SiYuan: Self-Hosted Knowledge Management in 2026 URL: https://tokrepo.com/en/workflows/asset-3e833b22 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SiYuan stores your notes locally with block references, encryption, and Markdown. ## What it is SiYuan is an open-source, local-first personal knowledge management system. It stores all data on your own machine or server, giving you full control over your notes, documents, and knowledge graph. Unlike …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e833b22) --- # Crawlee: Production Web Scraping for Node.js (2026) URL: https://tokrepo.com/en/workflows/asset-3e8c6e91 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Crawlee is a Node.js web scraping library with proxy rotation, queuing, and adaptive crawling. ## What it is Crawlee is a web scraping and browser automation library for Node.js built by Apify. It provides a unified interface for building production-grade crawlers using raw HTTP requests (Cheerio), headless brows …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3e8c6e91) --- # Remotion: Get Video Duration with Mediabunny (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-3ed09610 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Use Mediabunny to reliably get video file duration in seconds for dynamic Remotion compositions. ## What it is This is a Remotion skill rule for getting the duration of a video file in seconds using Mediabunny. When building dynamic Remotion compositions that incorporate external video files, you need to know the v …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ed09610) --- # LMDeploy: High-Performance LLM Deployment Toolkit (2026) URL: https://tokrepo.com/en/workflows/asset-3ed4f784 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Deploy and serve LLMs with high throughput, 4-bit quantization, and an OpenAI-compatible API. Supports Llama, Mistral, Qwen, and more. ## What it is LMDeploy is a high-performance toolkit for deploying and serving large language models. Developed by the InternLM team, it provides efficient inference with features like continuous batching, 4-bit quantiz …(content truncated, full version at https://tokrepo.com/en/workflows/asset-3ed4f784) --- # Google ADK: Official AI Agent Development Kit in Python URL: https://tokrepo.com/en/workflows/asset-40030e5a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google ADK is Google's official open-source Python toolkit for building, evaluating, and deploying AI agents with multi-agent orchestration and tool use. ## What it is Google ADK (Agent Development Kit) is Google's official open-source Python toolkit for building AI agents. It provides a code-first framework for defining agents with tool use, multi-agent orchestration, e …(content truncated, full version at https://tokrepo.com/en/workflows/asset-40030e5a) --- # Notion MCP Server: Connect AI Agents to Notion (2026) URL: https://tokrepo.com/en/workflows/asset-4024bee8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official MCP server by Notion. Search, read, create, and update Notion pages from any MCP-compatible AI agent. ## What it is Notion MCP Server is the official Model Context Protocol integration built by Notion. It exposes Notion's API -- pages, databases, blocks, search -- through the MCP standard so that AI coding assistants li …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4024bee8) --- # mkcert: Zero-Config Local HTTPS Certificates (2026) URL: https://tokrepo.com/en/workflows/asset-404fae4b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: mkcert generates locally-trusted TLS certificates for development with a single command, no configuration needed. ## What it is mkcert is a simple CLI tool that creates locally-trusted development certificates with zero configuration. It installs a local Certificate Authority in your system trust store, then generates certificates …(content truncated, full version at https://tokrepo.com/en/workflows/asset-404fae4b) --- # Nuclei: Fast Template-Based Vulnerability Scanner (2026) URL: https://tokrepo.com/en/workflows/asset-40702aa3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nuclei scans for CVEs, misconfigurations, and exposed panels using community-driven templates. ## What it is Nuclei is a fast, template-based vulnerability scanner by ProjectDiscovery. Its community-driven template library covers CVEs, misconfigurations, exposed admin panels, default credentials, and security che …(content truncated, full version at https://tokrepo.com/en/workflows/asset-40702aa3) --- # KeePassXC: Offline Password Manager for 2026 Devs URL: https://tokrepo.com/en/workflows/asset-409089e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KeePassXC stores passwords in an encrypted local KDBX database with no cloud dependency, no subscription, and no telemetry. ## What it is KeePassXC is a free, open-source, cross-platform password manager that stores all credentials in an encrypted local database (KDBX format). There is no cloud sync, no subscription, and no telemetry. You ow …(content truncated, full version at https://tokrepo.com/en/workflows/asset-409089e0) --- # Gitleaks: Find Secrets in Git Repos and Code (2026) URL: https://tokrepo.com/en/workflows/asset-40b108c4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gitleaks scans Git repos and code for hardcoded secrets like API keys, passwords, and tokens using regex patterns. ## What it is Gitleaks is a fast static application security testing (SAST) tool for detecting hardcoded secrets in Git repositories. It scans commit history and source code using regex patterns to find AWS keys, databa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-40b108c4) --- # HAProxy: High-Performance Load Balancer Guide 2026 URL: https://tokrepo.com/en/workflows/asset-40c924ac Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: HAProxy is the open-source load balancer powering high-traffic sites with L4/L7 routing, HTTP/2, HTTP/3, and hot reloads. ## What it is HAProxy is an open-source, high-performance TCP and HTTP load balancer and reverse proxy. It handles Layer 4 and Layer 7 load balancing, supports HTTP/2, HTTP/3 (QUIC), and TLS 1.3, and can reload configur …(content truncated, full version at https://tokrepo.com/en/workflows/asset-40c924ac) --- # Manus: General-Purpose AI Agent Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-40d5a6ca Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Manus is a cloud-based AI agent that autonomously completes complex tasks by browsing, coding, and managing files. ## What it is Manus is a cloud-based autonomous AI agent platform that completes complex tasks end-to-end. Given a task description in natural language, Manus browses the web, writes code, manages files, and delivers fi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-40d5a6ca) --- # Echo: High Performance Go Web Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-412fe31a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Echo is a fast, minimalist Go web framework with automatic TLS, middleware, data binding, and clean routing for building APIs. ## What it is Echo is a high performance, minimalist web framework for Go. It provides a clean API with automatic TLS via Let's Encrypt, HTTP/2 support, request data binding, middleware chaining, and group routing. It p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412fe31a) --- # Tokio: Async Runtime for Rust Applications in 2026 URL: https://tokrepo.com/en/workflows/asset-412fed82 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tokio provides async I/O, task scheduling, and networking primitives that power most Rust web frameworks. ## What it is Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and synchronization primitives. Frameworks like Axum, Hyper, and Tonic bu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412fed82) --- # Rocket: Type-Safe Web Framework for Rust in 2026 URL: https://tokrepo.com/en/workflows/asset-412ff08d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rocket is a Rust web framework that uses derive macros and type-safe routing for fast, secure web applications. ## What it is Rocket is a web framework for Rust that prioritizes usability without sacrificing speed or safety. It uses derive macros and type-safe routing to catch errors at compile time rather than runtime. Rocket t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412ff08d) --- # Axum: Ergonomic Modular Web Framework for Rust (2026) URL: https://tokrepo.com/en/workflows/asset-412ff341 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Axum provides macro-free routing, type-safe extractors, and seamless Tower middleware for building Rust web applications. ## What it is Axum is a web application framework for Rust, built on top of Tokio (async runtime), Tower (middleware), and Hyper (HTTP). It differentiates itself from other Rust web frameworks through a macro-free routi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412ff341) --- # Actix Web: Extremely Fast Rust Web Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-412ff719 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Actix Web delivers top-tier performance with a rich middleware system, WebSocket support, and type-safe extractors for production Rust APIs. ## What it is Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust. It consistently ranks at the top of TechEmpower framework benchmarks. Built on the Actix actor framework, it provides a rich m …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412ff719) --- # Phoenix Framework for Elixir Web Apps (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-412ffb02 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Phoenix is an Elixir web framework with LiveView, Channels, and BEAM fault tolerance for scalable real-time apps. ## What it is Phoenix is a web framework for the Elixir programming language built on top of the BEAM virtual machine. It provides a productive development experience from prototype to production, with first-class suppo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412ffb02) --- # Tornado: Python Async Web Framework Guide 2026 URL: https://tokrepo.com/en/workflows/asset-412ffd8f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tornado provides non-blocking I/O, WebSockets, and long polling for Python web applications handling thousands of connections. ## What it is Tornado is a Python web framework and asynchronous networking library originally developed at FriendFeed (acquired by Facebook in 2009). It was one of the earliest non-blocking I/O frameworks for Python, d …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412ffd8f) --- # Sanic: Async Python Web Framework Built for Speed URL: https://tokrepo.com/en/workflows/asset-412ffff9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sanic is an async Python web framework with native async/await support, HTTP/2, WebSocket, streaming responses, and auto-generated API documentation. ## What it is Sanic is an asynchronous Python web framework built from the ground up with async/await support. It provides HTTP/1.1 and HTTP/2, WebSocket support, streaming responses, middleware, blueprints for modular …(content truncated, full version at https://tokrepo.com/en/workflows/asset-412ffff9) --- # Ktor: Async Kotlin Web Framework by JetBrains 2026 URL: https://tokrepo.com/en/workflows/asset-41300248 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ktor is JetBrains' lightweight async web framework for building Kotlin server and client HTTP applications. ## What it is Ktor is a framework by JetBrains for building connected applications in Kotlin with minimal effort. It supports coroutines natively, runs on multiple engines (Netty, CIO, Jetty), and works for both server- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-41300248) --- # Starlette: Lightweight ASGI Framework for Python 2026 URL: https://tokrepo.com/en/workflows/asset-41300507 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lightweight async Python web framework providing routing, middleware, WebSocket, and streaming. The foundation under FastAPI. ## What it is Starlette is a lightweight ASGI framework for building high-performance async web services in Python. It provides routing, middleware, WebSocket support, GraphQL, background tasks, and streaming responses. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-41300507) --- # Open Policy Agent (OPA): Policy as Code Engine (2026) URL: https://tokrepo.com/en/workflows/asset-4153bc1e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OPA decouples authorization policies from application code using the Rego language, evaluated anywhere from Kubernetes to microservices. ## What it is Open Policy Agent (OPA) is a CNCF graduated project that provides a general-purpose policy engine. Instead of hardcoding authorization logic into each service, you write policies in Rego, a declarative lan …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4153bc1e) --- # Sweep: Turn GitHub Issues into Pull Requests 2026 URL: https://tokrepo.com/en/workflows/asset-41907c03 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sweep reads your GitHub issues, generates code changes, and opens pull requests automatically for bug fixes and small features. ## What it is Sweep is an AI-powered GitHub bot that reads issue descriptions and generates pull requests with the corresponding code changes. You write an issue describing a bug or a small feature, tag Sweep, and it an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-41907c03) --- # Infisical: Open-Source Secret Management Platform (2026) URL: https://tokrepo.com/en/workflows/asset-41fbcc5c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Infisical manages API keys and credentials with end-to-end encryption. ## What it is Infisical is an open-source secret management platform that centralizes API keys, database credentials, and environment variables. It provides a dashboard for managing secrets, SDKs for fetching secrets at …(content truncated, full version at https://tokrepo.com/en/workflows/asset-41fbcc5c) --- # SuperClaude: Workflow Framework for Claude Code Setup URL: https://tokrepo.com/en/workflows/asset-42067371 Type: featured-workflow Updated: 2026-04-30T11:16:39.421997 > **TL;DR**: SuperClaude is a Python CLI distributed via pipx that bolts a complete development workflow onto Claude Code. A single `SuperClaude install` writes 16+ slash commands, 9 cognitive personas, MCP server wiring, and a smart flag system into your `~/.claude/` directory in under a minute, turning a stock setup into a structured opinionated dev environment. ## What SuperClaude Adds to Claude Code SuperClaude is a community configuration framework that bolts a full opinionated workflow onto Anthropic's Claude Code CLI. According to the [official SuperClaude_Framework reposi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42067371) --- # Cloudflare Workers AI: Serverless AI Inference (2026) URL: https://tokrepo.com/en/workflows/asset-422d0627 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cloudflare Workers AI runs AI models serverlessly at the edge with global distribution and no GPUs to manage. ## What it is Cloudflare Workers AI lets you run AI models at the edge with zero infrastructure management. It supports text generation, image generation, speech-to-text, translation, embeddings, and more -- all as serv …(content truncated, full version at https://tokrepo.com/en/workflows/asset-422d0627) --- # Joplin: Privacy-Focused Open Source Note Taking (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-42403801 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Joplin provides Markdown notes with end-to-end encrypted sync across all platforms and open-source freedom. ## What it is Joplin is a privacy-focused open-source note taking application with sync capabilities across Windows, macOS, Linux, Android, and iOS. It uses Markdown for formatting, supports end-to-end encryption for sy …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42403801) --- # Jest: JavaScript Testing Framework Complete Guide (2026) URL: https://tokrepo.com/en/workflows/asset-4240433c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: JavaScript testing framework with zero-config setup, snapshot testing, built-in mocking, code coverage, and parallel test execution. ## What it is Jest is a JavaScript testing framework focused on simplicity. It provides zero-config setup for most JavaScript and TypeScript projects, snapshot testing for UI components, built-in mocking, code coverage …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4240433c) --- # Logseq: Privacy-First Knowledge Management in 2026 URL: https://tokrepo.com/en/workflows/asset-42404795 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Logseq is a local-first, open-source outliner with bidirectional links, block references, and graph visualization for personal knowledge management. ## What it is Logseq is a privacy-first, open-source knowledge management platform built on an outliner model. Every note is a hierarchy of blocks that can link to other blocks anywhere in your graph. Bidirectional link …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42404795) --- # Bubble Tea: TUI Framework for Go Applications (2026) URL: https://tokrepo.com/en/workflows/asset-42404a64 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bubble Tea is a Go TUI framework based on the Elm Architecture for building composable, event-driven terminal applications. ## What it is Bubble Tea is a terminal user interface (TUI) framework for Go, built on the Elm Architecture pattern. You define a model (state), an update function (handles messages), and a view function (renders the UI …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42404a64) --- # Selenium: Browser Automation Framework Guide (2026) URL: https://tokrepo.com/en/workflows/asset-42404d19 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Selenium provides WebDriver-based browser automation for E2E web testing across all major browsers. ## What it is Selenium is the original browser automation framework for testing web applications. Its WebDriver API lets you drive Chrome, Firefox, Safari, and Edge programmatically from Java, Python, C#, Ruby, or JavaS …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42404d19) --- # Wails: Build Desktop Apps with Go and Web Tech (2026) URL: https://tokrepo.com/en/workflows/asset-42404fb6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Wails combines Go backend logic with any web frontend to produce small native desktop apps without Electron. ## What it is Wails is a framework for building desktop applications using Go for the backend and any web technology (React, Svelte, Vue) for the frontend. Unlike Electron, which bundles a full Chromium instance, Wails …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42404fb6) --- # k6: Modern Load Testing with Go and JavaScript (2026) URL: https://tokrepo.com/en/workflows/asset-4240522f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: k6 lets you write load tests in JavaScript and run them in a high-performance Go runtime. ## What it is k6 is a modern load testing tool built by Grafana Labs. You write test scripts in JavaScript (ES6), and k6 executes them in a high-performance Go runtime (not Node.js). It is CLI-first, developer-friendly, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4240522f) --- # Locust: Scalable Load Testing in Pure Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-42405496 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Locust lets you define load test scenarios as Python code, distribute them across machines, and monitor results in a real-time web UI. ## What it is Locust is an open-source load testing tool where you define user behavior in plain Python code. There is no DSL to learn, no XML configuration, and no GUI-driven test creation. Locust is distributed by des …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42405496) --- # Hurl: Run and Test HTTP Requests in 2026 URL: https://tokrepo.com/en/workflows/asset-42405722 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hurl runs and tests HTTP requests from plain text files with chaining, assertions, and CI/CD integration. Written in Rust. ## What it is Hurl is a command-line tool for running HTTP requests defined in a simple plain text format. Each `.hurl` file contains one or more requests with optional assertions, captures, and variable interpolation. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42405722) --- # pytest: Python Testing Framework That Scales (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-42405aa1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: pytest provides fixtures, parameterization, and plugins for Python testing at any scale. ## What it is pytest is the de facto standard testing framework for Python. It supports simple unit tests, complex functional tests, fixtures for dependency injection, parameterized test generation, markers, and a rich …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42405aa1) --- # Marker: Convert PDF to Markdown Accurately in 2026 URL: https://tokrepo.com/en/workflows/asset-42976daf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Marker converts PDFs to clean Markdown with accurate table, equation, and code block extraction, optionally GPU-accelerated. ## What it is Marker is a Python tool that converts PDF documents to Markdown and JSON with high accuracy. It handles complex layouts including tables, images, equations, code blocks, and multi-column text. The tool use …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42976daf) --- # Promptfoo: Test and Red-Team LLM Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-42c43368 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Promptfoo evaluates prompts, compares models side-by-side, and red-teams AI applications for vulnerabilities via CLI. ## What it is Promptfoo is a CLI tool for evaluating prompts, comparing LLM model outputs side-by-side, and red-teaming AI applications for security vulnerabilities. It runs test suites against your prompts with configu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42c43368) --- # Phoenix: Open Source AI Observability Platform (2026) URL: https://tokrepo.com/en/workflows/asset-42fa8573 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Phoenix provides tracing, evaluation, and prompt management for LLM apps via OpenTelemetry. ## What it is Phoenix is an open-source AI observability platform by Arize AI. It traces LLM application calls, evaluates output quality, and helps debug issues in retrieval-augmented generation (RAG) pipelines, agents, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-42fa8573) --- # /batch — Parallel Worktree Migration Slash Command URL: https://tokrepo.com/en/workflows/asset-43338356 Type: featured-workflow Updated: 2026-04-30T11:16:39.478562 > **TL;DR**: /batch is an open-source Claude Code slash command that splits a large mechanical migration across parallel git worktrees, runs one Claude subagent per chunk, and finishes a 200-file refactor in roughly 12 minutes instead of 90. Save the file to .claude/commands/batch.md, reload, then call it with a prompt and an optional --chunk-size flag to fan out the work safely. ## What /batch Solves Mechanical mass-edit tasks — codemods, type migrations, dependency swaps, consistent renames — rarely fail because the model is not smart enough. They fail because they are run serially, one file a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43338356) --- # Appwrite: Open-Source Backend Platform for AI Apps (2026) URL: https://tokrepo.com/en/workflows/asset-4358c35f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Appwrite provides auth, databases, storage, and functions as open-source BaaS. ## What it is Appwrite is an open-source backend-as-a-service platform that provides authentication, databases, file storage, serverless functions, and messaging APIs. It runs as a set of Docker containers and exposes R …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4358c35f) --- # OpenMontage AI Video Production System: 2026 Guide URL: https://tokrepo.com/en/workflows/asset-435ffbc5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenMontage turns natural language descriptions into fully produced videos through 11 pipelines and 400+ agent skills. ## What it is OpenMontage is the first open-source agentic video production system. It takes a natural language description of a video and handles the entire production pipeline automatically -- from research and script …(content truncated, full version at https://tokrepo.com/en/workflows/asset-435ffbc5) --- # OpenCode: Open-Source AI Coding Agent for Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-4374a5c2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenCode is an open-source terminal AI coding agent with TUI design, LSP integration, and multi-provider LLM support. ## What it is OpenCode is an open-source AI coding agent designed for terminal-first workflows. It features a TUI (terminal user interface) for interactive coding sessions, LSP (Language Server Protocol) integration for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4374a5c2) --- # Claude Memory Compiler: Auto Knowledge Base in 2026 URL: https://tokrepo.com/en/workflows/asset-4388e2e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Auto-capture Claude Code sessions into structured, cross-referenced knowledge articles without a vector DB. ## What it is Claude Memory Compiler automatically captures decisions, patterns, and lessons from your Claude Code sessions and compiles them into a structured knowledge base. Hooks run after each session to extract not …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4388e2e8) --- # Neon MCP: Serverless Postgres via AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-439d1fdb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Neon MCP lets AI agents create Neon projects, branch databases, run SQL, and optimize queries via natural language. ## What it is Neon MCP is a Model Context Protocol server that connects AI agents like Claude Code to Neon's serverless PostgreSQL platform. Through natural language, you can create database projects, branch databases f …(content truncated, full version at https://tokrepo.com/en/workflows/asset-439d1fdb) --- # just: A Handy Command Runner Written in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-43a1d1e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: just is a Rust-based command runner that replaces make for project-specific task automation. ## What it is just is a command runner inspired by make but without the historical complexity. You define project-specific commands in a `justfile`, and run them with `just `. It supports arguments, default valu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43a1d1e0) --- # TokenCost: LLM Price Calculator for 400+ Models in 2026 URL: https://tokrepo.com/en/workflows/asset-43b26691 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Python library for client-side token counting and USD cost estimation across 400+ LLM models. ## What it is TokenCost is a Python library that counts tokens and estimates USD costs for over 400 LLM models. In three lines of code, you can calculate the cost of any prompt or completion across OpenAI, Anthropic, Mi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43b26691) --- # Gum: Build Glamorous Interactive Shell Scripts (2026) URL: https://tokrepo.com/en/workflows/asset-43c00283 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gum turns plain bash scripts into interactive TUI experiences with prompts, spinners, file pickers, and styled text. ## What it is Gum is a command-line toolkit by Charm for building interactive shell scripts. It provides standalone commands for spinners, confirmation prompts, text inputs, file pickers, tables, and styled output. Each …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43c00283) --- # Griptape: Modular Python AI Agent Framework (2026) URL: https://tokrepo.com/en/workflows/asset-43de1956 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Modular Python framework for building AI agents with composable structures, tools, memory, and Off-Prompt data processing for enterprise security. ## What it is Griptape is a modular Python framework for building AI agents with composable structures, tools, and memory. Its defining feature is Off-Prompt data processing, which keeps sensitive data out of LLM prompt …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43de1956) --- # nnn: The Fastest Terminal File Manager in C (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-43de3496 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: nnn is a zero-config terminal file manager written in C with plugins, type-to-nav, and batch renaming. ## What it is nnn (n-cubed) is a full-featured, ultra-fast terminal file manager written in C. It starts instantly, uses minimal memory, and provides features like type-to-navigate, a plugin ecosystem, disk usage analys …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43de3496) --- # Gemini CLI Firebase Extension: Deploy Guide 2026 URL: https://tokrepo.com/en/workflows/asset-43efc92f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Deploy and manage Firebase projects through natural language commands using the Gemini CLI Firebase extension. ## What it is The Gemini CLI Firebase extension lets you manage Firebase projects from your terminal using natural language. Instead of memorizing firebase-cli flags, you describe what you want (deploy a function, set u …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43efc92f) --- # diff-so-fancy: Beautiful Git Diffs in Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-43fc75b0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Drop-in replacement for git diff that strips noise, highlights word-level changes, and produces clean readable output. ## What it is diff-so-fancy is a command-line tool that transforms ugly unified diffs into clean, human-readable output. It strips redundant filename headers, removes leading +/- characters, and highlights word-level ch …(content truncated, full version at https://tokrepo.com/en/workflows/asset-43fc75b0) --- # lsd: Next Gen ls Command with Icons and Colors 2026 URL: https://tokrepo.com/en/workflows/asset-441b26d7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rust-powered ls replacement with Nerd Font icons, colors, tree view, Git status indicators, and human-readable defaults. ## What it is lsd (LSDeluxe) is a modern replacement for the Unix `ls` command written in Rust. It adds Nerd Font icons, color-coded file types, tree view, Git status indicators, and human-readable file sizes. The outpu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-441b26d7) --- # pgcli: PostgreSQL CLI with Auto-Completion (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-44395a8b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: pgcli replaces psql with intelligent auto-completion, syntax highlighting, and multi-line editing. ## What it is pgcli is a Python-based interactive command-line interface for PostgreSQL that serves as a modern replacement for psql. It adds intelligent auto-completion for table names, column names, SQL keywords, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-44395a8b) --- # Docling: IBM Document Parsing Library for AI in 2026 URL: https://tokrepo.com/en/workflows/asset-443e86c2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: IBM document parser converting PDFs, DOCX, PPTX, and images into structured markdown or JSON for LLMs. ## What it is Docling is IBM's open-source document parsing library that converts PDFs, Word documents, PowerPoint files, images, and HTML into structured markdown or JSON. It handles complex layouts with tables, header …(content truncated, full version at https://tokrepo.com/en/workflows/asset-443e86c2) --- # FoundationDB: Distributed Key-Value Store Guide (2026) URL: https://tokrepo.com/en/workflows/asset-444fe0e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Multi-model distributed database with ACID transactions, used at Apple scale. Open-sourced with strong consistency guarantees. ## What it is FoundationDB is a distributed key-value store with full ACID transactions across multiple keys and multiple machines. Originally acquired by Apple, it was open-sourced in 2018 and powers critical Apple ser …(content truncated, full version at https://tokrepo.com/en/workflows/asset-444fe0e0) --- # mycli: MySQL CLI with Auto-Completion in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-4457836c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: mycli replaces the default mysql client with auto-completion, syntax highlighting, and formatting. ## What it is mycli is a Python-based interactive CLI for MySQL, MariaDB, and Percona with smart auto-completion, syntax highlighting, and result formatting. It is the MySQL counterpart of pgcli, part of the dbcli proje …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4457836c) --- # q: Run SQL Directly on CSV and Log Files in 2026 URL: https://tokrepo.com/en/workflows/asset-4475af2f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI tool that runs SQLite-compatible SQL queries against CSV, TSV, and any delimited text file without database setup. ## What it is q is a command-line tool that lets you run full SQLite-compatible SQL queries directly against CSV, TSV, and any delimited text file on disk. Instead of importing data into a database or writing awk/sed pi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4475af2f) --- # Kokoro TTS: Lightweight 82M Voice Model Guide 2026 URL: https://tokrepo.com/en/workflows/asset-44809dfb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kokoro delivers high-quality text-to-speech across 9 languages with only 82M parameters and Apache 2.0 license. ## What it is Kokoro is a lightweight text-to-speech model with 82 million parameters. Despite its small size, it produces speech quality comparable to models with billions of parameters. It supports 9 languages includi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-44809dfb) --- # lnav: Log File Navigator with SQL Queries in 2026 URL: https://tokrepo.com/en/workflows/asset-4493f997 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Advanced terminal log viewer with SQL queries against log records, live tailing, and automatic format detection for dozens of formats. ## What it is lnav is an advanced log file viewer for the terminal that understands dozens of log formats out of the box. It merges multiple log files by timestamp, provides SQL queries against log records, live-tails r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4493f997) --- # OneDev: Self-Hosted Git Server with CI/CD and Kanban (2026) URL: https://tokrepo.com/en/workflows/asset-4498615d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OneDev bundles Git hosting, CI/CD, issue tracking, and Kanban into a single self-hosted Java binary with no external dependencies. ## What it is OneDev is a self-hosted DevOps platform that combines Git repository hosting, CI/CD pipelines, issue tracking, and a Kanban board in a single Java binary. Unlike Gitea or GitLab, which require separate run …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4498615d) --- # hexyl: Colorful Command-Line Hex Viewer in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-44b21bb2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: hexyl colorizes hex output by byte category so binary file inspection is fast and scannable from the terminal. ## What it is hexyl is a small, fast command-line hex viewer written in Rust. It color-codes bytes by category: ASCII printable characters, whitespace, non-ASCII bytes, and null bytes each get a distinct color. This mak …(content truncated, full version at https://tokrepo.com/en/workflows/asset-44b21bb2) --- # rqlite: Distributed Database on SQLite and Raft (2026) URL: https://tokrepo.com/en/workflows/asset-44ddef49 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: rqlite replicates SQLite across nodes with Raft consensus for fault-tolerant distributed SQL. ## What it is rqlite turns the battle-tested SQLite engine into a fault-tolerant distributed database. Each node wraps SQLite with the Raft consensus protocol, replicating writes to a cluster of 3, 5, or 7 nodes. It ser …(content truncated, full version at https://tokrepo.com/en/workflows/asset-44ddef49) --- # Ruff: Ultra-Fast Python Linter and Formatter in Rust URL: https://tokrepo.com/en/workflows/asset-456bad98 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ruff is a Rust-based Python linter and formatter that runs 10-100x faster than Flake8 and Black, replacing multiple tools with one binary. ## What it is Ruff is a Python linter and code formatter written in Rust. It reimplements rules from Flake8, isort, pyupgrade, pydocstyle, and other tools in a single binary that runs 10-100x faster. Ruff handles both l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-456bad98) --- # ExternalDNS: Sync Kubernetes with DNS Providers (2026) URL: https://tokrepo.com/en/workflows/asset-458a67fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubernetes controller that auto-syncs DNS records with 30+ providers based on Services and Ingresses. ## What it is ExternalDNS is a Kubernetes SIG controller that automatically manages DNS records based on your Kubernetes resources. When you create a Service with a hostname annotation or an Ingress with a host rule, Ex …(content truncated, full version at https://tokrepo.com/en/workflows/asset-458a67fd) --- # Apache NiFi: Visual Dataflow Automation Platform (2026) URL: https://tokrepo.com/en/workflows/asset-45f70684 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache NiFi provides a visual drag-and-drop interface for designing enterprise data pipelines. ## What it is Apache NiFi was originally developed by the NSA and donated to the Apache Foundation. It automates the movement of data between disparate systems with a visual flow-based programming interface. NiFi excels …(content truncated, full version at https://tokrepo.com/en/workflows/asset-45f70684) --- # n8n MCP Server: AI-Powered Workflow Automation (2026) URL: https://tokrepo.com/en/workflows/asset-4635d46c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server bridging AI agents to n8n's 1,396 nodes and 2,709 workflow templates via natural language. ## What it is n8n MCP Server is a bridge between AI assistants and the n8n workflow automation platform. It exposes 1,396 n8n nodes (812 core plus 584 community) and 2,709 workflow templates as MCP tools that any compat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4635d46c) --- # Anthropic Cookbook: Official Claude Recipes for 2026 URL: https://tokrepo.com/en/workflows/asset-464d4ded Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Anthropic's official cookbook provides self-contained Jupyter notebooks covering prompt engineering, tool use, RAG, and agent patterns. ## What it is The Anthropic Cookbook is the official repository of notebooks and code recipes for building applications with Claude. Each recipe is a self-contained Jupyter notebook that demonstrates a specific pattern: …(content truncated, full version at https://tokrepo.com/en/workflows/asset-464d4ded) --- # Tailwind CSS v4: Utility-First CSS Framework 2026 URL: https://tokrepo.com/en/workflows/asset-46f11f5d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tailwind CSS v4 delivers 10x faster builds via a Rust engine, automatic content detection, and zero-config setup for utility-first CSS. ## What it is Tailwind CSS is the most popular utility-first CSS framework. Version 4 rewrites the core engine in Rust, delivering 10x faster build times, automatic content detection (no more configuring content paths), …(content truncated, full version at https://tokrepo.com/en/workflows/asset-46f11f5d) --- # Pixie: eBPF Auto-Instrumentation for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-472761aa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pixie uses eBPF to capture HTTP, gRPC, SQL, and DNS traffic from every Kubernetes pod with zero code changes. ## What it is Pixie is a CNCF sandbox project that instruments Kubernetes workloads using eBPF probes attached at the kernel boundary. There are no agents to import, no SDKs to adopt, and no sampling. Pixie captures ful …(content truncated, full version at https://tokrepo.com/en/workflows/asset-472761aa) --- # TiKV: Distributed Key-Value Store on Raft in 2026 URL: https://tokrepo.com/en/workflows/asset-4772853c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TiKV is a Rust-based distributed key-value store that provides ACID transactions and strong consistency via the Raft consensus protocol. ## What it is TiKV is a distributed transactional key-value store written in Rust. It is a CNCF-graduated project that powers TiDB (a distributed SQL database). TiKV provides horizontal scaling, strong consistency via t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4772853c) --- # Claude Reflect: Self-Learning Plugin for 2026 URL: https://tokrepo.com/en/workflows/asset-47d7c959 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Reflect captures your corrections during coding sessions and persists learnings to CLAUDE.md automatically. ## What it is Claude Reflect is a Claude Code plugin that captures corrections and preferences you make during development sessions. When you fix something Claude got wrong or express a preference for a certain approach …(content truncated, full version at https://tokrepo.com/en/workflows/asset-47d7c959) --- # mcp-agent: Build AI Agents with MCP Patterns (2026) URL: https://tokrepo.com/en/workflows/asset-47de10df Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: mcp-agent provides composable workflow patterns like orchestrator, map-reduce, and evaluator-optimizer for building MCP-based agents. ## What it is mcp-agent is a Python framework for building AI agents that leverage the Model Context Protocol (MCP). It implements composable workflow patterns including orchestrator, map-reduce, evaluator-optimizer, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-47de10df) --- # Remotion Voiceover Rule: AI TTS for Video in 2026 URL: https://tokrepo.com/en/workflows/asset-47ec82a6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Add AI voiceover to Remotion compositions using ElevenLabs TTS with automatic duration matching. ## What it is The Remotion Voiceover Rule is a skill rule from the official Remotion Agent Skill set. It provides a structured pattern for adding AI-generated speech audio to Remotion video compositions using text-to-sp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-47ec82a6) --- # Claude Web Artifacts Builder: Official Skill (2026) URL: https://tokrepo.com/en/workflows/asset-483d7b75 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Claude skill for building multi-component HTML artifacts with React and Tailwind CSS. ## What it is The web-artifacts-builder is an official Claude skill for creating elaborate, multi-component HTML artifacts inside claude.ai conversations. It uses React, Tailwind CSS, and shadcn/ui to produce interactiv …(content truncated, full version at https://tokrepo.com/en/workflows/asset-483d7b75) --- # MLflow: Open Source AI Engineering Platform (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-486347c7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MLflow provides tracing, evaluation, prompt management, and model deployment for AI engineering teams. ## What it is MLflow is an open-source platform for managing the full AI and machine learning lifecycle. It covers experiment tracking, model registry, prompt engineering, evaluation, tracing, and deployment. With 25K+ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-486347c7) --- # Claude Code Agent: Model Evaluator Benchmark (2026) URL: https://tokrepo.com/en/workflows/asset-487e41a3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent specialized in evaluating LLM outputs, comparing models, and tracking quality metrics across benchmarks. ## What it is Claude Code Agent: Model Evaluator is a pre-configured Claude Code agent focused on evaluating and benchmarking LLM outputs. It helps you compare different models, measure output quality against criteria, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-487e41a3) --- # Excalidraw: AI-Friendly Whiteboard Diagramming (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-492f59b6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Excalidraw is an open-source whiteboard for sketchy hand-drawn diagrams with AI text-to-diagram generation. ## What it is Excalidraw is an open-source virtual whiteboard for creating hand-drawn style diagrams. It produces sketchy, informal visuals that are popular for architecture diagrams, flowcharts, wireframes, and brainst …(content truncated, full version at https://tokrepo.com/en/workflows/asset-492f59b6) --- # Weaviate Vector Database: Semantic Search in 2026 URL: https://tokrepo.com/en/workflows/asset-492f7d14 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Weaviate stores vectors alongside data and serves hybrid semantic plus keyword search at scale. ## What it is Weaviate is an open-source vector database designed for semantic search at scale. It stores data objects alongside their vector embeddings and supports hybrid search that combines vector similarity with BM …(content truncated, full version at https://tokrepo.com/en/workflows/asset-492f7d14) --- # KubeVirt: Run Virtual Machines on Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-494fe800 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KubeVirt lets you run traditional VMs alongside containers on the same Kubernetes cluster. ## What it is KubeVirt is a Kubernetes extension that adds virtual machine workloads as first-class citizens to your cluster. Instead of choosing between containers and VMs, KubeVirt lets you run both side by side, shar …(content truncated, full version at https://tokrepo.com/en/workflows/asset-494fe800) --- # Infracost: Cloud Cost Estimates for Terraform (2026) URL: https://tokrepo.com/en/workflows/asset-49638173 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI tool that shows cloud cost breakdowns for Terraform changes before deployment. ## What it is Infracost is a CLI tool that generates cloud cost estimates from Terraform plans. Before deploying any infrastructure change, you can see exactly how it affects your monthly bill. It supports AWS, Azure, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-49638173) --- # Langfuse: Open Source LLM Observability in 2026 URL: https://tokrepo.com/en/workflows/asset-49a8eb0b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Langfuse provides open-source tracing, prompt management, and evaluation for LLM applications. Self-hosted or cloud, MIT licensed. ## What it is Langfuse is an open-source LLM engineering platform that provides observability for AI applications. It traces every LLM call, tracks token usage and latency, manages prompt versions, and supports evaluati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-49a8eb0b) --- # BAML: Type-Safe AI Function Framework for 2026 URL: https://tokrepo.com/en/workflows/asset-49bc0525 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BAML gives you type-safe structured outputs from LLMs with guaranteed schema compliance. ## What it is BAML (Basically A Made-up Language) is a framework that adds engineering rigor to prompt engineering. It provides type-safe structured outputs from LLMs with guaranteed schema compliance. You define the sh …(content truncated, full version at https://tokrepo.com/en/workflows/asset-49bc0525) --- # E2B: Secure Cloud Sandboxes for AI Code Execution (2026) URL: https://tokrepo.com/en/workflows/asset-49c40861 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: E2B spins up isolated Linux sandboxes in milliseconds so AI agents can execute arbitrary code without risking your host system. ## What it is E2B provides open-source, secure cloud sandboxes for AI agents to execute code safely. Each sandbox is an isolated Linux environment with its own filesystem, networking, and process control, spun up in rou …(content truncated, full version at https://tokrepo.com/en/workflows/asset-49c40861) --- # Letta: AI Agent Long-Term Memory Framework (2026) URL: https://tokrepo.com/en/workflows/asset-4a18797f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Letta gives AI agents tiered long-term memory so they manage their own context window automatically. ## What it is Letta, formerly known as MemGPT, is an open-source framework for building AI agents that maintain persistent long-term memory across conversations. It addresses the fundamental context window limitation of …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4a18797f) --- # Instructor: Structured LLM Outputs with Pydantic (2026) URL: https://tokrepo.com/en/workflows/asset-4a86c01b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Instructor extracts structured, validated data from LLM responses using Pydantic models with retry logic and streaming. ## What it is Instructor is a Python library that wraps LLM API clients to return structured, validated outputs instead of raw text. You define a Pydantic model, pass it to Instructor, and the library handles prompt inj …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4a86c01b) --- # Calico Kubernetes Networking and Security Guide 2026 URL: https://tokrepo.com/en/workflows/asset-4c5c9177 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Calico is a high-performance CNI plugin for Kubernetes with network policy, eBPF, and WireGuard encryption. ## What it is Calico is a networking and network security solution for Kubernetes that provides pod-to-pod networking and fine-grained network policy enforcement. It supports multiple data planes including standard Linu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4c5c9177) --- # PDFMathTranslate: Translate PDF Papers Keeping Format 2026 URL: https://tokrepo.com/en/workflows/asset-4c628f43 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Translate scientific PDFs while preserving math formulas, charts, and layout. Supports multiple translation backends including OpenAI. ## What it is PDFMathTranslate is a tool that translates PDF scientific papers while preserving mathematical formulas, charts, tables, and page layout. Unlike generic PDF translators that break LaTeX equations and mangl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4c628f43) --- # Bottlerocket: Container-Optimized Linux OS in 2026 URL: https://tokrepo.com/en/workflows/asset-4c93666f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bottlerocket is AWS's minimal Linux OS for containers with an immutable root filesystem, automatic updates, and API-driven configuration. ## What it is Bottlerocket is a minimal Linux distribution built by AWS specifically for running containers. It reduces the attack surface with an immutable root filesystem, removes unnecessary packages (no shell by def …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4c93666f) --- # Khoj: Your AI Second Brain Open Source (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-4cbd3b7b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source personal AI app for chat, search, and knowledge management with multi-LLM support, docs integration, and Obsidian plugin. ## What it is Khoj is an open-source personal AI application for chat, search, and knowledge management. It connects to your documents, notes, and files to provide AI-powered search and conversation grounded in your per …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4cbd3b7b) --- # Ollama Model Library: Best Local AI Models (2026) URL: https://tokrepo.com/en/workflows/asset-4cecf968 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated comparison of the best Ollama models for coding, chat, and reasoning tasks on local hardware. ## What it is This guide covers the best models available on Ollama for local AI development. It compares Llama, Mistral, Gemma, Phi, and Qwen model families across coding, chat, and reasoning tasks, helping you choose …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4cecf968) --- # Together AI Dedicated Containers Skill for 2026 URL: https://tokrepo.com/en/workflows/asset-4d4e267f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill for deploying custom Docker inference workers on Together AI GPU infrastructure. ## What it is This skill teaches Claude Code how to use Together AI's dedicated container deployment API. It enables AI agents to deploy custom Docker images as inference workers on managed GPU infrastructure with full …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4d4e267f) --- # Mise: Universal Dev Environment Manager in 2026 URL: https://tokrepo.com/en/workflows/asset-4d69840d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Universal version manager for Node.js, Python, Go, Rust, and 100+ tools with project-level pinning. ## What it is Mise (pronounced 'meez') is a universal development tool version manager that replaces nvm, pyenv, rbenv, and similar single-language managers. It manages Node.js, Python, Go, Rust, Java, and over 100 othe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4d69840d) --- # LangSmith: Prompt Debugging and LLM Observability (2026) URL: https://tokrepo.com/en/workflows/asset-4d9432ea Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangSmith provides tracing, prompt testing, and evaluation tools for LLM app debugging. ## What it is LangSmith is LangChain's observability and evaluation platform for LLM applications. It provides trace visualization for every LLM call, a prompt playground for rapid iteration, dataset-driven evaluation, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4d9432ea) --- # Letta: Stateful AI Agents with Memory in 2026 URL: https://tokrepo.com/en/workflows/asset-4ddbd0e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Letta provides a platform for building stateful AI agents with persistent memory, self-editing capabilities, and multi-agent orchestration. ## What it is Letta (formerly MemGPT) is a platform for building stateful AI agents with advanced memory management. Agents built with Letta maintain persistent memory across conversations, can self-edit their own conte …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4ddbd0e0) --- # KubeSphere: Multi-Cluster Kubernetes Management (2026) URL: https://tokrepo.com/en/workflows/asset-4e682acc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KubeSphere adds multi-tenancy, DevOps pipelines, service mesh, and observability to any Kubernetes cluster through a unified web console. ## What it is KubeSphere is an open-source container platform that layers multi-tenancy, DevOps pipelines, service mesh, observability, and an application store on top of any standard Kubernetes cluster. It provides a w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4e682acc) --- # k3d: Run K3s Kubernetes in Docker (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-4e8708b2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: k3d runs K3s Kubernetes clusters inside Docker containers, giving you disposable multi-node clusters in seconds. ## What it is k3d is a lightweight wrapper around Rancher's K3s distribution that runs entire Kubernetes clusters inside Docker containers. Instead of provisioning VMs or paying for cloud clusters, you get a multi-node …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4e8708b2) --- # Dockge: Self-Hosted Docker Compose Manager UI (2026) URL: https://tokrepo.com/en/workflows/asset-4ed7c58c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dockge provides a reactive web UI for managing Docker Compose stacks on your own server. ## What it is Dockge is a self-hosted Docker Compose management UI from the creator of Uptime Kuma. It provides a reactive web interface for creating, editing, starting, stopping, and monitoring docker-compose.yaml stac …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4ed7c58c) --- # Diffusers: Video and Image Generation Library in 2026 URL: https://tokrepo.com/en/workflows/asset-4ef1950f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Diffusers by Hugging Face provides a unified Python API for running 50+ diffusion models for image and video generation. ## What it is Diffusers is Hugging Face's Python library for running diffusion models. It provides a unified API for over 50 models including Stable Diffusion, SDXL, CogVideoX, AnimateDiff, and Stable Video Diffusion. Y …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4ef1950f) --- # Chart.js: Simple Flexible HTML5 Canvas Charts in 2026 URL: https://tokrepo.com/en/workflows/asset-4fa5bf54 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Most popular web charting library with 8 chart types, responsive design, and animations on HTML5 canvas. ## What it is Chart.js is an open-source JavaScript charting library that renders beautiful, responsive charts on HTML5 canvas. It ships with 8 built-in chart types (line, bar, radar, doughnut, pie, polar area, bubble, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4fa5bf54) --- # Cypress: Fast and Reliable Browser Testing for Modern Web URL: https://tokrepo.com/en/workflows/asset-4fa5c7a2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cypress runs end-to-end tests in the browser alongside your app, providing time-travel debugging, automatic waiting, and screenshots on failure. ## What it is Cypress is a front-end testing framework built for modern web applications. Unlike Selenium-based tools that operate outside the browser, Cypress runs in the same event loop as your application. This archi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4fa5c7a2) --- # Chakra UI: Accessible React Component System in 2026 URL: https://tokrepo.com/en/workflows/asset-4fa5c9c6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Chakra UI provides accessible, themeable React components with WAI-ARIA compliance and dark mode out of the box. ## What it is Chakra UI is a simple, modular, and accessible component library for React. Every component follows WAI-ARIA guidelines, supports dark mode out of the box, and uses a themeable design token system. Built o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4fa5c9c6) --- # Auth.js: Open Source Web Authentication Library (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-4fa5cb9a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Auth.js provides drop-in authentication with 80+ OAuth providers, magic links, and session management. ## What it is Auth.js (formerly NextAuth.js) is a complete open-source authentication solution for web applications. It supports Next.js, SvelteKit, Remix, Express, and other frameworks. Auth.js provides 80+ OAuth provi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4fa5cb9a) --- # Lucide: Beautiful Open-Source Icon Toolkit for React (2026) URL: https://tokrepo.com/en/workflows/asset-4fa5cff1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lucide provides 1500+ crisp SVG icons with first-class React, Vue, Svelte, and Angular components. ## What it is Lucide is an open-source icon toolkit with over 1500 crisp, minimalist SVG icons. It is a community-driven fork of Feather Icons with significantly more icons and active maintenance. Lucide provides first- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4fa5cff1) --- # Gemini CLI BigQuery Extension for Data Analytics (2026) URL: https://tokrepo.com/en/workflows/asset-4fd37d4a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI extension that helps you write SQL, analyze BigQuery datasets, and optimize queries. ## What it is This is a Gemini CLI extension that adds BigQuery capabilities to your terminal workflow. It helps you write SQL queries, analyze datasets, optimize query performance, and manage BigQuery tables. The exten …(content truncated, full version at https://tokrepo.com/en/workflows/asset-4fd37d4a) --- # Together AI Sandboxes Skill for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-5086f64d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill for executing Python in Together AI's managed remote sandbox environments. ## What it is This is a Claude Code skill that teaches the agent how to use Together AI's sandbox API. It enables Claude Code to execute Python code in managed remote sandboxes with stateful sessions, file I/O, and isol …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5086f64d) --- # LLM CLI: Run Any Language Model from Your Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-510fc429 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LLM runs prompts against 50+ model providers from the terminal with SQLite logging. ## What it is LLM is a command-line tool and Python library created by Simon Willison (co-creator of Django). It provides a unified interface to run prompts against language models from OpenAI, Anthropic, Google, Mistra …(content truncated, full version at https://tokrepo.com/en/workflows/asset-510fc429) --- # Stagehand: AI Browser Automation Framework in 2026 URL: https://tokrepo.com/en/workflows/asset-5114a013 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Stagehand uses act(), extract(), and observe() to automate any website using natural language instructions. ## What it is Stagehand is an AI browser automation framework built by Browserbase. It exposes three primitives -- `act()`, `extract()`, and `observe()` -- that let you automate web interactions using natural language i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5114a013) --- # Kamal: Zero-Downtime Docker Deploys to Servers (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-5211d45c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kamal ships Docker containers to bare metal or cloud VMs with zero-downtime deploys in a single command. ## What it is Kamal is Basecamp's deploy tool that ships Docker containers to bare metal servers or cloud VMs with a single command. It provides Heroku-like deployment workflows on servers you actually own. Kamal handle …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5211d45c) --- # Claude Forge: Plugin Framework for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-5261c5ae Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Plugin framework for Claude Code with 11 AI agents, 36 commands, 15 skills, and 6-layer security hooks. Install in 5 minutes. ## What it is Claude Forge is a plugin framework for Claude Code, inspired by the oh-my-zsh model of community-driven extensions. It provides 11 AI agents, 36 commands, and 15 skills that extend Claude Code's capabiliti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5261c5ae) --- # Browser Use: AI Browser Automation with Python (2026) URL: https://tokrepo.com/en/workflows/asset-52993269 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Browser Use lets AI models like Claude and GPT control a browser to automate web tasks. ## What it is Browser Use is an open-source Python library that connects large language models to a real browser. It gives AI agents the ability to navigate websites, fill forms, click buttons, extract data, and perform …(content truncated, full version at https://tokrepo.com/en/workflows/asset-52993269) --- # ingress-nginx: Kubernetes NGINX Ingress Controller 2026 URL: https://tokrepo.com/en/workflows/asset-52fdb775 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Community Kubernetes ingress controller built on NGINX for routing HTTP/S traffic with load balancing and TLS termination. ## What it is ingress-nginx is the community-maintained Kubernetes ingress controller built on NGINX. It translates Kubernetes Ingress and Gateway API resources into NGINX configuration, providing HTTP/S load balancing, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-52fdb775) --- # Zod: TypeScript-First Schema Validation Library (2026) URL: https://tokrepo.com/en/workflows/asset-5328f7ec Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zod validates data at runtime while automatically inferring TypeScript types from your schema. ## What it is Zod is a TypeScript-first schema declaration and validation library. You define a schema once and get static type inference, runtime validation, and data transformation in one place. Zod eliminates the gap …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5328f7ec) --- # Claude Code Prompts: 26 Agent Prompt Templates (2026) URL: https://tokrepo.com/en/workflows/asset-5335df26 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: 26 structured prompt templates for Claude Code covering code review, debugging, testing, refactoring, and documentation tasks. ## What it is Claude Code Prompts is a curated collection of 26 agent prompt templates designed specifically for Claude Code workflows. Each template is structured with clear context, instructions, and output format to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5335df26) --- # PostHog: Open Source Product Analytics Platform (2026) URL: https://tokrepo.com/en/workflows/asset-53fe9ca0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PostHog provides self-hosted product analytics with session replay, feature flags, and A/B testing in one platform. ## What it is PostHog is an open-source product analytics platform that combines event tracking, session replay, feature flags, A/B testing, and a data warehouse in a single self-hosted application. It replaces the need …(content truncated, full version at https://tokrepo.com/en/workflows/asset-53fe9ca0) --- # mcp2cli: Turn MCP Servers into CLI Tools Instantly (2026) URL: https://tokrepo.com/en/workflows/asset-54b79071 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: mcp2cli converts MCP servers into CLI commands at runtime, saving 96-99% of token overhead. ## What it is mcp2cli is a CLI tool that converts any MCP server, OpenAPI specification, or GraphQL endpoint into a full command-line interface at runtime. Instead of sending large tool schemas to an AI model on every t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-54b79071) --- # npx skills: Universal Skill Installer for AI Coding Agents URL: https://tokrepo.com/en/workflows/asset-54f2189f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: npx skills installs AI coding agent skills from any GitHub repo with automatic platform detection across Claude Code, Cursor, Codex CLI, and Gemini CLI. ## What it is npx skills is a universal command-line tool for installing AI coding agent skills. It works across Claude Code, Cursor, Codex CLI, and Gemini CLI, detecting your platform automatically. You point it at a G …(content truncated, full version at https://tokrepo.com/en/workflows/asset-54f2189f) --- # Memory MCP: Persistent AI Agent Knowledge Graph 2026 URL: https://tokrepo.com/en/workflows/asset-554c4dc2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Memory MCP stores entities, relationships, and observations in a local knowledge graph so AI agents remember across sessions. ## What it is Memory MCP is a Model Context Protocol server that provides AI agents with persistent memory via a local knowledge graph. The agent can create entities (people, projects, concepts), add observations about …(content truncated, full version at https://tokrepo.com/en/workflows/asset-554c4dc2) --- # Kestra: Event-Driven Orchestration and Scheduling (2026) URL: https://tokrepo.com/en/workflows/asset-556ae291 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kestra orchestrates data pipelines and automation workflows with declarative YAML definitions. ## What it is Kestra is an open-source orchestration platform for scheduling and running complex data pipelines, ETL jobs, and automation workflows. You define workflows in declarative YAML, and Kestra handles schedulin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-556ae291) --- # ExLlamaV2: Fast Quantized LLM Inference on GPU (2026) URL: https://tokrepo.com/en/workflows/asset-556eded4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ExLlamaV2 runs quantized LLMs on consumer GPUs using optimized CUDA kernels with EXL2, GPTQ, and HQQ formats. ## What it is ExLlamaV2 is an inference engine for running quantized large language models on consumer NVIDIA GPUs. It uses optimized CUDA kernels to deliver high throughput with formats including EXL2, GPTQ, and HQQ. F …(content truncated, full version at https://tokrepo.com/en/workflows/asset-556eded4) --- # Google Workspace MCP: Gmail, Drive, Calendar for AI Agents URL: https://tokrepo.com/en/workflows/asset-557765e3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google Workspace MCP gives AI agents access to Gmail, Drive, Calendar, Docs, Sheets, and other Google services through a single CLI-based MCP server. ## What it is Google Workspace MCP is an official CLI tool with a built-in MCP (Model Context Protocol) server for Google Workspace APIs. One command starts a server that exposes Gmail, Google Drive, Calendar, Docs, She …(content truncated, full version at https://tokrepo.com/en/workflows/asset-557765e3) --- # Logto: Open-Source Auth0 Alternative for SaaS Apps (2026) URL: https://tokrepo.com/en/workflows/asset-558aece6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Logto provides OIDC authentication with multi-tenancy, social login, SSO, MFA, and RBAC for SaaS apps, self-hosted or cloud. ## What it is Logto is an open-source authentication and authorization platform built on OIDC and OAuth 2.1 standards. It provides a complete identity infrastructure for SaaS applications including customizable sign-in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-558aece6) --- # Webstudio: Open Source Visual Website Builder (2026) URL: https://tokrepo.com/en/workflows/asset-55aaef45 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source visual website builder with drag-and-drop editing, full CSS, headless CMS integration, and Cloudflare self-hosting. ## What it is Webstudio is an open-source visual website builder designed as a Webflow alternative. It provides a drag-and-drop editor with full CSS support, headless CMS integration, and the ability to self-host on Clo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-55aaef45) --- # Tilt: Multi-Service Kubernetes Dev Environment (2026) URL: https://tokrepo.com/en/workflows/asset-55c41d88 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tilt automates the Kubernetes dev loop: watch source, rebuild, live-update pods, all in one dashboard. ## What it is Tilt is a development environment tool for Kubernetes that automates the inner dev loop for multi-service applications. It watches your source code, rebuilds container images, live-updates running pods, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-55c41d88) --- # Plausible Analytics: Privacy-First Google Analytics Alt (2026) URL: https://tokrepo.com/en/workflows/asset-55cad36c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Plausible provides essential website analytics without cookies or personal data collection, GDPR compliant by design. ## What it is Plausible Analytics is an open-source, privacy-first web analytics platform. It provides website traffic insights -- unique visitors, page views, bounce rate, visit duration, traffic sources, and device br …(content truncated, full version at https://tokrepo.com/en/workflows/asset-55cad36c) --- # Umami: Privacy-Focused Website Analytics Tool (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-55eb661a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Umami is a self-hosted Google Analytics alternative with real-time dashboards and no cookies or tracking. ## What it is Umami is an open-source, privacy-focused website analytics platform. It provides real-time dashboards, event tracking, multi-site support, and custom reporting without cookies, personal data collection, or …(content truncated, full version at https://tokrepo.com/en/workflows/asset-55eb661a) --- # Kaniko: Build Container Images Without Docker (2026) URL: https://tokrepo.com/en/workflows/asset-55f0aee5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kaniko builds container images from Dockerfiles inside unprivileged containers, removing the need for a Docker daemon in CI/CD pipelines. ## What it is Kaniko is a tool from Google for building OCI container images from a Dockerfile inside a container or Kubernetes cluster. Unlike Docker build, Kaniko does not require a privileged Docker daemon. It execut …(content truncated, full version at https://tokrepo.com/en/workflows/asset-55f0aee5) --- # MarkItDown: Convert Any Document to Markdown (2026) URL: https://tokrepo.com/en/workflows/asset-55fe10f5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Microsoft's Python tool that converts documents of any format into clean Markdown for LLM ingestion. ## What it is MarkItDown is an open-source Python tool by Microsoft that converts a wide range of file formats into clean Markdown text. Supported inputs include Word documents, PowerPoint presentations, Excel spreadshe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-55fe10f5) --- # Cerebras: Ultra-Fast LLM Inference for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-56284393 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cerebras provides the fastest cloud LLM inference with 2000+ tokens/second via an OpenAI-compatible API. ## What it is Cerebras is a cloud inference service that runs large language models at extremely high speed. It delivers over 2000 tokens per second for models like Llama 3.3 70B and Qwen, using custom wafer-scale hardw …(content truncated, full version at https://tokrepo.com/en/workflows/asset-56284393) --- # Karmada: Multi-Cluster Kubernetes Orchestration (2026) URL: https://tokrepo.com/en/workflows/asset-5639db47 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Karmada turns a fleet of Kubernetes clusters into a single addressable API surface for multi-cloud workloads. ## What it is Karmada (Kubernetes Armada) is a CNCF-incubated project that provides a control plane for managing workloads across multiple Kubernetes clusters. It extends the Kubernetes API so you can deploy and manage …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5639db47) --- # Cursor Directory: Community AI Rules and Prompts (2026) URL: https://tokrepo.com/en/workflows/asset-5686f25c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A community-curated directory of Cursor rules and AI coding prompts organized by framework, with one-click copy to your project. ## What it is Cursor Directory is a community-curated website that collects and organizes Cursor rules, AI coding prompts, and MCP configurations. Users can browse rules by framework (React, Python, Go, Next.js, etc.), …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5686f25c) --- # Deno: Secure Runtime for AI Agent Scripts in 2026 URL: https://tokrepo.com/en/workflows/asset-568daf2d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Modern JS/TS runtime with built-in security permissions, native TypeScript, and web-standard APIs for safe AI agent scripting. ## What it is Deno is a modern JavaScript and TypeScript runtime built by the original creator of Node.js. It provides native TypeScript support without a build step, web-standard APIs (fetch, WebSocket, Web Workers), a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-568daf2d) --- # OpenSpec: Spec-Driven AI Development Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-5720ef91 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenSpec gives AI coding agents structured specs so they produce consistent, predictable code. ## What it is OpenSpec is a specification framework that gives AI coding agents structured instructions to follow when generating code. Instead of relying on ad-hoc prompts, you write formal specs that define architectu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5720ef91) --- # Web Access Skill: Full Browser Control for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-5766b7f4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Web Access equips AI agents with 10 parallel sub-agents for browsing, scraping, and publishing across websites. ## What it is Web Access is an open-source Agent Skill that gives Claude Code, OpenClaw, and compatible agents full browser automation capabilities. It enables 10 sub-agents to operate in parallel across different websi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5766b7f4) --- # Remotion AI Skill: Programmatic Video in React (2026) URL: https://tokrepo.com/en/workflows/asset-57997ead Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The official Remotion skill gives Claude Code 30+ rules for creating programmatic videos with React, covering animations, audio, and rendering. ## What it is The Remotion AI Skill is the official agent skill from the Remotion team, designed for Claude Code and Codex. It includes 37 rule files that teach AI coding agents how to build programmatic videos using Re …(content truncated, full version at https://tokrepo.com/en/workflows/asset-57997ead) --- # MoviePy: Python Video Editing Library for Automation (2026) URL: https://tokrepo.com/en/workflows/asset-57b68929 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MoviePy is a Python library for programmatic video editing: cutting, concatenation, titles, effects, and audio manipulation. ## What it is MoviePy is a Python library for video editing that handles cutting, concatenating, adding titles, applying effects, and mixing audio. Instead of using a GUI video editor, you write Python scripts that proc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-57b68929) --- # Claude Code Prompt Engineer Agent (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-57eff515 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent skill that designs, optimizes, and benchmarks LLM prompts to improve accuracy and reduce token usage. ## What it is This is a Claude Code agent skill that specializes in prompt engineering. It helps developers design, optimize, and test LLM prompts systematically. Instead of manual trial-and-error prompt iteration, this …(content truncated, full version at https://tokrepo.com/en/workflows/asset-57eff515) --- # Portkey AI Gateway: Route to 250+ LLMs in 2026 URL: https://tokrepo.com/en/workflows/asset-585d3a26 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Portkey routes requests to 250+ LLMs with sub-1ms overhead, built-in guardrails, retries, fallbacks, and response caching. ## What it is Portkey AI Gateway is an open-source API gateway that sits between your application and LLM providers. It routes requests to over 250 LLMs with sub-1ms latency overhead. Built-in features include 40+ guard …(content truncated, full version at https://tokrepo.com/en/workflows/asset-585d3a26) --- # Claude Code Hooks: Automate Your AI Coding Workflow (2026) URL: https://tokrepo.com/en/workflows/asset-587e4918 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code Hooks run shell commands automatically on events like file edits and tool calls in your AI workflow. ## What it is Claude Code Hooks are built-in automation triggers in Claude Code that run shell commands in response to specific events: file edits, tool calls, notifications, and agent stops. They let you enforce coding …(content truncated, full version at https://tokrepo.com/en/workflows/asset-587e4918) --- # Turborepo: JS/TS Monorepo Build System Guide 2026 URL: https://tokrepo.com/en/workflows/asset-58b13fe8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Turborepo speeds up monorepo builds with remote caching, parallel execution, and dependency-aware task scheduling. ## What it is Turborepo is an incremental build system for JavaScript and TypeScript monorepos, developed by Vercel. It understands the dependency graph between packages in your monorepo and only rebuilds what has chang …(content truncated, full version at https://tokrepo.com/en/workflows/asset-58b13fe8) --- # Apache Superset: Open Source Data Visualization 2026 URL: https://tokrepo.com/en/workflows/asset-58b28055 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Superset connects to any SQL database and provides 40+ chart types for building interactive dashboards without coding. ## What it is Apache Superset is a modern, open-source data exploration and visualization platform. It connects to any SQL-speaking database and provides an intuitive interface for building interactive dashboards with o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-58b28055) --- # Healthchecks: Cron Job Monitoring with Smart Alerts 2026 URL: https://tokrepo.com/en/workflows/asset-58bfd180 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Healthchecks monitors cron jobs and scheduled tasks, alerting you when they fail to run on time. ## What it is Healthchecks is a self-hosted monitoring service for cron jobs and scheduled tasks. Instead of checking whether a service is up, it checks whether your periodic jobs are running on schedule. When a job mis …(content truncated, full version at https://tokrepo.com/en/workflows/asset-58bfd180) --- # IT Tools: 80+ Developer Utilities in One Interface (2026) URL: https://tokrepo.com/en/workflows/asset-58d12242 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Self-hosted web app with 80+ developer utilities: UUID, JWT, JSON, hash, cron, and more. ## What it is IT Tools is a self-hosted web application that bundles 80+ developer utilities into a single clean interface. Included tools range from UUID generators and hash calculators to JWT decoders, JSON formatters …(content truncated, full version at https://tokrepo.com/en/workflows/asset-58d12242) --- # Outline: Self-Hosted Knowledge Base and Wiki (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-58efab21 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Outline is a self-hosted wiki with real-time collaboration, Markdown editing, nested docs, and full-text search. ## What it is Outline is an open-source knowledge base and wiki designed for teams. It features a Markdown editor with real-time collaboration, nested document collections, integrations with Slack and Figma, and full-te …(content truncated, full version at https://tokrepo.com/en/workflows/asset-58efab21) --- # BookStack: Self-Hosted Wiki and Documentation (2026) URL: https://tokrepo.com/en/workflows/asset-590e1c8e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BookStack organizes docs by Shelves, Books, Chapters, and Pages with WYSIWYG and Markdown editing. ## What it is BookStack is a self-hosted documentation platform that organizes content using a familiar metaphor: Shelves hold Books, Books contain Chapters, and Chapters contain Pages. It provides both WYSIWYG and Mark …(content truncated, full version at https://tokrepo.com/en/workflows/asset-590e1c8e) --- # Ralph Wiggum Plugin: Anthropic Autonomous Loop Claude Code URL: https://tokrepo.com/en/workflows/asset-5920075d Type: featured-workflow Updated: 2026-04-30T11:16:39.542768 > **TL;DR**: Ralph Wiggum is the official Anthropic Claude Code plugin that adds /ralph-loop and /cancel-ralph slash commands. It turns Claude Code into a self-iterating autonomous loop that re-feeds the same prompt each iteration until a completion-promise sentinel fires or the configured max-iterations cap is hit, ideal for long refactors and TDD migrations you would otherwise babysit. ## What Is the Ralph Wiggum Plugin The **Ralph Wiggum plugin** is the official Anthropic-maintained Claude Code extension that transforms a normal interactive coding session into an autonomous, self-iterating loop. Afte …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5920075d) --- # Gatus: Automated Health Dashboard and Status Page (2026) URL: https://tokrepo.com/en/workflows/asset-592ca5d9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gatus monitors endpoints defined in YAML, generates uptime badges, sends alerts, and displays a clean status page for your services. ## What it is Gatus is a developer-oriented health monitoring tool that checks service availability and displays results on a status page. Endpoints are defined in YAML configuration files with conditions that must be m …(content truncated, full version at https://tokrepo.com/en/workflows/asset-592ca5d9) --- # AI Coding Agents Compared: 2026 Landscape Guide URL: https://tokrepo.com/en/workflows/asset-59436371 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Side-by-side comparison of Claude Code, Codex CLI, Gemini CLI, Cursor, Windsurf, Aider, and other AI coding agents for 2026. ## What it is This guide compares the major AI coding agents available in 2026. It covers Claude Code, OpenAI Codex CLI, Gemini CLI, Cursor, Windsurf, Aider, and other notable entries. Each agent is evaluated on model s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-59436371) --- # GitHub MCP Server: Manage Repos from AI Tools 2026 URL: https://tokrepo.com/en/workflows/asset-595e3cd6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GitHub MCP connects AI tools to GitHub for repo management, issues, and PRs. ## What it is The GitHub MCP Server is the official Model Context Protocol server from GitHub. It connects AI tools like Claude Code and Cursor to GitHub for managing repositories, issues, pull requests, and code search …(content truncated, full version at https://tokrepo.com/en/workflows/asset-595e3cd6) --- # Sentence Transformers: Text Embeddings for Search (2026) URL: https://tokrepo.com/en/workflows/asset-596096ff Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sentence Transformers computes text embeddings for semantic search, similarity, and reranking with 15,000+ pre-trained models available. ## What it is Sentence Transformers is a Python library for computing dense text embeddings using transformer models. It powers semantic search, text similarity, clustering, and reranking pipelines. The library provides …(content truncated, full version at https://tokrepo.com/en/workflows/asset-596096ff) --- # Mastra: TypeScript AI Agent Framework with Built-in RAG (2026) URL: https://tokrepo.com/en/workflows/asset-59d6f322 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A TypeScript framework for building AI agents with built-in RAG, tool use, workflows, and third-party integrations. ## What it is Mastra is an open-source TypeScript framework for building AI agents. It provides a unified API for creating agents with tool use, retrieval-augmented generation (RAG), multi-step workflows, and integratio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-59d6f322) --- # Claude Official Skill: Canvas Design for Visual Art (2026) URL: https://tokrepo.com/en/workflows/asset-5a66604f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The canvas-design skill lets Claude Code create posters, artwork, and visual designs as PNG and PDF files. ## What it is Claude Official Skill: canvas-design is a skill for Claude Code that enables the creation of visual art in .png and .pdf formats. It uses design philosophy and programmatic rendering to generate posters, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5a66604f) --- # BCC: eBPF Tracing Tools for Linux in 2026 URL: https://tokrepo.com/en/workflows/asset-5abb7410 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BCC is a toolkit of 100+ eBPF-based tracing tools for Linux performance analysis, networking, and security observability. ## What it is BCC (BPF Compiler Collection) is a toolkit for creating and using eBPF tracing programs on Linux. It includes over 100 ready-to-use tools for performance analysis, networking debugging, and security observ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5abb7410) --- # Kysely: Type-Safe SQL Query Builder TypeScript (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-5b5da43c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kysely provides compile-time type checking for SQL queries in TypeScript without code generation steps. ## What it is Kysely (pronounced 'Key-Seh-Lee') is a type-safe TypeScript SQL query builder. It provides full autocompletion and compile-time error checking for your SQL queries without requiring code generation. You de …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5b5da43c) --- # Devika: Open-Source AI Software Engineer (2026) URL: https://tokrepo.com/en/workflows/asset-5bb9c583 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Devika autonomously understands instructions, researches the web, plans, and writes code as an open-source Devin alternative. ## What it is Devika is an open-source autonomous AI agent that acts as a software engineer. Given a high-level instruction, it researches the web, creates a plan, and writes code to accomplish the task. It positions it …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5bb9c583) --- # Claude Token Efficient: Reduce Output Verbosity in 2026 URL: https://tokrepo.com/en/workflows/asset-5bfc4f12 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A single CLAUDE.md file that reduces Claude Code output verbosity by 63% with 5 specialized workflow profiles. ## What it is Claude Token Efficient is a CLAUDE.md configuration file that reduces Claude Code output verbosity by 63%. It includes 5 specialized profiles for different workflows: coding, benchmarks, agents, and analys …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5bfc4f12) --- # Kubernetes Cluster Autoscaler: Node Autoscaling 2026 URL: https://tokrepo.com/en/workflows/asset-5c1a9982 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Kubernetes project that automatically adds and removes nodes from cloud node groups to match scheduling demand. ## What it is Kubernetes Cluster Autoscaler is the official project that automatically adjusts the number of nodes in your cluster to match workload demand. When pods cannot be scheduled due to insufficient resources, i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5c1a9982) --- # dlt: Python Data Load Tool for ELT Pipelines (2026) URL: https://tokrepo.com/en/workflows/asset-5c200399 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: dlt simplifies ELT pipelines: define a Python generator source, pick a destination, and load. ## What it is dlt (data load tool) is an open-source Python library that simplifies building ELT pipelines. You define a data source as a Python generator or function, choose a destination (BigQuery, Snowflake, DuckDB, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5c200399) --- # Serena: Semantic Code Agent via MCP Protocol (2026) URL: https://tokrepo.com/en/workflows/asset-5c63d696 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Serena is an MCP server that provides semantic code retrieval and editing, understanding classes, functions, and symbols. ## What it is Serena is a coding agent that operates as an MCP (Model Context Protocol) server, providing semantic code retrieval and editing capabilities. It understands your codebase at the symbol level: classes, func …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5c63d696) --- # cAdvisor: Container Resource Monitoring Guide 2026 URL: https://tokrepo.com/en/workflows/asset-5c7262a8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: cAdvisor monitors container CPU, memory, network, and disk usage in real time with zero configuration and Prometheus integration. ## What it is cAdvisor (Container Advisor) is an open-source container monitoring tool maintained by Google. It collects, aggregates, and exports resource usage and performance data from running containers. cAdvisor run …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5c7262a8) --- # Smithery: MCP Server Registry and Installer 2026 URL: https://tokrepo.com/en/workflows/asset-5ca696fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Smithery provides a curated registry of 200+ MCP servers with one-command install for Claude Code and Cursor. ## What it is Smithery is a registry and CLI tool for discovering and installing MCP servers. It maintains a curated catalog of MCP servers -- database connectors, API integrations, file system tools, and more -- that y …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5ca696fe) --- # Operator SDK: Build Kubernetes Operators in 2026 URL: https://tokrepo.com/en/workflows/asset-5d2b207c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Operator SDK scaffolds and manages Kubernetes operators in Go, Ansible, or Helm with built-in best practices. ## What it is Operator SDK is part of the Operator Framework, an open-source toolkit for managing Kubernetes-native applications called Operators. It provides scaffolding, code generation, and lifecycle management tools …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5d2b207c) --- # Open WebUI: Self-Hosted AI Chat Interface in 2026 URL: https://tokrepo.com/en/workflows/asset-5d37ffb8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Self-hosted AI chat UI supporting Ollama, OpenAI, Anthropic, and any OpenAI-compatible API with RAG and plugins. ## What it is Open WebUI is a self-hosted web interface for interacting with large language models. It provides a polished chat experience similar to ChatGPT but runs on your own infrastructure. The interface connects t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5d37ffb8) --- # Terraformer: Import Cloud Infrastructure to Terraform (2026) URL: https://tokrepo.com/en/workflows/asset-5d7b3271 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Terraformer reads live cloud resources and generates Terraform HCL files and state automatically. ## What it is Terraformer is a CLI tool originally developed at Google that reads existing cloud infrastructure and generates corresponding Terraform HCL configuration files and state files. It supports AWS, GCP, Azure, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5d7b3271) --- # Reloader: Auto-Restart K8s Pods on Config (2026) URL: https://tokrepo.com/en/workflows/asset-5e4fa3e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Reloader watches ConfigMaps and Secrets and triggers rolling restarts on Kubernetes workloads when configuration values change. ## What it is Reloader is a Kubernetes controller that watches for changes in ConfigMaps and Secrets, then triggers rolling upgrades on associated Deployments, StatefulSets, and DaemonSets. By default, Kubernetes does n …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5e4fa3e0) --- # Remotion Assets Rule: Import Media in React (2026) URL: https://tokrepo.com/en/workflows/asset-5e7d0f33 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Remotion agent skill rule explains how to correctly import images, videos, audio, and fonts into React-based video projects. ## What it is The Remotion Assets rule is a focused skill instruction for AI agents building programmatic videos with Remotion. It covers the correct patterns for importing static and dynamic media files -- images, vide …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5e7d0f33) --- # Claude Agent SDK Demos: 8 Official Examples by Anthropic (2026) URL: https://tokrepo.com/en/workflows/asset-5e902544 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Eight official Anthropic demos showing Claude Agent SDK patterns for email, research, and more. ## What it is This is the official demo collection by Anthropic showcasing the Claude Agent SDK. It includes eight example projects: an email agent, a research agent, a resume generator, a chat application, an Excel pro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5e902544) --- # kubectx: Fast Kubernetes Context and Namespace Switch 2026 URL: https://tokrepo.com/en/workflows/asset-5edfcecc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Switch Kubernetes clusters and namespaces instantly with kubectx and kubens CLI tools. ## What it is kubectx is a pair of CLI tools (kubectx for cluster contexts, kubens for namespaces) that simplify switching between Kubernetes clusters and namespaces. Instead of typing `kubectl config use-context my-lon …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5edfcecc) --- # Presto: Distributed SQL Engine for Analytics (2026) URL: https://tokrepo.com/en/workflows/asset-5f0c50a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Presto runs fast interactive SQL queries against data lakes, warehouses, and federated sources at petabyte scale. ## What it is Presto is an open-source distributed SQL query engine originally developed at Facebook (now Meta). It runs interactive analytical queries against data sources ranging from HDFS and S3 data lakes to relatio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5f0c50a5) --- # Remotion Rule: Sound Effects for Video in React (2026) URL: https://tokrepo.com/en/workflows/asset-5f35f2ac Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Remotion skill rule teaches agents how to add and sync sound effects in React-based video. ## What it is This is a Remotion skill rule that teaches AI coding agents how to include sound effects (sfx) in programmatic video projects built with React and Remotion. It is part of the official Remotion Agent Skill …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5f35f2ac) --- # /loop Slash Command: Boris-Style Recurring Task Scheduler URL: https://tokrepo.com/en/workflows/asset-5f9f565c Type: featured-workflow Updated: 2026-04-30T11:16:39.600164 > **TL;DR**: /loop is a community Claude Code slash command that schedules recurring local tasks at intervals like 5m, 1h, or 1d, enforces a hard 3-day safety cap, persists state in spec.json under ~/.claude/loops//, and ships with companion /loop-stop and /loop-list commands for clean cross-session lifecycle management inspired by Boris Cherny's private scheduler variant. ## What /loop Does in One Paragraph /loop is a file-based slash command that you drop into `.claude/commands/loop.md` to schedule recurring local Claude Code tasks at intervals such as `5m`, `1h`, or `1d`. Every run is …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5f9f565c) --- # OpenHands: AI Software Development Platform 2026 URL: https://tokrepo.com/en/workflows/asset-5fc1f758 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenHands provides CLI, GUI, and SDK for AI-driven software development with SWE-bench score 77.6 and tool integrations. ## What it is OpenHands is an AI-driven software development platform that provides a CLI, GUI, and SDK for building software with AI agents. It achieves a SWE-bench score of 77.6, meaning it can resolve real-world GitH …(content truncated, full version at https://tokrepo.com/en/workflows/asset-5fc1f758) --- # Ell: Prompt Engineering as Code in Python (2026) URL: https://tokrepo.com/en/workflows/asset-603314fc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ell turns prompts into versioned Python functions with automatic tracking and a visual studio. ## What it is Ell is a Python library that treats prompts as versioned, testable, and trackable code artifacts. Instead of managing prompts as strings in config files or databases, you write them as decorated Python fun …(content truncated, full version at https://tokrepo.com/en/workflows/asset-603314fc) --- # Ceph: Unified Distributed Storage at Scale Guide (2026) URL: https://tokrepo.com/en/workflows/asset-609469f1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ceph provides block, object, and file storage from a single cluster with no single point of failure. ## What it is Ceph is the reference open-source distributed storage system, originally developed at UC Santa Cruz and now stewarded by the Ceph Foundation (Linux Foundation). It presents a single cluster as block storag …(content truncated, full version at https://tokrepo.com/en/workflows/asset-609469f1) --- # Penpot: Open Source Design and Prototyping Tool (2026) URL: https://tokrepo.com/en/workflows/asset-609d5e22 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Penpot is a self-hostable, open-source Figma alternative with real-time collaboration and SVG-native design output. ## What it is Penpot is an open-source design and prototyping platform positioned as an alternative to Figma. It runs in the browser, supports real-time collaboration, and produces SVG-native output. It is fully self-ho …(content truncated, full version at https://tokrepo.com/en/workflows/asset-609d5e22) --- # Dapr: Distributed Application Runtime Guide (2026) URL: https://tokrepo.com/en/workflows/asset-60bcc723 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dapr provides building-block APIs for microservices: service invocation, state, pub/sub, and bindings. ## What it is Dapr (Distributed Application Runtime) is a portable, event-driven runtime that simplifies building resilient microservices. It provides building-block APIs for common distributed system patterns: service- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-60bcc723) --- # Gitea: Lightweight Self-Hosted Git Service (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-60bf33b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gitea is a lightweight, self-hosted Git service written in Go with code hosting, CI/CD, package registry, and project management in one binary. ## What it is Gitea is a self-hosted Git service written in Go that provides a complete software development platform. It covers code hosting, pull requests with inline review, issue tracking, CI/CD through Gitea Action …(content truncated, full version at https://tokrepo.com/en/workflows/asset-60bf33b1) --- # Chatwoot: Open Source Customer Support Platform (2026) URL: https://tokrepo.com/en/workflows/asset-60e0b759 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Chatwoot unifies live chat, email, WhatsApp, and social media into a single self-hosted customer support inbox. ## What it is Chatwoot is an open-source customer engagement platform that serves as a self-hosted alternative to Intercom and Zendesk. Built with Ruby on Rails and Vue.js, it provides a unified inbox for managing custo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-60e0b759) --- # Remotion Compositions Rule: Programmatic Video 2026 URL: https://tokrepo.com/en/workflows/asset-60f3daaa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Remotion rule covers defining compositions, stills, folders, default props, and dynamic metadata for video. ## What it is This is a Remotion agent skill rule that teaches AI coding assistants how to define compositions, stills, folders, default props, and dynamic metadata in Remotion projects. Remotion is a framework for crea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-60f3daaa) --- # Zitadel: Open Source Identity Management Platform (2026) URL: https://tokrepo.com/en/workflows/asset-610259fa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zitadel provides OIDC, SAML, SSO, MFA, and multi-tenancy as a self-hosted or cloud identity management platform. ## What it is Zitadel is an open-source identity management platform that handles authentication and authorization for applications and APIs. It supports OIDC, SAML, SSO, multi-factor authentication (TOTP, WebAuthn, pas …(content truncated, full version at https://tokrepo.com/en/workflows/asset-610259fa) --- # Vendure: Open Source Headless E-Commerce Framework (2026) URL: https://tokrepo.com/en/workflows/asset-6123e157 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vendure provides a plugin-based, API-first e-commerce backend using TypeScript, NestJS, and GraphQL. ## What it is Vendure is an open-source headless commerce framework built with TypeScript, NestJS, and GraphQL. It provides the full backend for e-commerce: products, orders, payments, fulfillment, shipping, and tax, ex …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6123e157) --- # Bun: All-in-One JavaScript Runtime and Bundler (2026) URL: https://tokrepo.com/en/workflows/asset-615b3bf1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bun combines JavaScript runtime, bundler, test runner, and package manager in one fast tool. Drop-in Node.js replacement. ## What it is Bun is a JavaScript runtime built from scratch in Zig with JavaScriptCore (Safari's engine) instead of V8. It bundles four tools into one binary: a runtime (replaces Node.js), a bundler (replaces Webpack/e …(content truncated, full version at https://tokrepo.com/en/workflows/asset-615b3bf1) --- # Moshi: Real-Time AI Voice Conversation Engine (2026) URL: https://tokrepo.com/en/workflows/asset-6172db11 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Moshi delivers full-duplex voice conversation with 200ms latency, emotion recognition, and on-device processing under Apache 2.0. ## What it is Moshi is an open-source real-time voice AI system built by Kyutai. It supports full-duplex speech conversation, meaning both parties can speak and listen simultaneously, with approximately 200ms latency. I …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6172db11) --- # Together AI Evaluations Skill for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-6188a8b0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This skill teaches Claude Code to run Together AI LLM-as-a-judge evaluations scoring model outputs on quality, safety, and completion. ## What it is The Together AI Evaluations Skill is a Claude Code skill that teaches the agent how to use Together AI's LLM evaluation framework. It enables you to run LLM-as-a-judge evaluations directly from Claude Code …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6188a8b0) --- # Helmfile: Declarative Helm Chart Deployment in 2026 URL: https://tokrepo.com/en/workflows/asset-6236585c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Helmfile manages multiple Helm chart deployments declaratively with environment overrides and dependency ordering. ## What it is Helmfile is a declarative tool for managing multiple Helm chart deployments. Instead of running individual `helm install` and `helm upgrade` commands, you define all your releases in a single `helmfile.yam …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6236585c) --- # Claude DOCX Skill: Word Document Creation in 2026 URL: https://tokrepo.com/en/workflows/asset-6236da40 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The DOCX skill lets Claude Code create, read, and edit Word documents with formatting, tables, images, and styles. ## What it is The DOCX skill is an official Claude Code skill that adds Word document capabilities. It enables Claude Code to create new .docx files, read existing ones, and edit documents with formatting, tables, image …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6236da40) --- # OpenAI Codex and Cookbook: Official Resources (2026) URL: https://tokrepo.com/en/workflows/asset-63156b9d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official OpenAI resources: Codex CLI agent for coding plus the Cookbook for GPT prompting guides. ## What it is This collection bundles two official OpenAI resources. The first is Codex, OpenAI's CLI-based coding agent that reads your codebase, proposes changes, and executes them in a sandboxed environment. The seco …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63156b9d) --- # BadgerDB: Fast Embeddable Key-Value Store in Go 2026 URL: https://tokrepo.com/en/workflows/asset-6336afae Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BadgerDB is a pure-Go LSM-tree key-value store with ACID transactions, built for SSD workloads. ## What it is BadgerDB is a high-performance embeddable key-value database written in pure Go. It uses an LSM-tree (Log-Structured Merge-tree) architecture optimized for SSDs, separating keys from values to reduce write …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6336afae) --- # Dokploy: Self-Hosted PaaS for Your Servers in 2026 URL: https://tokrepo.com/en/workflows/asset-6364a705 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source PaaS that brings one-click Git deploys, database management, and backups to your own VPS. ## What it is Dokploy is an open-source deployment platform that brings the convenience of Vercel or Heroku to your own servers. It provides a polished web UI for deploying applications from Git repositories with one cl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6364a705) --- # Claude Code vs Cursor: Choosing the Right AI Tool (2026) URL: https://tokrepo.com/en/workflows/asset-63827e9e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code excels at terminal-driven multi-file tasks; Cursor excels at in-editor single-file edits. ## What it is This guide compares two leading AI coding tools: Claude Code (Anthropic's terminal-based AI agent) and Cursor (an AI-enhanced IDE forked from VS Code). Both help developers write, edit, and debug code fast …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63827e9e) --- # Vector: High-Performance Observability Data Pipeline in Rust URL: https://tokrepo.com/en/workflows/asset-63834da8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vector is a Rust-based observability pipeline that collects, transforms, and routes logs, metrics, and traces with minimal resource usage. ## What it is Vector is an observability data pipeline written in Rust. It collects logs, metrics, and traces from any source, transforms them with a built-in remap language (VRL), and routes them to any destination. Ve …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63834da8) --- # Skaffold: Fast Kubernetes Dev Workflow from Google (2026) URL: https://tokrepo.com/en/workflows/asset-63a20dfb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Skaffold automates the inner-loop build-push-deploy cycle for Kubernetes development. ## What it is Skaffold is a command-line tool from Google that automates the inner development loop for Kubernetes applications. When you edit code, Skaffold detects the change, rebuilds the container image, pushes it ( …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63a20dfb) --- # Marketing Skills: 34 CRO and SEO Skills for AI (2026) URL: https://tokrepo.com/en/workflows/asset-63adf332 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: 34 installable marketing skills for Claude Code covering CRO, SEO, copywriting, and growth. ## What it is Marketing Skills is a collection of 34 specialized marketing skills for AI coding agents. Each skill gives your AI assistant domain expertise in a specific marketing discipline: conversion rate optimizatio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63adf332) --- # Packer: Automated Machine Image Building Guide 2026 URL: https://tokrepo.com/en/workflows/asset-63c1417d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Packer builds identical machine images across multiple cloud platforms from a single HCL template, enabling immutable infrastructure. ## What it is Packer is HashiCorp's open-source tool for creating identical machine images across multiple platforms from a single source configuration. It supports Amazon AMIs, Docker images, Google Compute Engine imag …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63c1417d) --- # Fluentd: Unified Logging for Cloud-Native in 2026 URL: https://tokrepo.com/en/workflows/asset-63e017ab Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fluentd unifies log collection and routing with 1000+ plugins for any source and destination. ## What it is Fluentd is a CNCF-graduated open-source data collector that unifies log collection and routing. With 1000+ community plugins, it connects any log source (files, syslog, Docker, Kubernetes) to any destinati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63e017ab) --- # Thanos: Global Prometheus with Unlimited Storage 2026 URL: https://tokrepo.com/en/workflows/asset-63ff1c2c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Thanos extends Prometheus with global query, unlimited object-storage retention, and HA for multi-cluster observability. ## What it is Thanos extends Prometheus with global query capabilities, unlimited storage via object storage (S3, GCS, Azure), and high-availability replication. It is the proven way to run Prometheus at multi-cluster, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-63ff1c2c) --- # Earthly: Container-Based Build Automation (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-641e0288 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Earthly provides containerized, reproducible builds using Dockerfile-like syntax that runs identically on your laptop and in CI. ## What it is Earthly is a build automation tool that runs builds inside containers, ensuring they work the same on your laptop, your teammate's laptop, and in CI. It uses an Earthfile (similar to a Dockerfile) to defin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-641e0288) --- # Kustomize: Template-Free Kubernetes Config in 2026 URL: https://tokrepo.com/en/workflows/asset-643d48eb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kustomize customizes Kubernetes YAML through overlays and patches without templating, built directly into kubectl. ## What it is Kustomize lets you customize Kubernetes manifests through overlays and patches without using templates. Maintained by SIG CLI and built into kubectl since version 1.14, it provides a declarative way to man …(content truncated, full version at https://tokrepo.com/en/workflows/asset-643d48eb) --- # Mise: Dev Tool Version Manager for Every Language (2026) URL: https://tokrepo.com/en/workflows/asset-64416255 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mise replaces nvm, pyenv, and rbenv with one CLI for 100+ dev tools. ## What it is Mise (formerly rtx) is a polyglot dev tool version manager that handles Node.js, Python, Ruby, Go, Rust, Java, and over 100 other tools from a single CLI. It replaces the collection of version managers (nv …(content truncated, full version at https://tokrepo.com/en/workflows/asset-64416255) --- # Kubescape: CNCF Kubernetes Security Scanning Platform URL: https://tokrepo.com/en/workflows/asset-645c71dd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubescape scans Kubernetes clusters, manifests, and Helm charts against NSA, CIS, and MITRE security frameworks to catch misconfigurations and vulnerabilities. ## What it is Kubescape is a Kubernetes security platform that scans clusters, YAML manifests, and Helm charts against established security frameworks including NSA-CISA, CIS Benchmarks, and MITRE ATT&CK. It identifies …(content truncated, full version at https://tokrepo.com/en/workflows/asset-645c71dd) --- # Linkerd: The Lightest Service Mesh for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-647b14c5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Linkerd provides zero-config mTLS, golden metrics, and traffic management via a tiny Rust proxy. ## What it is Linkerd is a CNCF-graduated service mesh that adds mutual TLS, observability, and traffic management to Kubernetes clusters. Unlike Istio, which uses the general-purpose Envoy proxy, Linkerd uses a purpose …(content truncated, full version at https://tokrepo.com/en/workflows/asset-647b14c5) --- # Fabric: 100+ AI Prompt Patterns for Every Task 2026 URL: https://tokrepo.com/en/workflows/asset-64bf132d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI tool with 100+ curated AI prompt patterns for summarizing, coding, writing, and analysis tasks across 20+ providers. ## What it is Fabric is a CLI tool that organizes 100+ AI prompt patterns for real-world tasks like summarizing articles, explaining code, extracting wisdom from podcasts, and writing essays. Each pattern is a carefully …(content truncated, full version at https://tokrepo.com/en/workflows/asset-64bf132d) --- # AGiXT: Extensible AI Agent Automation Framework (2026) URL: https://tokrepo.com/en/workflows/asset-6528233f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AGiXT is an open-source AI agent platform with 50+ providers, plugins, chains, and memory. ## What it is AGiXT is an open-source AI agent automation platform that combines 50+ LLM provider integrations, a plugin system for external tools, chain-of-thought workflows (called 'chains'), and persistent memory. It …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6528233f) --- # E2B: Cloud Sandboxes for AI Code Execution (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-652da886 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: E2B provides cloud sandboxes that spin up in 150ms, letting AI agents safely execute code, install packages, and access filesystems. ## What it is E2B provides secure, isolated cloud sandboxes where AI agents and LLM applications can execute code safely. Each sandbox is a lightweight microVM that spins up in approximately 150ms, runs arbitrary code ( …(content truncated, full version at https://tokrepo.com/en/workflows/asset-652da886) --- # OpenTelemetry Collector: Telemetry Pipeline 2026 URL: https://tokrepo.com/en/workflows/asset-6551babd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The OTel Collector is a vendor-agnostic pipeline for traces, metrics, and logs. ## What it is The OpenTelemetry Collector is a vendor-agnostic agent that receives, processes, and exports telemetry data to any observability backend. It handles traces, metrics, and logs through a unified pipeline arc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6551babd) --- # Axiom MCP: Log Search and Analytics for AI Agents URL: https://tokrepo.com/en/workflows/asset-655bef8a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Axiom MCP lets AI agents query logs, traces, and metrics through natural language for observability analysis and incident response. ## What it is Axiom MCP is an MCP server that connects AI agents to Axiom's log analytics platform. It enables agents to query logs, traces, and metrics using natural language instead of writing APL (Axiom Processing La …(content truncated, full version at https://tokrepo.com/en/workflows/asset-655bef8a) --- # Godot Engine: Open Source 2D and 3D Game Dev (2026) URL: https://tokrepo.com/en/workflows/asset-65c0cac6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Godot is a free 2D/3D game engine with GDScript, C#, and multi-platform export. ## What it is Godot is a free and open-source game engine that handles both 2D and 3D game development in a single integrated editor. It uses GDScript (a Python-like language designed for games), supports C# via .NET, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-65c0cac6) --- # Gin Web Framework for Go: Fast REST APIs in 2026 URL: https://tokrepo.com/en/workflows/asset-65c0d201 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gin provides a Martini-like API for Go with radix-tree routing that runs up to 40x faster. ## What it is Gin is the most widely adopted HTTP web framework for Go. It wraps `httprouter` with a developer-friendly API inspired by Martini, delivering structured routing, middleware chaining, and built-in JSON bind …(content truncated, full version at https://tokrepo.com/en/workflows/asset-65c0d201) --- # Flask: Python Micro Web Framework Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-65c0de18 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Flask is a lightweight Python web framework for building APIs and web apps. Quick to start, extensible to complex applications. ## What it is Flask is a lightweight WSGI web application framework for Python. It provides routing, request handling, templating (Jinja2), and session management with minimal overhead. Flask follows a microframework ph …(content truncated, full version at https://tokrepo.com/en/workflows/asset-65c0de18) --- # Bevy: Data-Driven Game Engine Built in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-65c0e016 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bevy uses an Entity Component System architecture, modular plugins, and Rust's safety guarantees to build cross-platform 2D and 3D games. ## What it is Bevy is a data-driven game engine built in Rust. It uses an Entity Component System (ECS) at its core, where entities are IDs, components are plain data structs, and systems are functions that query and tr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-65c0e016) --- # Fiber: Express-Inspired Web Framework in Go (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-65c0e1cd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fiber brings Express-like API design to Go with Fasthttp performance and zero-allocation routing. ## What it is Fiber is a web framework written in Go, inspired by Express.js. Built on top of Fasthttp (the fastest HTTP engine for Go), it offers a familiar Express-like API with zero-allocation routing, built-in middl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-65c0e1cd) --- # Smolagents: Lightweight AI Agent Framework in 2026 URL: https://tokrepo.com/en/workflows/asset-6617d7ad Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Smolagents lets you build AI agents that write and execute Python code as actions, built by Hugging Face in roughly 1000 lines of core code. ## What it is Smolagents is Hugging Face's lightweight agent framework. The core library is approximately 1,000 lines of code. Agents write and execute Python code as their actions instead of outputting JSON tool calls, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6617d7ad) --- # Fabric: AI Prompt Patterns for Real-World Tasks (2026) URL: https://tokrepo.com/en/workflows/asset-6692e725 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fabric offers 100+ reusable AI prompt patterns for summarization, analysis, writing, and more. ## What it is Fabric is a collection of over 100 AI prompt patterns designed for real-world tasks. Each pattern is a carefully crafted system prompt that instructs an LLM to perform a specific task: summarize articles, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6692e725) --- # Surya: Document OCR for 90+ Languages (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-66bc0630 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Surya performs text recognition, layout analysis, table detection, and reading order extraction for 90+ languages. ## What it is Surya is an open-source document OCR toolkit that performs text recognition in over 90 languages. It goes beyond basic character recognition by providing layout analysis, table detection, reading order ext …(content truncated, full version at https://tokrepo.com/en/workflows/asset-66bc0630) --- # AutoGPT: Autonomous AI Agent Platform with Visual Builder (2026) URL: https://tokrepo.com/en/workflows/asset-6764deda Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AutoGPT provides a visual builder and API for creating autonomous AI agents that accomplish multi-step goals with minimal human input. ## What it is AutoGPT is an open-source platform for building autonomous AI agents that can accomplish complex goals with minimal human intervention. Originally one of the first autonomous agent projects, it has evolved …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6764deda) --- # Sentry Errors Subagent: Auto-Triage Claude Code Inbox Daily URL: https://tokrepo.com/en/workflows/asset-676b8063 Type: featured-workflow Updated: 2026-04-30T11:16:39.676708 > **TL;DR**: Read-only Claude Code subagent turning 24h Sentry events into a triage digest. ## What sentry-errors Actually Does The sentry-errors subagent is a single-purpose Claude Code agent that turns a noisy Sentry event stream into an ordered action list. It calls the official Sentry MCP tools (`mcp__sent …(content truncated, full version at https://tokrepo.com/en/workflows/asset-676b8063) --- # Trilium Notes: Self-Hosted Knowledge Base Guide in 2026 URL: https://tokrepo.com/en/workflows/asset-677aaba2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Self-hosted note-taking app with hierarchical structure, note cloning, relation maps, and scripting. ## What it is Trilium Notes is a self-hosted note-taking application designed for building personal knowledge bases. It features a hierarchical note structure, rich WYSIWYG editing, note cloning (one note in multiple pl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-677aaba2) --- # Phidata: AI Agents with Memory and Knowledge (2026) URL: https://tokrepo.com/en/workflows/asset-67988bf9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Phidata builds production AI agents with PostgreSQL-backed memory, RAG knowledge, and 50+ tools. ## What it is Phidata is a Python framework for building AI agents that come with built-in memory (backed by PostgreSQL), knowledge bases (via RAG), and 50+ tool integrations out of the box. It provides a structured app …(content truncated, full version at https://tokrepo.com/en/workflows/asset-67988bf9) --- # GitHub MCP Server: Official AI Integration for 2026 URL: https://tokrepo.com/en/workflows/asset-679a2650 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GitHub's official MCP server gives AI assistants direct access to repos, issues, PRs, Actions, and code search. ## What it is GitHub MCP Server is the official Model Context Protocol server built by GitHub that connects AI coding assistants to the GitHub platform. It translates natural language requests into GitHub API calls, ena …(content truncated, full version at https://tokrepo.com/en/workflows/asset-679a2650) --- # Emdash: Parallel Multi-Agent Dev Environment (2026) URL: https://tokrepo.com/en/workflows/asset-682ff21b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source dev environment running multiple AI coding agents in parallel with isolated git worktrees. Supports Claude Code, Codex, Gemini CLI. ## What it is Emdash is an open-source agentic development environment (YC W26) that runs multiple AI coding agents in parallel. Each agent operates in an isolated git worktree, preventing conflicts between concurrent c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-682ff21b) --- # React: Build User Interfaces with Components (2026) URL: https://tokrepo.com/en/workflows/asset-689ccdd8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: React uses a component-based architecture with virtual DOM to build fast, interactive web applications. ## What it is React is a JavaScript library created by Meta for building user interfaces through composable components. It uses a virtual DOM to minimize expensive browser repaints, making UI updates fast even in comple …(content truncated, full version at https://tokrepo.com/en/workflows/asset-689ccdd8) --- # Next.js: Full-Stack React Framework for the Web (2026) URL: https://tokrepo.com/en/workflows/asset-68bb6791 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Next.js provides SSR, static generation, API routes, file-based routing, and React Server Components for full-stack React apps. ## What it is Next.js is a React framework by Vercel that handles the full stack: server-side rendering (SSR), static site generation (SSG), API routes, and React Server Components. It uses file-based routing where the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-68bb6791) --- # Angular: Enterprise Web Application Framework 2026 URL: https://tokrepo.com/en/workflows/asset-68da92a6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Angular provides a complete TypeScript framework with components, routing, forms, DI, and testing for building large-scale web applications. ## What it is Angular is a comprehensive TypeScript-based web framework maintained by Google. It provides everything needed for large-scale applications out of the box: components, routing, reactive forms, HTTP client, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-68da92a6) --- # Svelte: Compile-Time UI Framework for the Web (2026) URL: https://tokrepo.com/en/workflows/asset-68f8cc68 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Svelte compiles components to efficient vanilla JavaScript at build time, eliminating virtual DOM overhead entirely. ## What it is Svelte is a component framework that takes a fundamentally different approach from React and Vue. Instead of shipping a runtime library that diffs a virtual DOM in the browser, Svelte compiles your compone …(content truncated, full version at https://tokrepo.com/en/workflows/asset-68f8cc68) --- # MkDocs: Project Documentation with Markdown (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-690157c6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MkDocs generates a fast static documentation site from Markdown files with themes, plugins, and search. ## What it is MkDocs is a static site generator specifically built for project documentation. You write documentation in Markdown files, configure navigation in a single YAML file, and MkDocs generates a fast, searchabl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-690157c6) --- # Nuxt 3: Full-Stack Vue Framework Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-691717f0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nuxt 3 adds SSR, auto-imports, and file-based routing to Vue.js for production apps. ## What it is Nuxt is the full-stack framework built on Vue.js. It provides server-side rendering (SSR), auto-imports for components and composables, file-based routing, built-in data fetching, and a module ecosystem th …(content truncated, full version at https://tokrepo.com/en/workflows/asset-691717f0) --- # Loguru: Python Logging Made Simple (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-6922366e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Loguru replaces Python stdlib logging with one import: colorized output, rotation, and exception tracing included. ## What it is Loguru is a Python logging library that replaces the standard library's logging module with a simpler API. One import gives you colorized terminal output, structured context binding, file rotation, and enh …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6922366e) --- # NocoBase: Extensible No-Code Low-Code Platform (2026) URL: https://tokrepo.com/en/workflows/asset-692e94c8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NocoBase lets you build internal tools and business apps with visual data modeling, auto-generated APIs, and a plugin system. ## What it is NocoBase is a self-hosted no-code and low-code platform for building internal tools, CRMs, and business applications. It takes a data-model-first approach: you define your data structure visually, and Noco …(content truncated, full version at https://tokrepo.com/en/workflows/asset-692e94c8) --- # Vue.js: The Progressive JavaScript Framework in 2026 URL: https://tokrepo.com/en/workflows/asset-6935d236 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vue.js offers an approachable core with incremental adoption from simple widgets to full-scale SPAs. ## What it is Vue.js is a progressive JavaScript framework for building user interfaces. It provides a reactive data binding system, component architecture, and a rich ecosystem including Vue Router for navigation and P …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6935d236) --- # Typer: Build Python CLIs from Type Hints (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-6942f03e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Typer converts Python functions with type hints into full CLI commands with auto-generated parsing, help text, and completions. ## What it is Typer is a Python library that turns regular Python functions into command-line interface commands using only type hints. Built on top of Click, Typer removes the boilerplate of argument parsing, help text …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6942f03e) --- # Vagrant: Portable Dev Environments Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-69552a5c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vagrant lets teams define full virtual machines in a Vagrantfile and spin them up with one command. ## What it is Vagrant is an open-source tool by HashiCorp for building and managing portable development environments. You describe your environment in a declarative Vagrantfile, run `vagrant up`, and get a fully config …(content truncated, full version at https://tokrepo.com/en/workflows/asset-69552a5c) --- # CrewAI: Multi-Agent AI Framework for Team Tasks (2026) URL: https://tokrepo.com/en/workflows/asset-695db715 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CrewAI creates teams of role-based AI agents that collaborate on research, writing, and analysis. ## What it is CrewAI lets you create teams of specialized AI agents that collaborate like a real team. Each agent has a defined role, goal, and set of tools. Agents delegate tasks, share results, and work together to ac …(content truncated, full version at https://tokrepo.com/en/workflows/asset-695db715) --- # Vanna: Chat with Your SQL Database Using AI (2026) URL: https://tokrepo.com/en/workflows/asset-695f1e28 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vanna converts natural language questions into accurate SQL queries and visualizations. ## What it is Vanna is an AI-powered text-to-SQL tool. You ask a question in plain English, and Vanna generates the correct SQL query, runs it against your database, and returns the results with optional visualizations. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-695f1e28) --- # DVC: Data Version Control for Machine Learning (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-696434ff Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DVC versions datasets and ML models with Git-like commands while storing large files in cloud storage. ## What it is DVC (Data Version Control) brings Git-like versioning to datasets, machine learning models, and ML pipelines. Large binary files are stored in remote storage (S3, GCS, Azure, SSH, HDFS) while lightweight p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-696434ff) --- # Rancher: Kubernetes Management Platform for 2026 URL: https://tokrepo.com/en/workflows/asset-69737105 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rancher manages multiple Kubernetes clusters across any infrastructure from one dashboard. ## What it is Rancher is an enterprise Kubernetes management platform from SUSE. It simplifies deploying, managing, and securing multiple Kubernetes clusters across any infrastructure: on-premises, cloud, or edge. It pr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-69737105) --- # HTTPX: Next-Generation HTTP Client for Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-698498fa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: HTTPX combines the requests-like API with async support, HTTP/2, and type safety for modern Python. ## What it is HTTPX is a Python HTTP client that provides the familiar API of the requests library with added support for async/await, HTTP/2, and strict type annotations. The same `httpx.Client` API works in both synch …(content truncated, full version at https://tokrepo.com/en/workflows/asset-698498fa) --- # containerd: Industry-Standard Container Runtime in 2026 URL: https://tokrepo.com/en/workflows/asset-6991f120 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Industry-standard container runtime managing the full container lifecycle. The engine behind Docker and Kubernetes. ## What it is containerd is the core container runtime that powers both Docker and Kubernetes. It manages the complete container lifecycle: pulling images from registries, storing them on disk, creating container filesy …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6991f120) --- # pre-commit: Git Hook Framework for Code Quality (2026) URL: https://tokrepo.com/en/workflows/asset-69a51c48 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: pre-commit installs and runs linters, formatters, and checks as Git hooks from a single YAML config file. ## What it is pre-commit is a framework for managing and installing multi-language Git hooks. It reads a `.pre-commit-config.yaml` file and runs configured hooks (linters, formatters, security checks) before each commit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-69a51c48) --- # Teleport: Zero-Trust Infrastructure Access in 2026 URL: https://tokrepo.com/en/workflows/asset-69b045fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Teleport replaces VPNs and shared credentials with certificate-based, zero-trust access to your infrastructure. ## What it is Teleport is an open-source platform that provides identity-based access to servers, Kubernetes clusters, databases, and internal web applications. It replaces traditional VPNs and SSH key management with s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-69b045fd) --- # CLAUDE.md Best Practices: Advanced Patterns (2026) URL: https://tokrepo.com/en/workflows/asset-69b3cd5c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Advanced CLAUDE.md patterns covering hooks, multi-directory configs, conditional rules, and team workflow optimization. ## What it is CLAUDE.md Best Practices is a guide to advanced configuration patterns for the CLAUDE.md file used by Claude Code. It covers hook integration for auto-running commands after changes, multi-directory projec …(content truncated, full version at https://tokrepo.com/en/workflows/asset-69b3cd5c) --- # pipx: Python CLI Apps in Isolated Environments (2026) URL: https://tokrepo.com/en/workflows/asset-69c5d4ff Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: pipx installs Python CLI tools in isolated venvs and exposes their commands globally without conflicts. ## What it is pipx installs Python CLI applications (black, poetry, httpie, youtube-dl, ruff) into isolated virtual environments and adds their executables to your PATH. Each tool gets its own venv, so dependencies neve …(content truncated, full version at https://tokrepo.com/en/workflows/asset-69c5d4ff) --- # ExternalDNS: Automate Kubernetes DNS Records 2026 URL: https://tokrepo.com/en/workflows/asset-6a386f18 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ExternalDNS watches Kubernetes Ingress and Service objects and creates, updates, or deletes DNS records automatically. ## What it is ExternalDNS is a Kubernetes controller that synchronizes DNS records with external DNS providers. When you create or update an Ingress or Service resource, ExternalDNS detects the change and creates the co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6a386f18) --- # PocketBase: Backend in One File for AI Apps (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-6a4265b8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PocketBase bundles database, auth, file storage, and admin UI into one Go binary. ## What it is PocketBase is an open-source backend written in Go that packages a SQLite database, user authentication, file storage, and a real-time admin dashboard into a single executable file. You download one binary …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6a4265b8) --- # Firecrawl: Web Scraping API for AI Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-6a62a986 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Firecrawl converts websites into clean markdown or structured data ready for LLM consumption. ## What it is Firecrawl is a web scraping API that converts any website into clean markdown or structured data optimized for LLM ingestion. It handles JavaScript rendering, anti-bot bypassing, sitemaps, and batch crawli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6a62a986) --- # Last30Days: AI Trend Research Across Platforms 2026 URL: https://tokrepo.com/en/workflows/asset-6a80876b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill that researches any topic across Reddit, X, YouTube, HN, and more from the last 30 days with citations. ## What it is Last30Days is a Claude Code skill that researches any topic across 10+ platforms from the last 30 days. It searches Reddit, X (Twitter), YouTube, Hacker News, Polymarket, Bluesky, TikTok, and other sources …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6a80876b) --- # Flagger: Progressive Delivery for Kubernetes (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-6ac8ac2c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Flagger automates canary deployments on Kubernetes with metric-based promotion and automatic rollback. ## What it is Flagger is a FluxCD progressive delivery operator for Kubernetes. It automates canary, A/B, and blue/green rollouts by shifting traffic gradually to new versions, analyzing metrics, and automatically promo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6ac8ac2c) --- # OpenResty: Nginx Plus Lua Web Platform Guide 2026 URL: https://tokrepo.com/en/workflows/asset-6b536a71 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenResty extends Nginx with LuaJIT to build high-performance API gateways and edge services using Lua scripting. ## What it is OpenResty extends Nginx with LuaJIT, the ngx_lua module, and dozens of curated Lua libraries covering Redis, MySQL, DNS, JSON, JWT, and more. The result is a web platform that retains Nginx's event-driven …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6b536a71) --- # Grafana Mimir: Scalable Prometheus Storage (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-6c28dae8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Grafana Mimir stores Prometheus metrics long-term with multi-tenancy and horizontal scalability. ## What it is Grafana Mimir is a horizontally scalable, highly available long-term metrics store for Prometheus and OpenTelemetry. It can handle a billion active series with multi-tenant isolation. Mimir accepts remote- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6c28dae8) --- # Kanboard: Minimalist Kanban Project Management (2026) URL: https://tokrepo.com/en/workflows/asset-6c3f19d2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kanboard is a free, self-hosted Kanban board that strips project management to essentials: tasks, columns, done. ## What it is Kanboard is a free and open-source Kanban project management tool built for people who want simplicity over feature bloat. It focuses on visualizing work, limiting work in progress, and moving tasks to don …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6c3f19d2) --- # Spec Kit: GitHub's Spec-Driven Development Toolkit for AI URL: https://tokrepo.com/en/workflows/asset-6c6059a2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Spec Kit is GitHub's open-source toolkit that converts product specifications into structured, executable AI agent workflows via the specify CLI. ## What it is Spec Kit is an open-source toolkit from GitHub for spec-driven development. Instead of giving AI agents vague instructions (vibe coding), you write structured product specifications and use the `specify` C …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6c6059a2) --- # Best of MCP Servers: 450 Ranked MCP Directory (2026) URL: https://tokrepo.com/en/workflows/asset-6d303005 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A ranked directory of 450 MCP servers scored by GitHub stars, contributors, and activity. ## What it is Best of MCP Servers is a curated, weekly-updated directory that ranks MCP (Model Context Protocol) servers. It covers 34 categories and scores each server based on GitHub stars, contributor count, and rece …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6d303005) --- # Claude Code ML Engineer Agent for Training (2026) URL: https://tokrepo.com/en/workflows/asset-6d6946ad Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent template that handles ML model training, hyperparameter tuning, and deployment pipelines. ## What it is The ML Engineer agent is a Claude Code agent template designed for machine learning workflows. It activates automatically when you work on model training, hyperparameter tuning, experiment tracking, or pro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6d6946ad) --- # Skyvern: AI Visual Browser Automation Agent (2026) URL: https://tokrepo.com/en/workflows/asset-6da285ea Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Skyvern uses LLMs and computer vision to automate websites without CSS selectors, working on unseen sites. ## What it is Skyvern is an AI-powered browser automation agent that uses large language models and computer vision to interact with websites. Unlike traditional automation tools that rely on CSS selectors or XPath, Sky …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6da285ea) --- # Neovim: Hyperextensible Vim-Based Text Editor in 2026 URL: https://tokrepo.com/en/workflows/asset-6ed06dab Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hyperextensible Vim fork with Lua scripting, built-in LSP client, Tree-sitter parsing, and async architecture. ## What it is Neovim is a Vim fork focused on extensibility and usability. It adds first-class Lua scripting, a native LSP (Language Server Protocol) client, Tree-sitter for incremental syntax parsing, async job control …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6ed06dab) --- # Lazygit: Simple Terminal UI for Git Commands (2026) URL: https://tokrepo.com/en/workflows/asset-6ed075de Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lazygit replaces 30+ git CLI commands with an intuitive terminal UI and vim-style keybindings. ## What it is Lazygit is a terminal user interface for git written in Go by Jesse Duffield. It replaces the dozens of git command-line verbs with panels for files, branches, commits, stashes, and remotes. Built on gocui …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6ed075de) --- # tmux: Terminal Multiplexer for Sessions and Panes (2026) URL: https://tokrepo.com/en/workflows/asset-6ed07802 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: tmux lets you manage terminal sessions with detach, reattach, windows, and split panes. ## What it is tmux is a terminal multiplexer that lets you create multiple terminal sessions within a single terminal window, split the screen into panes, and detach/reattach sessions. When you disconnect from SSH, tmux …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6ed07802) --- # Helix: Post-Modern Modal Text Editor in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-6ed079cf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Helix is a Rust modal editor with Tree-sitter, LSP, and multi-cursor editing out of the box. ## What it is Helix is a post-modern modal text editor inspired by Kakoune. Written in Rust with batteries-included defaults: Tree-sitter for syntax highlighting and structural editing, LSP for code intelligence, multi- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6ed079cf) --- # GitHub CLI (gh): Official Command Line Tool (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-6ed07b71 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GitHub CLI lets you create PRs, manage issues, run Actions, and review code from the terminal. ## What it is GitHub CLI (gh) is the official command-line tool for GitHub. It brings pull requests, issues, code review, Actions workflows, releases, and repository management to your terminal. Written in Go, gh works …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6ed07b71) --- # Cursor Tab: AI Autocomplete for Next Edit Prediction (2026) URL: https://tokrepo.com/en/workflows/asset-6efaef05 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cursor Tab suggests multi-line edits by analyzing your codebase context and recent changes. ## What it is Cursor Tab is the predictive code completion engine inside the Cursor IDE. It goes beyond single-line autocomplete by suggesting multi-line edits based on your codebase context, recent changes, and the cur …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6efaef05) --- # System Prompts from 30+ AI Coding Tools in 2026 URL: https://tokrepo.com/en/workflows/asset-6f1ca496 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Read the exact system prompts used by Claude Code, Cursor, Devin, and 25+ other AI tools. ## What it is This collection contains full system prompts extracted from 30+ AI coding tools including Claude Code, Cursor, Devin, Windsurf, Replit, v0, and others. Each prompt reveals the exact instructions that shape …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6f1ca496) --- # Notte: Browser Automation MCP for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-6f8e3905 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Notte provides MCP-based browser automation for AI agents, exposing click, type, navigate, and extract as structured tools. ## What it is Notte is an MCP server that gives AI agents the ability to control web browsers. It exposes structured browser actions -- click, type, navigate, scroll, extract content -- as MCP tools that Claude Code, Cu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6f8e3905) --- # Awesome AI Agents 2026: 340+ Tools Directory Ranked URL: https://tokrepo.com/en/workflows/asset-6fc70526 Type: featured-workflow Updated: 2026-04-15 21:12:35 > **TL;DR**: Monthly-curated directory of 340+ AI agents, frameworks, and tools across 20+ categories. The go-to reference for picking the right agent in 2026. ## Why a 2026-specific list ## Categories covered | # | Category | Count | |---|---|---| | 1 | Coding agents | 42 | | 2 | Multi-agent frameworks | 24 | | 3 | Browser/web agents | 28 | | 4 | Voice AI | 19 | | 5 | Data/a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6fc70526) --- # MarkItDown: Convert Any File to Markdown for LLMs (2026) URL: https://tokrepo.com/en/workflows/asset-6fdc90c2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MarkItDown converts PDF, DOCX, PPTX, images, and audio to clean Markdown for feeding into LLM context windows. ## What it is MarkItDown is a Python library by Microsoft that converts a wide range of file formats into clean Markdown text. It handles PDF, DOCX, PPTX, XLSX, images (via OCR), audio (via transcription), and HTML. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-6fdc90c2) --- # Gemini CLI gcloud Extension: Cloud Operations in 2026 URL: https://tokrepo.com/en/workflows/asset-70150d0c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI extension for managing Google Cloud resources via natural language commands. ## What it is The Gemini CLI gcloud extension brings Google Cloud Platform operations into the Gemini CLI interface. Instead of memorizing gcloud CLI syntax, you describe what you want in natural language, and the exten …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70150d0c) --- # Wrangler MCP: Cloudflare Workers for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-70204503 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that lets AI agents deploy Cloudflare Workers, manage KV/R2/D1 storage, and run serverless functions. ## What it is Wrangler MCP is a Model Context Protocol server that exposes Cloudflare's developer platform to AI agents. It wraps the Wrangler CLI, enabling Claude Code and other MCP-compatible agents to deploy Workers, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70204503) --- # Roo Code: AI Coding Agent Modes for VS Code in 2026 URL: https://tokrepo.com/en/workflows/asset-704bfd36 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Roo Code puts a team of AI coding agents inside VS Code with five built-in personas: Code, Architect, Ask, Debug, and Custom. ## What it is Roo Code is a free, open-source AI coding extension for VS Code. Originally forked from Cline, it has grown into a standalone product with custom agent modes, multi-model support, and MCP (Model Context Pr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-704bfd36) --- # Pydoll: Browser Automation Without WebDriver (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-708bb34d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pydoll automates browsers via Chrome DevTools Protocol with built-in CAPTCHA solving and anti-detection. ## What it is Pydoll is a Python async browser automation library that communicates directly with Chrome via the Chrome DevTools Protocol (CDP). Unlike Selenium or Playwright, it does not use WebDriver, which makes it h …(content truncated, full version at https://tokrepo.com/en/workflows/asset-708bb34d) --- # Julep: Serverless AI Agent Workflows Platform (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-70982ab2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Julep provides serverless infrastructure for AI agents with persistent memory, parallel execution, and 100+ tools. ## What it is Julep is a platform for building production-ready AI agent workflows. It provides persistent memory across sessions, parallel task execution, and integrations with over 100 tools out of the box. Agents are …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70982ab2) --- # Electron: Build Cross-Platform Desktop Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-70e59e04 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Electron bundles Chromium and Node.js so you can ship one web codebase as a native desktop app on Windows, macOS, and Linux. ## What it is Electron is a framework maintained by the OpenJS Foundation (originally created by GitHub) for building native desktop applications using web technologies. It bundles Chromium for rendering and Node.js for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70e59e04) --- # Tauri: Lightweight Desktop Apps with Rust in 2026 URL: https://tokrepo.com/en/workflows/asset-70e5a5ec Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tauri builds desktop and mobile apps with Rust backend and native WebView, producing binaries under 3MB. ## What it is Tauri is a framework for building desktop and mobile applications using any web frontend (React, Vue, Svelte, Solid) with a Rust backend. Unlike Electron, which bundles a full Chromium instance, Tauri uses …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70e5a5ec) --- # Lodash: JavaScript Utility Library Deep Dive (2026) URL: https://tokrepo.com/en/workflows/asset-70e5a808 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lodash provides battle-tested utility functions for arrays, objects, strings, and functions in JavaScript. ## What it is Lodash is the most-downloaded utility library on npm. It provides modular helpers for arrays, objects, strings, collections, and functions -- including clone, debounce, throttle, merge, groupBy, and hundre …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70e5a808) --- # Preact: Fast 3kB React Alternative with Hooks (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-70e5a9d3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Preact offers React-compatible components and hooks in a 3kB package with drop-in compatibility via preact/compat. ## What it is Preact is a fast 3kB alternative to React that provides the same modern API: Virtual DOM, functional components, hooks, and context. It achieves this by focusing on the core rendering engine and dropping r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70e5a9d3) --- # Apollo Client: GraphQL State Management Guide 2026 URL: https://tokrepo.com/en/workflows/asset-70e5ac06 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apollo Client manages remote and local state for GraphQL apps with a normalized cache, optimistic UI, and real-time subscriptions. ## What it is Apollo Client is a comprehensive GraphQL client for TypeScript and JavaScript applications. It provides a normalized in-memory cache, declarative data fetching via hooks, optimistic UI updates, real-time s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-70e5ac06) --- # Gemini CLI Code Review Extension Setup (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-711c04fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI extension that runs automated code quality checks and suggests improvements. ## What it is This is a Gemini CLI extension that adds automated code review capabilities to your terminal workflow. It analyzes code quality, checks adherence to coding standards, and suggests improvements. The extensi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-711c04fe) --- # Claude Skill: Frontend Design for Production (2026) URL: https://tokrepo.com/en/workflows/asset-71a05a12 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill that generates production-grade frontend interfaces with high design quality. ## What it is The frontend-design skill is an official Claude Code skill that teaches the AI agent how to create distinctive, production-grade frontend interfaces. It covers web components, full pages, application UIs, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-71a05a12) --- # Kubespray: Production Kubernetes via Ansible (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-7235179f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubespray uses Ansible to deploy highly available Kubernetes clusters on any infrastructure. ## What it is Kubespray is a Kubernetes SIG (Special Interest Group) project that uses Ansible playbooks to deploy production-grade, highly available Kubernetes clusters. It works on bare-metal servers, virtual machines …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7235179f) --- # Open Interpreter: AI That Runs Code Locally (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-725ebf6f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open Interpreter lets you run Python, JS, and shell commands on your computer through natural language. Local-first, model-agnostic. ## What it is Open Interpreter is a command-line tool that provides a natural language interface for executing code on your local machine. You describe what you want in plain English, and it writes and runs Python, Java …(content truncated, full version at https://tokrepo.com/en/workflows/asset-725ebf6f) --- # Granite Code: IBM Open-Source AI Coding Models in 2026 URL: https://tokrepo.com/en/workflows/asset-727e129c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: IBM open-source code models spanning 3B to 34B parameters, trained on 116 languages under Apache 2.0. ## What it is Granite Code is IBM's family of open-source large language models purpose-built for code tasks. The model lineup ranges from 3B to 34B parameters, covering code generation, code explanation, bug detection, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-727e129c) --- # Artillery: Modern Load Testing for HTTP, WebSocket, and gRPC URL: https://tokrepo.com/en/workflows/asset-729c7c2c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Artillery provides load testing with YAML scenarios for HTTP, WebSocket, gRPC, and Playwright, plus distributed execution on AWS Fargate. ## What it is Artillery is a Node.js load testing toolkit that uses YAML scenario files to define test configurations. It supports HTTP, WebSocket, gRPC, and browser-based testing via Playwright. Artillery handles both …(content truncated, full version at https://tokrepo.com/en/workflows/asset-729c7c2c) --- # Claude Code LLM Architect Agent: Design AI Systems (2026) URL: https://tokrepo.com/en/workflows/asset-72b91e21 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that assists with LLM application architecture including model selection, prompt design, RAG, and cost planning. ## What it is The LLM Architect agent is a Claude Code agent template specialized in designing LLM-powered application architectures. It helps with model selection, prompt pipeline design, RAG system architecture, and c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-72b91e21) --- # MLC-LLM: Deploy LLMs on Any Hardware Natively (2026) URL: https://tokrepo.com/en/workflows/asset-735f5a27 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MLC-LLM compiles LLMs for native performance on any hardware including phones, browsers, GPUs, and CPUs. ## What it is MLC-LLM is a universal deployment engine that compiles large language models to run natively across diverse hardware backends. It uses Apache TVM's machine learning compiler infrastructure to produce optim …(content truncated, full version at https://tokrepo.com/en/workflows/asset-735f5a27) --- # BunkerWeb: Open-Source Web Application Firewall (2026) URL: https://tokrepo.com/en/workflows/asset-736fcfbd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BunkerWeb is an NGINX-based WAF with ModSecurity rules, rate limiting, bot detection, and automatic HTTPS in one package. ## What it is BunkerWeb is an open-source Web Application Firewall (WAF) built on NGINX. It functions as a reverse proxy that adds security layers including ModSecurity OWASP Core Rule Set, rate limiting, bot detection, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-736fcfbd) --- # CUE: Type-Safe Configuration Language for DevOps (2026) URL: https://tokrepo.com/en/workflows/asset-73880cd2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CUE is a data constraint language that validates and generates JSON, YAML, and Protobuf configs with type safety. ## What it is CUE is a data constraint language that unifies schema definition, validation, and code generation for JSON, YAML, Protobuf, and more. It replaces scattered configuration scripts with a single type-safe lan …(content truncated, full version at https://tokrepo.com/en/workflows/asset-73880cd2) --- # Gemini CLI Security Extension: Vulnerability Scanner (2026) URL: https://tokrepo.com/en/workflows/asset-73bb8c69 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Gemini CLI extension that scans code for vulnerabilities, audits dependencies, and suggests remediation. ## What it is This Gemini CLI extension adds security analysis capabilities to the Gemini command-line interface. It scans source code for vulnerabilities, checks dependency trees for known CVEs, and provides actionable …(content truncated, full version at https://tokrepo.com/en/workflows/asset-73bb8c69) --- # OpenTofu: Open-Source Terraform Alternative Guide (2026) URL: https://tokrepo.com/en/workflows/asset-7401055f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenTofu is a Linux Foundation Terraform fork with MPL-2.0 license and state encryption. ## What it is OpenTofu is the Linux Foundation fork of Terraform, created after HashiCorp changed Terraform's license from MPL-2.0 to BSL. OpenTofu maintains the MPL-2.0 open-source license and is a drop-in replacement …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7401055f) --- # imgproxy: Fast Image Processing Server in Go for 2026 URL: https://tokrepo.com/en/workflows/asset-74551bbd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: imgproxy resizes, crops, and converts images on-the-fly using libvips for production-grade performance. ## What it is imgproxy is a standalone image processing server written in Go and powered by libvips. It resizes, crops, and converts images on-the-fly via URL parameters, eliminating the need for pre-generated image var …(content truncated, full version at https://tokrepo.com/en/workflows/asset-74551bbd) --- # Lark CLI Skill: Contact and Org Directory (2026) URL: https://tokrepo.com/en/workflows/asset-74908524 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Search Lark/Feishu users by name, email, or phone and query organizational structure via CLI. ## What it is This Lark CLI skill provides programmatic access to the Lark/Feishu contact and organizational directory. It lets you search users by name, email, or phone number, retrieve detailed user profiles, and quer …(content truncated, full version at https://tokrepo.com/en/workflows/asset-74908524) --- # TigerBeetle: Financial Accounting Database in Zig (2026) URL: https://tokrepo.com/en/workflows/asset-74ef1123 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TigerBeetle is a purpose-built database for double-entry accounting with sub-millisecond financial transactions. ## What it is TigerBeetle is a purpose-built OLTP database designed for double-entry accounting and financial transactions. Written in Zig, it prioritizes safety and deterministic performance for financial workloads tha …(content truncated, full version at https://tokrepo.com/en/workflows/asset-74ef1123) --- # Debezium: Real-Time Change Data Capture in 2026 URL: https://tokrepo.com/en/workflows/asset-7545d7aa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Debezium captures row-level database changes and streams them to Kafka for real-time data pipelines. ## What it is Debezium is a distributed platform for change data capture (CDC). It monitors database transaction logs and streams row-level inserts, updates, and deletes into Apache Kafka topics. Debezium supports MySQL …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7545d7aa) --- # Notion MCP: Knowledge Base Server for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-75851c68 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that gives AI agents read and write access to Notion pages, databases, and content through natural language. ## What it is Notion MCP is a Model Context Protocol server that connects AI agents like Claude Code to Notion workspaces. It enables searching pages, reading content, creating documents, and managing databases through …(content truncated, full version at https://tokrepo.com/en/workflows/asset-75851c68) --- # Haystack: AI Orchestration Framework for Search and RAG (2026) URL: https://tokrepo.com/en/workflows/asset-761bd107 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Python framework by deepset for building production RAG pipelines and semantic search with composable components. ## What it is Haystack is an open-source Python framework by deepset for building AI applications focused on retrieval-augmented generation (RAG) and semantic search. It provides a pipeline architecture where you compos …(content truncated, full version at https://tokrepo.com/en/workflows/asset-761bd107) --- # Langfuse: Open Source LLM Observability Platform (2026) URL: https://tokrepo.com/en/workflows/asset-763445c0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Langfuse is an open-source platform for tracing, evaluating, and monitoring LLM applications. ## What it is Langfuse is an open-source observability platform for LLM applications. It provides distributed tracing, prompt management, evaluation pipelines, and cost analytics to help teams debug, improve, and monito …(content truncated, full version at https://tokrepo.com/en/workflows/asset-763445c0) --- # Claude Engineer: Interactive AI Dev CLI Guide (2026) URL: https://tokrepo.com/en/workflows/asset-7636ec0d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Interactive CLI powered by Claude with self-generating tools, file operations, web search, and code analysis for software development. ## What it is Claude Engineer is an interactive command-line interface powered by Claude for software development tasks. It provides file operations, web search, code analysis, and project management capabilities throug …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7636ec0d) --- # Dagger: Programmable CI/CD Engine Beyond YAML in 2026 URL: https://tokrepo.com/en/workflows/asset-7649c33b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dagger lets you write CI/CD pipelines as code in Python, Go, or TypeScript instead of YAML, with local execution and caching. ## What it is Dagger is a programmable CI/CD engine that replaces YAML-based pipeline configurations with real programming languages. You write pipelines in Python, Go, TypeScript, or any language with an SDK, and run t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7649c33b) --- # Krew: kubectl Plugin Manager for Kubernetes in 2026 URL: https://tokrepo.com/en/workflows/asset-77462c83 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Krew is the package manager for kubectl plugins, maintained under Kubernetes SIGs with 200+ plugins. ## What it is Krew is the official plugin manager for kubectl, maintained under the Kubernetes SIGs umbrella. It provides a discoverable, centrally maintained index of community-contributed kubectl plugins and handles i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-77462c83) --- # Remotion Captions: AI Video Subtitles Guide 2026 URL: https://tokrepo.com/en/workflows/asset-7775f06a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Generate and render word-level captions in Remotion videos with AI transcription. ## What it is Remotion Captions is an AI skill for generating and rendering subtitles in Remotion videos. It handles transcription with word-level timing, styled subtitle rendering, and export within the Remotion React- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7775f06a) --- # RAGFlow: Deep Document Understanding RAG Engine 2026 URL: https://tokrepo.com/en/workflows/asset-7785d7a8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RAGFlow parses complex documents (PDFs, tables, images) and powers RAG Q&A with citations. ## What it is RAGFlow is an open-source retrieval-augmented generation engine that specializes in deep document understanding. It parses complex PDFs, tables, images, and structured documents with higher fidelity than g …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7785d7a8) --- # Fission: Fast Serverless Functions on Kubernetes URL: https://tokrepo.com/en/workflows/asset-781fc161 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fission deploys serverless functions in Python, Go, Node.js, and more on Kubernetes with sub-second cold starts and no container builds. ## What it is Fission is an open-source serverless framework that runs on Kubernetes. It lets developers deploy functions in Python, Go, Node.js, Java, and other languages without building container images. Fission main …(content truncated, full version at https://tokrepo.com/en/workflows/asset-781fc161) --- # Boundary: Identity-Based Secure Remote Access (2026) URL: https://tokrepo.com/en/workflows/asset-78831770 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Boundary provides identity-based access to infrastructure, replacing VPNs with fine-grained controls. ## What it is Boundary is an identity-based access management tool by HashiCorp that replaces traditional VPNs. Instead of giving users broad network access, Boundary provides fine-grained, identity-aware connections to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-78831770) --- # WhatsApp MCP Server: AI Agent Chat Integration (2026) URL: https://tokrepo.com/en/workflows/asset-78b5fdf6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This MCP server lets Claude and other AI agents interact with your WhatsApp account to search contacts, read chats, and send messages. ## What it is The WhatsApp MCP Server connects AI assistants like Claude to your personal WhatsApp account via the Model Context Protocol. Once configured, your AI agent can search contacts, read message history, send t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-78b5fdf6) --- # Immich: Self-Hosted Google Photos Alternative (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-78d81c64 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Immich provides automatic mobile photo backup, AI-powered search, face recognition, and shared albums on your own hardware. ## What it is Immich is a high-performance, self-hosted photo and video management solution built with NestJS, SvelteKit, and Flutter. It provides automatic mobile backup from iOS and Android, a chronological timeline w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-78d81c64) --- # Systematic Debugging: 4-Phase Root Cause Protocol (2026) URL: https://tokrepo.com/en/workflows/asset-78ed006e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill enforcing a 4-phase protocol: investigate, analyze, hypothesize, then fix. ## What it is Systematic Debugging is a Claude Code skill that enforces a rigorous 4-phase root cause investigation protocol before any code fix is attempted. Instead of jumping straight to a solution, the skill guides …(content truncated, full version at https://tokrepo.com/en/workflows/asset-78ed006e) --- # Jellyfin: Free Open-Source Media Server Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-78fb00a4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jellyfin is a free, open-source media server for movies, TV, music, and live TV with no premium gates. ## What it is Jellyfin is a free, open-source media server that lets you stream movies, TV shows, music, and live TV from your own hardware. It is a community-driven alternative to Plex and Emby with no premium tiers, n …(content truncated, full version at https://tokrepo.com/en/workflows/asset-78fb00a4) --- # Actual Budget: Local-First Finance App Setup (2026) URL: https://tokrepo.com/en/workflows/asset-791dd19e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Actual Budget gives you envelope budgeting, bank sync, and multi-device sync without cloud dependency. ## What it is Actual is an open-source personal finance application built on a local-first architecture. It provides envelope budgeting, bank synchronization, and multi-device sync while keeping your financial data unde …(content truncated, full version at https://tokrepo.com/en/workflows/asset-791dd19e) --- # Mealie: Self-Hosted Recipe Manager and Planner (2026) URL: https://tokrepo.com/en/workflows/asset-7940c1fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mealie organizes recipes with URL import, meal planning, shopping lists, and multi-user sharing in a self-hosted app. ## What it is Mealie is an open-source, self-hosted recipe management application. It lets you import recipes from URLs, organize them with tags and categories, plan meals on a calendar, and generate shopping lists. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7940c1fd) --- # Audiobookshelf: Self-Hosted Audiobook Server (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-79639045 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Audiobookshelf is a self-hosted server for audiobooks and podcasts with progress sync, chapters, and mobile apps. ## What it is Audiobookshelf is an open-source audiobook and podcast server that you host yourself. It provides progress synchronization across devices, chapter navigation, mobile apps for iOS and Android, and multi-use …(content truncated, full version at https://tokrepo.com/en/workflows/asset-79639045) --- # Mise: Dev Environment Manager for Any Language (2026) URL: https://tokrepo.com/en/workflows/asset-797fff66 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mise replaces nvm, pyenv, and rbenv with a single CLI that manages 100+ dev tool versions with project-level pinning. ## What it is Mise is a development environment manager that handles version management for Node, Python, Go, Rust, Java, and 100+ other tools through a single CLI. It replaces the collection of version managers (nvm, p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-797fff66) --- # TRL: Post-Training LLMs with RLHF and DPO (2026) URL: https://tokrepo.com/en/workflows/asset-7989ba1c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TRL provides SFT, DPO, GRPO, and reward modeling for post-training LLMs at any scale. ## What it is TRL (Transformer Reinforcement Learning) is a Hugging Face library for post-training foundation models. It implements supervised fine-tuning (SFT), direct preference optimization (DPO), group relative poli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7989ba1c) --- # Remotion Rule: Extract Video Frames Guide in 2026 URL: https://tokrepo.com/en/workflows/asset-79efb497 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Remotion skill rule teaches AI agents to extract frames from videos at specific timestamps using the Mediabunny library in React. ## What it is This is a Remotion skill rule that teaches AI coding agents how to extract frames from videos at specific timestamps using Mediabunny. It is part of the official Remotion Agent Skill for programmatic video …(content truncated, full version at https://tokrepo.com/en/workflows/asset-79efb497) --- # kOps: Production Kubernetes Cluster Management in 2026 URL: https://tokrepo.com/en/workflows/asset-7a39c111 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: kOps automates the full lifecycle of production Kubernetes clusters: creation, upgrades, rolling updates, and teardown. ## What it is kOps (Kubernetes Operations) is the official tool for provisioning and managing production-grade Kubernetes clusters on cloud infrastructure. It automates the full lifecycle -- creation, upgrades, rolling …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7a39c111) --- # Vercel AI SDK: Build AI Apps in TypeScript (2026) URL: https://tokrepo.com/en/workflows/asset-7a5b5d88 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vercel AI SDK unifies Claude, GPT-4, and Gemini behind one TypeScript API with streaming and React hooks. ## What it is Vercel AI SDK is the official TypeScript SDK for building AI-powered applications. It provides a unified API across Claude, GPT-4, Gemini, and 20+ providers with streaming, tool use, structured output (JSO …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7a5b5d88) --- # Matomo Self-Hosted Analytics Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-7aee70f4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Matomo replaces Google Analytics with a self-hosted, GDPR-compliant analytics platform you fully control. ## What it is Matomo (formerly Piwik) is an open-source web analytics platform that you host on your own infrastructure. It tracks page views, visitor flows, referrers, e-commerce conversions, and campaign attribution w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7aee70f4) --- # Bytebase: Database DevOps and CI/CD Platform (2026) URL: https://tokrepo.com/en/workflows/asset-7b0a53c6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bytebase adds schema review, SQL linting, and change pipelines to 20+ database engines. ## What it is Bytebase is an open-source database DevOps platform that sits between developers and their databases. It adds schema review, SQL linting, change-management workflows, GitOps pipelines, and fine-grained dat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7b0a53c6) --- # Cloud Custodian: Cloud Security Policy Engine (2026) URL: https://tokrepo.com/en/workflows/asset-7b0e8ddf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cloud Custodian enforces security, cost, and compliance policies across AWS, Azure, and GCP using simple YAML rules. ## What it is Cloud Custodian is a CNCF-hosted rules engine that lets teams define cloud governance policies in YAML. Each policy specifies a resource type (EC2 instances, S3 buckets, Azure VMs), filters to match non-co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7b0e8ddf) --- # shadcn/ui: Copy-Paste React Components Guide (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-7b26fdf7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: shadcn/ui gives you accessible React components you own and customize, built on Radix UI and Tailwind CSS. ## What it is shadcn/ui is not a traditional component library you install as a dependency. Instead, it provides beautifully designed, accessible React components that you copy directly into your project. Components are …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7b26fdf7) --- # Vitess: Horizontal MySQL Scaling via Sharding (2026) URL: https://tokrepo.com/en/workflows/asset-7b3639fb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vitess scales MySQL horizontally with automated sharding, connection pooling, and query routing. ## What it is Vitess is a database clustering system designed to scale MySQL horizontally. Developed at YouTube to handle billions of requests per day, it is now a CNCF graduated project. Vitess wraps MySQL with intelli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7b3639fb) --- # Jan: Offline AI Desktop App with Full Privacy 2026 URL: https://tokrepo.com/en/workflows/asset-7b703194 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jan runs open-source LLMs offline on your desktop with full privacy -- no cloud, no API keys, no data leaving your machine. ## What it is Jan is a desktop application that runs large language models locally on your computer. All processing happens on your machine -- no data is sent to cloud servers. It provides a ChatGPT-style interface for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7b703194) --- # Remotion Text Measuring Skill Rule for Video (2026) URL: https://tokrepo.com/en/workflows/asset-7c51fb5b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Measure text width and height in Remotion to fit text into containers and detect overflow. ## What it is This is a Remotion skill rule that covers measuring text dimensions, fitting text to containers, and checking for overflow. It is part of the official Remotion Agent Skill for programmatic video creation i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7c51fb5b) --- # cert-manager: Automated TLS Certificates for K8s (2026) URL: https://tokrepo.com/en/workflows/asset-7cc65aaa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: cert-manager issues, renews, and rotates TLS certificates on Kubernetes through declarative CRDs and ACME automation. ## What it is cert-manager is a cloud-native Kubernetes controller that automates the issuance, renewal, and rotation of X.509 TLS certificates. It integrates with certificate authorities like Let's Encrypt, HashiCorp V …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7cc65aaa) --- # Flutter: Google Cross-Platform UI Toolkit Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-7cce6fed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google's toolkit for building natively compiled apps across mobile, web, and desktop from one Dart codebase. ## What it is Flutter is Google's open-source UI toolkit for crafting natively compiled applications for mobile (iOS, Android), web, desktop (Windows, macOS, Linux), and embedded devices from a single codebase. Powered …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7cce6fed) --- # Swift Programming Language: Build Apple Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-7cce7840 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apple's fast, safe, expressive language for building apps on iOS, macOS, Linux, and the server. ## What it is Swift is a general-purpose programming language created at Apple to replace Objective-C. It compiles to native code and runs on iOS, macOS, watchOS, tvOS, Linux, and server environments. Swift combines per …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7cce7840) --- # Kotlin: Modern JVM Language for Android and Beyond (2026) URL: https://tokrepo.com/en/workflows/asset-7cce7cf5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kotlin runs on JVM, Android, native, WebAssembly, and JS targets with null safety, coroutines, and full Java interop. ## What it is Kotlin is a statically typed, general-purpose programming language developed by JetBrains. It runs on the JVM, compiles to Android bytecode, native binaries (via Kotlin/Native), WebAssembly, and JavaScript …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7cce7cf5) --- # PHP: The Web Scripting Language in 2026 -- A Guide URL: https://tokrepo.com/en/workflows/asset-7cce7f80 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PHP 8.x brings JIT compilation, fibers, enums, readonly properties, and union types to the language powering much of the web. ## What it is PHP is a general-purpose scripting language widely used for server-side web development. It powers major platforms including WordPress, Laravel, Symfony, Drupal, and Magento. PHP 8.x introduced significant …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7cce7f80) --- # Elixir: Functional Language for Scalable Apps (2026) URL: https://tokrepo.com/en/workflows/asset-7cce81c0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Elixir runs on the Erlang BEAM VM, providing lightweight processes, fault tolerance, and hot code reloading for scalable applications. ## What it is Elixir is a dynamic, functional programming language built on the Erlang virtual machine (BEAM). It inherits Erlang's strengths -- fault tolerance, distributed computing, hot code reloading, and lightweigh …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7cce81c0) --- # Bifrost CLI: Run Claude Code with Any AI Model in 2026 URL: https://tokrepo.com/en/workflows/asset-7ce62a2f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bifrost provides a unified API gateway that routes Claude Code requests to OpenAI, Gemini, Bedrock, Groq, and 20+ providers. ## What it is Bifrost CLI is an enterprise AI gateway that provides a unified OpenAI-compatible API across 20+ AI providers and 1,000+ models. The CLI component lets developers run Claude Code, Codex CLI, Gemini CLI, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7ce62a2f) --- # Gemini CLI Flutter Extension: App Dev Guide 2026 URL: https://tokrepo.com/en/workflows/asset-7d515779 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI Flutter extension provides AI-assisted widget creation, state management, and cross-platform code generation. ## What it is The Gemini CLI Flutter extension is an official Google extension that adds Flutter development capabilities to the Gemini command-line interface. It assists with widget creation, state management patterns, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7d515779) --- # Awesome AI System Prompts: 32+ Tools Revealed (2026) URL: https://tokrepo.com/en/workflows/asset-7d697443 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of extracted system prompts from 32+ production AI tools including ChatGPT, Claude, Cursor, and v0. ## What it is Awesome AI System Prompts is a curated GitHub repository containing extracted system prompts from over 32 production AI tools. The collection includes prompts from ChatGPT, Claude, Cursor, v0, Manus, Devin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7d697443) --- # RAG Best Practices: Production Pipeline Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-7ded33e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A complete guide to production RAG covering chunking strategies, embedding models, retrieval, and evaluation. ## What it is This guide covers best practices for building production Retrieval-Augmented Generation (RAG) pipelines. It addresses chunking strategies, embedding model selection, vector database setup, retrieval techni …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7ded33e8) --- # Lark CLI Skill: Meeting Summary Workflow Guide (2026) URL: https://tokrepo.com/en/workflows/asset-7e662a8b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Lark/Feishu CLI skill that aggregates meeting minutes and generates structured summary reports. ## What it is This CLI skill for Lark (Feishu) automates the process of aggregating meeting minutes across a specified time range and generating structured summary reports. It pulls data from Lark's calendar and meeting …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7e662a8b) --- # Claude Skill: theme-factory for Styled Artifacts and Docs URL: https://tokrepo.com/en/workflows/asset-7eb8a442 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: theme-factory is a Claude Code skill with 10 pre-set themes for styling slides, docs, reports, and HTML landing pages with consistent design. ## What it is theme-factory is an official Claude Code skill that provides a toolkit for styling artifacts with themed visual design. It includes 10 pre-set themes with defined color palettes, typography, and layout gui …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7eb8a442) --- # Remotion Rule: Transparent Videos in React (2026) URL: https://tokrepo.com/en/workflows/asset-7eef8da9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion rule for rendering transparent videos using ProRes 4444 or VP9 WebM formats. ## What it is This is an official Remotion agent skill rule that provides guidance for rendering transparent videos in Remotion projects. It covers two methods: ProRes (for importing into video editing software) and Web …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7eef8da9) --- # Langflow: Visual AI Workflow Builder Guide (2026) URL: https://tokrepo.com/en/workflows/asset-7f8a8ada Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Low-code visual builder for AI workflows with drag-and-drop LLM, vector store, tool, and agent components plus Python extensibility. ## What it is Langflow is a low-code visual builder for AI workflows and RAG (Retrieval-Augmented Generation) pipelines. It provides a drag-and-drop canvas where you connect components representing LLMs, vector stores, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7f8a8ada) --- # Langflow: Visual AI Agent Builder with API Export (2026) URL: https://tokrepo.com/en/workflows/asset-7f90ddce Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Langflow lets you build AI agents and RAG pipelines by connecting visual blocks, then deploy them as APIs or MCP servers. ## What it is Langflow is an open-source visual platform for building AI agents, RAG pipelines, and multi-agent systems. You design workflows by dragging and connecting blocks in a browser-based canvas -- each block rep …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7f90ddce) --- # Next.js AI Chatbot: Vercel Template Guide (2026) URL: https://tokrepo.com/en/workflows/asset-7fb3fe60 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vercel's official AI chatbot template with Next.js App Router, AI SDK, streaming, multi-model support, and conversation persistence. ## What it is Next.js AI Chatbot is Vercel's official reference application for building production AI chatbots. It ships with Next.js App Router, Vercel AI SDK, shadcn/ui components, and Auth.js authentication. The tem …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7fb3fe60) --- # OpenRouter: Unified API for 200+ AI Models Setup (2026) URL: https://tokrepo.com/en/workflows/asset-7ff8e91c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenRouter gives you a single OpenAI-compatible endpoint for 200+ models with fallbacks and usage tracking. ## What it is OpenRouter is a unified API service that provides access to over 200 AI models from OpenAI, Anthropic, Google, Meta, Mistral, and other providers through a single OpenAI-compatible endpoint. It handles mod …(content truncated, full version at https://tokrepo.com/en/workflows/asset-7ff8e91c) --- # LangChain: Build LLM Apps with Agents and RAG (2026) URL: https://tokrepo.com/en/workflows/asset-803c3d1a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangChain connects LLMs to tools, memory, and data sources for production AI applications. ## What it is LangChain is the most widely adopted framework for building applications powered by large language models. It provides abstractions for chains, agents, retrieval-augmented generation (RAG), memory, and too …(content truncated, full version at https://tokrepo.com/en/workflows/asset-803c3d1a) --- # Continue: Open-Source AI Code Assistant (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8040c0e5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Continue brings AI tab autocomplete, chat, and inline editing to VS Code and JetBrains with any model provider. ## What it is Continue is an open-source AI code assistant that integrates into VS Code and JetBrains IDEs. It provides tab autocomplete, chat, and inline editing powered by any LLM provider -- OpenAI, Anthropic, Ollama …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8040c0e5) --- # LiveKit Agents: Build Real-Time Voice AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-804ee888 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LiveKit Agents connects STT, LLM, and TTS into a real-time voice pipeline over WebRTC for building voice AI agents. ## What it is LiveKit Agents is an open-source Python framework for building real-time voice AI agents. It provides a pipeline architecture that chains Speech-to-Text, LLM processing, and Text-to-Speech with sub-second …(content truncated, full version at https://tokrepo.com/en/workflows/asset-804ee888) --- # Context7: Up-to-Date Docs MCP for AI Editors (2026) URL: https://tokrepo.com/en/workflows/asset-80630bbc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Context7 is an MCP server that feeds AI code editors current documentation for 1000+ libraries to prevent outdated hallucinations. ## What it is Context7 is an MCP server that provides AI code editors with up-to-date library documentation. When your AI assistant generates code, Context7 ensures it references current API signatures, not outdated inf …(content truncated, full version at https://tokrepo.com/en/workflows/asset-80630bbc) --- # Heimdall: Self-Hosted Application Dashboard in 2026 URL: https://tokrepo.com/en/workflows/asset-80aa267f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Heimdall organizes all your self-hosted web services into a single, customizable start page with search and bookmarks. ## What it is Heimdall is a self-hosted application dashboard that provides a unified start page for all your web services and applications. It displays application tiles with status indicators, enhanced search, and boo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-80aa267f) --- # Claude Code Product Manager Agent (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-80d2ebbb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that writes PRDs, user stories, and acceptance criteria from your project context. ## What it is This is a specialized Claude Code agent designed for product management tasks. It generates PRDs (Product Requirements Documents), user stories with acceptance criteria, and roadmaps by reading your codeba …(content truncated, full version at https://tokrepo.com/en/workflows/asset-80d2ebbb) --- # Podman Desktop: Container Dev UI Without Docker (2026) URL: https://tokrepo.com/en/workflows/asset-80eda088 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Podman Desktop provides a Docker Desktop-like GUI for managing containers using the rootless, daemonless Podman engine. ## What it is Podman Desktop is an open-source graphical application for managing containers, images, volumes, pods, and Kubernetes environments using Podman as the container engine. It provides a Docker Desktop-like ex …(content truncated, full version at https://tokrepo.com/en/workflows/asset-80eda088) --- # Bark: AI Text-to-Audio with Music and Effects (2026) URL: https://tokrepo.com/en/workflows/asset-814b8972 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bark generates speech, music, and sound effects from text with 12+ languages and 100+ voice presets. MIT licensed. ## What it is Bark is a transformer-based text-to-audio model by Suno that generates realistic speech, music, and sound effects from text prompts. It supports over 12 languages, 100+ voice presets, and can produce non-s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-814b8972) --- # Void: Open-Source Cursor Alternative Editor 2026 URL: https://tokrepo.com/en/workflows/asset-81637930 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Void is an open-source AI code editor built on VS Code with checkpoints, custom model support, and local hosting. ## What it is Void is an open-source AI code editor that positions itself as an alternative to Cursor. Built on VS Code, it provides AI-assisted coding features including inline completions, chat, and multi-file editing …(content truncated, full version at https://tokrepo.com/en/workflows/asset-81637930) --- # Aider: AI Pair Programming in Your Terminal 2026 URL: https://tokrepo.com/en/workflows/asset-818852c3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Terminal-based AI pair programmer that understands your codebase, makes multi-file edits, and auto-commits changes to git. ## What it is Aider is a terminal-based AI pair programmer that lets you chat with Claude, GPT, or other LLMs to edit code in your local git repository. It maps your entire repo into context, understands file relationsh …(content truncated, full version at https://tokrepo.com/en/workflows/asset-818852c3) --- # Lapce: Lightning-Fast Rust Code Editor with Vim (2026) URL: https://tokrepo.com/en/workflows/asset-81dc34c6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lapce is a Rust-built code editor with GPU rendering, Vim-style modal editing, remote development, and a WASI plugin system. ## What it is Lapce is an open-source code editor written in Rust that prioritizes performance above all else. It uses GPU-accelerated rendering via wgpu to achieve sub-millisecond frame times and startup speeds that El …(content truncated, full version at https://tokrepo.com/en/workflows/asset-81dc34c6) --- # fnm: Fast Node.js Version Manager Built in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-81fadebf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: fnm manages Node.js versions 40x faster than nvm, with automatic version switching per directory. ## What it is fnm (Fast Node Manager) is a Node.js version manager built in Rust. It installs and switches between Node.js versions instantly, supports `.node-version` and `.nvmrc` files, and works on macOS, Linux, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-81fadebf) --- # Remotion Charts Rule: Data Visualization Guide 2026 URL: https://tokrepo.com/en/workflows/asset-82118e54 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The Remotion Charts rule provides patterns for building animated bar, pie, line, and stock charts in React video. ## What it is The Remotion Charts Rule is part of the official Remotion Agent Skill set. It provides patterns and best practices for creating animated data visualizations in Remotion compositions, including bar charts, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82118e54) --- # Ratatui: Terminal UI Library for Rust Apps (2026) URL: https://tokrepo.com/en/workflows/asset-82197cf0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ratatui provides widgets for tables, charts, lists, and tabs to build interactive terminal apps in Rust. ## What it is Ratatui is a Rust library for building rich terminal user interfaces (TUIs). It provides a widget set including tables, charts, lists, paragraphs, tabs, sparklines, and gauges. The library uses immediate-m …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82197cf0) --- # Wasmtime: Fast Secure WebAssembly Runtime for Servers (2026) URL: https://tokrepo.com/en/workflows/asset-823821b7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Wasmtime runs WebAssembly modules outside the browser with near-native speed, capability-based security, and full WASI support. ## What it is Wasmtime is a standalone WebAssembly runtime developed by the Bytecode Alliance. It runs Wasm modules outside the browser with near-native performance, providing a sandboxed execution environment with capa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-823821b7) --- # Clap: Command Line Argument Parser for Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8256d544 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Clap provides derive macros and a builder API for parsing CLI arguments with rich help and validation in Rust. ## What it is Clap is the most widely used CLI argument parser for Rust. It offers two styles: a derive macro approach where you annotate a struct with argument definitions, and a builder API for dynamic or complex argu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8256d544) --- # bottom: Cross-Platform Terminal System Monitor in 2026 URL: https://tokrepo.com/en/workflows/asset-82758995 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: bottom replaces top/htop with interactive terminal charts for CPU, memory, network, disk, and processes across Linux, macOS, and Windows. ## What it is bottom (btm) is a terminal-based system monitor written in Rust using Ratatui. It displays real-time CPU, memory, network, disk, temperature, and process information through interactive charts. It works on …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82758995) --- # Lark CLI Skill: Sheets -- Spreadsheet Operations 2026 URL: https://tokrepo.com/en/workflows/asset-828aaa73 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lark CLI skill that lets AI agents create, read, write, and export Lark/Feishu spreadsheets from the command line. ## What it is Lark CLI Skill: Sheets is a command-line skill for managing Lark/Feishu spreadsheets. It provides operations for creating spreadsheets with headers and data, reading and writing cells, appending rows, find …(content truncated, full version at https://tokrepo.com/en/workflows/asset-828aaa73) --- # Rayon: Data Parallelism Library for Rust in 2026 URL: https://tokrepo.com/en/workflows/asset-82947385 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rayon converts sequential Rust iterators into parallel ones with a single method change, guaranteed safe by the type system. ## What it is Rayon is the standard data parallelism library for Rust. It provides parallel iterators that mirror the standard Rust iterator API but distribute work across all available CPU cores automatically. The key …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82947385) --- # Reqwest: Ergonomic Async HTTP Client for Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-82b3259d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Reqwest provides a high-level async HTTP client for Rust with JSON, TLS, cookies, and connection pooling. ## What it is Reqwest is the most widely used HTTP client library for Rust. It provides a high-level, async-first API for making HTTP requests with automatic JSON serialization via serde, native TLS or rustls, cookie ma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82b3259d) --- # Magika: Google AI File Type Detection Tool in 2026 URL: https://tokrepo.com/en/workflows/asset-82c22f07 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google's deep learning file type detector identifies 200+ file types with 99%+ accuracy using AI. ## What it is Magika is a file type detection tool developed by Google that uses deep learning to identify over 200 file types with 99%+ accuracy. Unlike traditional tools that rely on magic bytes or file extensions, Ma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82c22f07) --- # dust: Intuitive Disk Usage Viewer in Rust (2026 CLI) URL: https://tokrepo.com/en/workflows/asset-82d22b5a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: dust shows disk usage as a color-coded visual tree, instantly revealing the largest directories. ## What it is dust (du + Rust = dust) is a modern replacement for the du disk usage command. It provides a visual, color-coded tree view of directory sizes, instantly showing which folders and files consume the most dis …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82d22b5a) --- # xsv: Fast CSV Toolkit Written in Rust for Data Analysis URL: https://tokrepo.com/en/workflows/asset-82f0e8a4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: xsv processes CSV data at millions of rows per second with indexing, slicing, searching, joining, aggregation, and statistics from the command line. ## What it is xsv is a command-line toolkit for working with CSV data, written in Rust. It provides a suite of subcommands for viewing headers, slicing rows, selecting columns, searching with regex, joining files, compu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-82f0e8a4) --- # Claude Quickstarts: 5 Deployable AI App Templates (2026) URL: https://tokrepo.com/en/workflows/asset-8314e5f3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Five official, deployable AI application templates from Anthropic covering support agents, financial analysis, and computer use. ## What it is Claude Quickstarts is Anthropic's official collection of five deployable AI application templates. Each quickstart is a complete, working project that demonstrates a specific Claude API capability: a custo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8314e5f3) --- # Claude PDF Skill: Read, Create and Edit PDFs in 2026 URL: https://tokrepo.com/en/workflows/asset-8341096b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Claude Code skill that reads, creates, merges, and converts PDF files automatically. ## What it is This is an official Claude Code skill from Anthropic's skills repository for working with PDF files. It handles reading content, extracting text and tables, creating new PDFs, merging multiple documents, s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8341096b) --- # Claude Webapp Testing Skill with Playwright (2026) URL: https://tokrepo.com/en/workflows/asset-8353a203 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Claude Code skill that writes and runs Playwright tests to verify frontend functionality and capture screenshots. ## What it is The webapp-testing skill is an official Claude Code skill from Anthropic's skills repository. It provides a toolkit for interacting with and testing local web applications using Python Playwright scripts. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8353a203) --- # Grafana Tempo: Distributed Tracing Backend Guide (2026) URL: https://tokrepo.com/en/workflows/asset-839b7415 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Grafana Tempo stores distributed traces in cheap object storage and integrates natively with Grafana dashboards. ## What it is Grafana Tempo is a high-volume, minimal-dependency distributed tracing backend. It ingests spans from OpenTelemetry, Jaeger, and Zipkin into object storage (S3, GCS, Azure Blob) and provides native integra …(content truncated, full version at https://tokrepo.com/en/workflows/asset-839b7415) --- # Llamafile: Run LLMs as Single Executables (2026) URL: https://tokrepo.com/en/workflows/asset-83ea12ae Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Llamafile bundles model weights with llama.cpp into one executable that runs on any OS without installation or dependencies. ## What it is Llamafile is a tool from Mozilla that packages large language models into single, self-contained executable files. Each llamafile bundles model weights with a compiled version of llama.cpp, producing a bin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-83ea12ae) --- # Skopeo: Container Image Management Without Docker (2026) URL: https://tokrepo.com/en/workflows/asset-842a75aa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Skopeo manages container images across registries without needing a Docker daemon, ideal for CI and air-gapped mirrors. ## What it is Skopeo is a command-line utility for performing operations on container images and image registries. It can inspect, copy, sign, and delete images across any OCI-compliant or Docker registry without requir …(content truncated, full version at https://tokrepo.com/en/workflows/asset-842a75aa) --- # Together AI Image Generation Skill for Claude (2026) URL: https://tokrepo.com/en/workflows/asset-84500559 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill for Together AI's image generation API with FLUX and Kontext models. ## What it is This skill teaches Claude Code how to use Together AI's image generation API. It covers FLUX and Kontext models for text-to-image generation, image editing, and style transfer workflows. With this skill ac …(content truncated, full version at https://tokrepo.com/en/workflows/asset-84500559) --- # Sandpack: Live Code Editor Component by CodeSandbox (2026) URL: https://tokrepo.com/en/workflows/asset-847af291 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sandpack lets you embed live code editors with instant preview in React apps for docs, AI chatbots, and education. ## What it is Sandpack is a React component library by CodeSandbox that embeds live code editors with instant preview in web applications. Users can edit code and see results in real time without leaving your page. It s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-847af291) --- # SafeLine: Self-Hosted WAF with Semantic Analysis 2026 URL: https://tokrepo.com/en/workflows/asset-84b25adf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SafeLine is a self-hosted WAF that uses semantic analysis instead of regex rules to block SQL injection, XSS, and other web attacks. ## What it is SafeLine is a self-hosted Web Application Firewall by Chaitin Technology. Unlike traditional WAFs that rely on regex pattern matching, SafeLine uses semantic analysis to understand the intent of HTTP reque …(content truncated, full version at https://tokrepo.com/en/workflows/asset-84b25adf) --- # Meshery: Cloud-Native Infrastructure Manager (2026) URL: https://tokrepo.com/en/workflows/asset-84ca0b6a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Meshery manages Kubernetes infrastructure and service meshes through a visual catalog and API. ## What it is Meshery is a CNCF-governed multi-mesh and multi-cluster management plane. It designs, deploys, and operates Kubernetes infrastructure and service meshes through a visual catalog called Kanvas. Meshery trea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-84ca0b6a) --- # Lark CLI Standup Report Workflow (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-84e21a6a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Generates daily or weekly standup summaries by combining your Lark calendar and task data automatically. ## What it is This is a Claude Code skill for the Lark (Feishu) CLI that automates standup report generation. It pulls your calendar agenda and task list, then formats them into a structured daily or weekly summary. Th …(content truncated, full version at https://tokrepo.com/en/workflows/asset-84e21a6a) --- # GPT Engineer: Generate Codebases from Prompts 2026 URL: https://tokrepo.com/en/workflows/asset-84f451e1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GPT Engineer generates complete codebases from natural language descriptions with iterative human feedback loops. ## What it is GPT Engineer is a CLI tool that generates entire codebases from natural language prompts. You describe what you want to build in a text file, run the tool, and it produces a working project with multiple f …(content truncated, full version at https://tokrepo.com/en/workflows/asset-84f451e1) --- # LibreChat: Self-Hosted Multi-AI Chat Platform (2026) URL: https://tokrepo.com/en/workflows/asset-850494fb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Self-hosted AI chat platform that unifies Claude, OpenAI, Google, and AWS Bedrock in one interface. ## What it is LibreChat is a self-hosted AI chat platform that unifies major AI providers in a single privacy-focused interface. It supports Claude (Anthropic), OpenAI, Azure OpenAI, Google AI, and AWS Bedrock. The plat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-850494fb) --- # Oh My Zsh: Manage Your Zsh Configuration Easy (2026) URL: https://tokrepo.com/en/workflows/asset-85b6b249 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Oh My Zsh provides 300+ plugins and 140+ themes for managing Zsh configuration effortlessly. ## What it is Oh My Zsh is a community-driven framework for managing your Zsh shell configuration. It bundles over 300 plugins (git, docker, node, python, homebrew, and more), 140+ themes, and an auto-update system. Ins …(content truncated, full version at https://tokrepo.com/en/workflows/asset-85b6b249) --- # fzf: Command-Line Fuzzy Finder Written in Go (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-85b6bab1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: fzf is a Go-based fuzzy finder that turns any list into an interactive, searchable picker for files, history, git branches, and more. ## What it is fzf is a general-purpose command-line fuzzy finder written in Go. It reads any list from stdin and presents an interactive fuzzy search interface. You type a partial match, and fzf instantly narrows the li …(content truncated, full version at https://tokrepo.com/en/workflows/asset-85b6bab1) --- # ripgrep: Fast Recursive Search Tool in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-85b6bce8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ripgrep searches directories recursively for regex patterns at speeds that beat grep, ag, and ack. ## What it is ripgrep (rg) is a line-oriented search tool that recursively searches directories for a regex pattern while respecting your `.gitignore` rules. Written in Rust, ripgrep is consistently the fastest search t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-85b6bce8) --- # bat: A cat Clone with Syntax Highlighting 2026 URL: https://tokrepo.com/en/workflows/asset-85b6bed3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: bat replaces cat with syntax highlighting, Git diff markers, line numbers, and automatic paging in your terminal. ## What it is bat is a command-line tool that serves as a drop-in replacement for the Unix `cat` command. It adds syntax highlighting for over 200 languages, Git integration (showing modified lines), automatic paging, l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-85b6bed3) --- # Starship: Blazing-Fast Customizable Shell Prompt (2026) URL: https://tokrepo.com/en/workflows/asset-85b6c0d9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Starship is a Rust-powered cross-shell prompt that shows git status, language versions, and cloud context with zero latency. ## What it is Starship is a minimal, fast, and customizable prompt for any shell. Written in Rust, it renders contextual information like git status, language versions, Kubernetes context, and cloud profiles without mea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-85b6c0d9) --- # Git MCP: Version Control Server for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-85eacf96 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Git MCP enables AI agents to perform Git operations like commits, diffs, and branch management via tool calls. ## What it is Git MCP is a Model Context Protocol server that gives AI agents full Git capabilities. It enables Claude Code, Cursor, and other MCP-compatible tools to manage repositories, branches, commits, diffs, and h …(content truncated, full version at https://tokrepo.com/en/workflows/asset-85eacf96) --- # Dia TTS: Realistic Dialogue Text-to-Speech Model (2026) URL: https://tokrepo.com/en/workflows/asset-86148916 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dia generates realistic dialogue audio from transcripts with multi-speaker and voice cloning support. ## What it is Dia is a 1.6B parameter text-to-speech model built by Nari Labs. It generates realistic dialogue audio from text transcripts, supporting multiple speakers in a single generation, non-verbal sounds like lau …(content truncated, full version at https://tokrepo.com/en/workflows/asset-86148916) --- # Cosign: Sign and Verify Container Images Securely (2026) URL: https://tokrepo.com/en/workflows/asset-87421f84 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cosign signs and verifies container images and artifacts using keyless OIDC-based signing or traditional key pairs for supply chain security. ## What it is Cosign is a tool from the Sigstore project for cryptographically signing container images and other software artifacts. It supports both traditional key-pair signing and keyless signing via OIDC identity p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-87421f84) --- # TruffleHog: Find and Verify Leaked Credentials 2026 URL: https://tokrepo.com/en/workflows/asset-874d55f8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Secret scanner that finds and verifies leaked credentials across Git repos, filesystems, and S3 buckets. Checks if secrets are active. ## What it is TruffleHog is a credentials scanner that finds, verifies, and analyzes leaked secrets across Git repositories, filesystems, S3 buckets, and more. Unlike basic pattern-matching scanners, TruffleHog checks w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-874d55f8) --- # Semgrep: Lightweight Static Analysis for Any Language (2026) URL: https://tokrepo.com/en/workflows/asset-876dacb1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Semgrep finds bugs and security issues using code-like patterns across 30+ languages, no complex AST knowledge needed. ## What it is Semgrep is a fast, open-source static analysis tool that finds bugs and security vulnerabilities using patterns that look like the source code you are searching. Write rules in a syntax similar to the code …(content truncated, full version at https://tokrepo.com/en/workflows/asset-876dacb1) --- # Telepresence: Local Dev for Remote Kubernetes in 2026 URL: https://tokrepo.com/en/workflows/asset-87729894 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Telepresence intercepts remote Kubernetes service traffic and routes it to your local machine for fast iteration. ## What it is Telepresence is a CNCF project that bridges your local development environment with a remote Kubernetes cluster. Instead of deploying every code change to test it, you run a single service locally in your …(content truncated, full version at https://tokrepo.com/en/workflows/asset-87729894) --- # Bitwarden: Open Source Password Manager for Teams (2026) URL: https://tokrepo.com/en/workflows/asset-878e74e6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bitwarden provides end-to-end encrypted password management across all devices, free and open-source. ## What it is Bitwarden is an open-source password manager that provides end-to-end encrypted credential storage synchronized across all devices. It offers clients for web, desktop, mobile, browser extensions, and CLI. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-878e74e6) --- # Grype: Container Vulnerability Scanner Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-87aec817 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Grype matches packages in container images against CVE/GHSA databases to find known vulnerabilities instantly. ## What it is Grype is a vulnerability scanner for container images and filesystems built by Anchore. It identifies installed packages in a container image and matches them against vulnerability databases including CVE …(content truncated, full version at https://tokrepo.com/en/workflows/asset-87aec817) --- # Syft: Generate SBOMs from Container Images (2026) URL: https://tokrepo.com/en/workflows/asset-87cf1b00 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Syft scans container images and filesystems to generate SBOMs in SPDX, CycloneDX, and custom formats. ## What it is Syft is a CLI tool by Anchore that generates Software Bill of Materials (SBOMs) from container images, filesystems, and archives. It detects packages across OS-level (dpkg, apk, rpm) and language-level (np …(content truncated, full version at https://tokrepo.com/en/workflows/asset-87cf1b00) --- # step-ca: Private Certificate Authority Guide 2026 URL: https://tokrepo.com/en/workflows/asset-87ef82d8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: step-ca automates TLS and SSH certificate management for internal services using the ACME protocol, like Let's Encrypt for your private network. ## What it is step-ca is a private online Certificate Authority created by Smallstep that brings the automation of the public web PKI to internal infrastructure. It issues X.509 certificates for TLS and SSH certificates …(content truncated, full version at https://tokrepo.com/en/workflows/asset-87ef82d8) --- # BentoML: Build AI Model Serving APIs in Python (2026) URL: https://tokrepo.com/en/workflows/asset-8885a870 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BentoML turns Python model inference code into production REST APIs with auto Docker packaging and dynamic batching. ## What it is BentoML is a Python framework for packaging and serving machine learning models as production-ready REST APIs. You decorate a Python class with `@bentoml.service` and methods with `@bentoml.api`, and Bento …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8885a870) --- # DSPy: Program LLMs Instead of Prompting in 2026 URL: https://tokrepo.com/en/workflows/asset-88a2e60f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DSPy lets you write modular AI programs and auto-optimizes the prompts behind them. ## What it is DSPy is a Python framework that replaces manual prompt engineering with programmatic modules. Instead of writing fragile prompt strings, you define typed signatures (input/output fields), compose modules i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-88a2e60f) --- # Fish Speech: Multilingual TTS for 80+ Languages (2026) URL: https://tokrepo.com/en/workflows/asset-88c15e9c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fish Speech is an open-source TTS system supporting 80+ languages with a 4B parameter model, voice cloning, and emotional control via 15K+ expression tags. ## What it is Fish Speech is an open-source text-to-speech system that supports over 80 languages. It uses a 4B parameter dual-AR (autoregressive) model architecture for high-quality speech synthesis. Key features inclu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-88c15e9c) --- # LLM Gateway Comparison: Proxy AI Requests in 2026 URL: https://tokrepo.com/en/workflows/asset-88ca6b84 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Compare LLM gateways like LiteLLM, Portkey, and OpenRouter for unified API routing and cost control. ## What it is This comparison covers the leading LLM gateway and proxy tools that sit between your application and LLM providers. Gateways like LiteLLM, Portkey, OpenRouter, and Bifrost provide a unified API, automatic …(content truncated, full version at https://tokrepo.com/en/workflows/asset-88ca6b84) --- # Uptime Kuma: Self-Hosted Monitoring Dashboard in 2026 URL: https://tokrepo.com/en/workflows/asset-88e260be Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Uptime Kuma monitors your services via HTTP/TCP/DNS and alerts through 90+ notification channels, all self-hosted. ## What it is Uptime Kuma is a self-hosted monitoring tool that tracks the availability of your HTTP endpoints, TCP ports, DNS records, Docker containers, and more. It provides a clean dashboard showing uptime percentag …(content truncated, full version at https://tokrepo.com/en/workflows/asset-88e260be) --- # Claude Code Security Auditor: OWASP Scan (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8929b029 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that scans your codebase for OWASP top 10 issues, CVEs, leaked secrets, and security anti-patterns. ## What it is This is a security-focused Claude Code agent that audits your codebase for vulnerabilities. It checks for OWASP top 10 issues, scans dependencies for known CVEs, detects leaked secrets, and verifies compli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8929b029) --- # dbt: Data Build Tool for SQL Transformations (2026) URL: https://tokrepo.com/en/workflows/asset-894f7271 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: dbt lets analytics engineers write modular SQL with tests, docs, and dependency management. ## What it is dbt (data build tool) turns SQL into a software-engineering discipline for the analytics layer of your data warehouse. Analytics engineers write modular SELECT statements, and dbt compiles them into views, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-894f7271) --- # Sentrux: Architectural Feedback Sensor for AI (2026) URL: https://tokrepo.com/en/workflows/asset-89c31522 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sentrux monitors code quality in real time and feeds structured feedback to AI coding agents. ## What it is Sentrux is a real-time architectural sensor written in pure Rust that helps AI coding agents close the feedback loop for code quality improvement. It monitors your codebase for architectural patterns, comp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-89c31522) --- # React Hook Form: Performant Form Validation in 2026 URL: https://tokrepo.com/en/workflows/asset-89ca2f75 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: React Hook Form leverages uncontrolled inputs and refs to minimize re-renders, making it the fastest React forms library. ## What it is React Hook Form is a form library for React that uses uncontrolled inputs and refs instead of controlled state. This architectural choice means the parent component does not re-render on every keystroke, m …(content truncated, full version at https://tokrepo.com/en/workflows/asset-89ca2f75) --- # Bruno: Open-Source API Testing IDE in 2026 URL: https://tokrepo.com/en/workflows/asset-89ca3775 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bruno stores API collections as plain text files so they version-control with Git. ## What it is Bruno is an open-source IDE designed for exploring and testing APIs. It serves as a lightweight, offline-first alternative to Postman and Insomnia. The key differentiator is that Bruno stores collections a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-89ca3775) --- # Motion (Framer Motion): React Animation Library (2026) URL: https://tokrepo.com/en/workflows/asset-89ca3afc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Motion provides declarative, hardware-accelerated animations for React with gestures and layouts. ## What it is Motion (formerly Framer Motion) is a modern animation library for React and vanilla JavaScript. It provides a simple declarative API for hardware-accelerated transforms, gesture recognition, layout animati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-89ca3afc) --- # Lexical: Rich Text Editor Framework by Meta 2026 URL: https://tokrepo.com/en/workflows/asset-89ca3d82 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lexical is Meta's extensible text editor framework providing reliability, accessibility, and performance for modern web apps. ## What it is Lexical is an extensible text editor framework from Meta. It provides the core editor engine and a plugin system for building rich text editors with excellent reliability, accessibility, and performance. L …(content truncated, full version at https://tokrepo.com/en/workflows/asset-89ca3d82) --- # UnoCSS: On-Demand Atomic CSS Engine for Web Dev (2026) URL: https://tokrepo.com/en/workflows/asset-89cabb3a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: UnoCSS generates atomic CSS on demand with customizable presets, zero config, and sub-millisecond build performance. ## What it is UnoCSS is an instant on-demand atomic CSS engine inspired by Tailwind CSS and Windi CSS. Rather than shipping a fixed set of utility classes, UnoCSS generates only the CSS you actually use, at build time, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-89cabb3a) --- # MCP Reference Servers: Official Anthropic Collection (2026) URL: https://tokrepo.com/en/workflows/asset-8a28360d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official MCP server implementations by Anthropic covering filesystem, git, memory, fetch, and more. ## What it is MCP Reference Servers are the official server implementations published by Anthropic for the Model Context Protocol (MCP). They include production-ready servers for filesystem access, Git operations, persi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8a28360d) --- # Helicone: Open-Source LLM Observability Platform (2026) URL: https://tokrepo.com/en/workflows/asset-8a35faad Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Helicone adds logging, cost tracking, caching, and prompt versioning to any LLM with one line. ## What it is Helicone is an open-source LLM observability platform that sits between your application and any LLM provider. With a single line of code, you get request logging, cost tracking, caching, rate limiting, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8a35faad) --- # Griptape: AI Agent Framework with Cloud Deploy (2026) URL: https://tokrepo.com/en/workflows/asset-8a861bba Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Griptape provides structured agent workflows with built-in memory, tools, and a cloud platform for deployment. ## What it is Griptape is a Python framework for building AI agents with structured workflows, built-in memory, and tool integration. It also provides Griptape Cloud, a deployment platform for running agents in producti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8a861bba) --- # Argo Workflows: Kubernetes-Native Workflow Engine 2026 URL: https://tokrepo.com/en/workflows/asset-8b727db1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Argo Workflows orchestrates parallel jobs on Kubernetes by modeling pipelines as DAGs with container steps. ## What it is Argo Workflows is a CNCF-graduated workflow engine for orchestrating parallel jobs on Kubernetes. It models data pipelines, CI jobs, batch processing, and ML training as directed acyclic graphs (DAGs) wher …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8b727db1) --- # Concourse: Container-Native CI/CD Pipelines (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8c85c9b7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Concourse runs every CI/CD task in an isolated container with declarative YAML pipelines and explicit dependencies. ## What it is Concourse is an open-source CI/CD system where every task runs in its own OCI container. Pipelines are defined in declarative YAML, and the resource model makes dependencies between jobs explicit and repro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8c85c9b7) --- # Elasticsearch: Distributed Search and Analytics (2026) URL: https://tokrepo.com/en/workflows/asset-8cbbd0e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Elasticsearch provides real-time full-text search, analytics, and log aggregation at petabyte scale. ## What it is Elasticsearch is a distributed search and analytics engine built on Apache Lucene. It provides near-real-time full-text search, structured search, analytics, and log aggregation across petabytes of data. I …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8cbbd0e8) --- # CRI-O: Lightweight Container Runtime for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-8cc08d53 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CRI-O is a lightweight OCI container runtime built specifically for Kubernetes CRI. ## What it is CRI-O is an OCI-compatible container runtime designed specifically for Kubernetes. It implements the Container Runtime Interface (CRI) with a minimal footprint, providing a stable and secure alternative to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8cc08d53) --- # Apache Spark: Unified Analytics Engine Guide 2026 URL: https://tokrepo.com/en/workflows/asset-8cd9fbc0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Spark provides in-memory computing for batch processing, SQL, ML, and streaming. ## What it is Apache Spark is the most widely used engine for large-scale data processing. It provides in-memory computing for batch processing, SQL queries, machine learning, graph processing, and streaming through a u …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8cd9fbc0) --- # Cursor Rules MDC Generator from Docs in 2026 URL: https://tokrepo.com/en/workflows/asset-8ced00e7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Generate Cursor .mdc rule files for any library automatically using Exa semantic search and LLM extraction. ## What it is Cursor Rules MDC Generator is a Python tool that creates Cursor AI rule files (.mdc) for any programming library. It uses Exa semantic search to find documentation, best practices, and coding patterns for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8ced00e7) --- # Build Your Own MCP Server: Step-by-Step Guide 2026 URL: https://tokrepo.com/en/workflows/asset-8cf17e75 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Step-by-step guide to building custom MCP servers with TypeScript or Python SDKs for extending AI agent capabilities. ## What it is This is a comprehensive guide to building a custom Model Context Protocol (MCP) server from scratch. It covers the MCP protocol fundamentals, TypeScript and Python SDK usage, tool definition patterns, reso …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8cf17e75) --- # Apache Flink: Stream Processing Framework Guide (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8cf8efc6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Flink processes unbounded data streams with exactly-once semantics, low latency, and high throughput. ## What it is Apache Flink is the leading open-source framework for stateful stream processing. It processes unbounded data streams with exactly-once semantics, low latency, and high throughput. Flink handles both strea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8cf8efc6) --- # OpenCost: Real-Time Kubernetes Cost Monitoring in 2026 URL: https://tokrepo.com/en/workflows/asset-8d0547be Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CNCF sandbox project providing real-time Kubernetes cost allocation by namespace, pod, and label. ## What it is OpenCost is a CNCF sandbox project that monitors and allocates Kubernetes infrastructure costs in real time. It gives teams visibility into cluster spending broken down by namespace, pod, deployment, and c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8d0547be) --- # EMQX: Scalable MQTT Broker for IoT in 2026 URL: https://tokrepo.com/en/workflows/asset-8d172897 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: EMQX is a high-performance open-source MQTT broker that handles massive concurrent connections for IoT platforms. ## What it is EMQX is an open-source MQTT message broker designed for large-scale IoT deployments. It implements MQTT 5.0 and 3.1.1 protocols and is built on the Erlang/OTP platform, which gives it strong concurrency an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8d172897) --- # Apache Pulsar: Cloud-Native Messaging and Streaming (2026) URL: https://tokrepo.com/en/workflows/asset-8d354adf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Pulsar unifies messaging and streaming in one platform with multi-tenancy, geo-replication, and tiered storage. ## What it is Apache Pulsar is a cloud-native distributed messaging and streaming platform that combines the capabilities of traditional message queues (like RabbitMQ) with event streaming (like Kafka) in a single syste …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8d354adf) --- # OpenSearch: Search and Analytics Suite (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8d537661 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenSearch provides full-text search, log analytics, and observability under Apache-2.0 with no feature restrictions. ## What it is OpenSearch is an open-source search and analytics suite forked from Elasticsearch 7.10. It provides full-text search, log analytics, observability dashboards, and security analytics. The project is maintai …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8d537661) --- # Redpanda: Kafka-Compatible Streaming Without JVM 2026 URL: https://tokrepo.com/en/workflows/asset-8d719c12 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Redpanda is a C++ Kafka-compatible streaming platform that eliminates JVM and ZooKeeper dependencies while lowering latency. ## What it is Redpanda is a streaming data platform written in C++ that provides full Kafka API compatibility. It is a drop-in replacement for Apache Kafka that eliminates the JVM, ZooKeeper, and the operational complex …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8d719c12) --- # Garnet: Microsoft Research Cache Store Guide (2026) URL: https://tokrepo.com/en/workflows/asset-8d8fdb8c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Garnet is a Microsoft Research cache-store offering Redis compatibility, strong performance, and .NET cross-platform support. ## What it is Garnet is a remote cache-store from Microsoft Research that offers strong performance, scalability, and Redis protocol compatibility. Written in C#, it leverages the .NET runtime for cross-platform support …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8d8fdb8c) --- # ZeroMQ: High-Performance Asynchronous Messaging (2026) URL: https://tokrepo.com/en/workflows/asset-8dae1416 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ZeroMQ provides brokerless message passing with pub/sub, request/reply, and push/pull patterns. ## What it is ZeroMQ (0MQ) is a high-performance asynchronous messaging library for distributed applications. It provides socket-like abstractions for common message passing patterns -- publish/subscribe, request/reply, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8dae1416) --- # Docling: AI Document Parsing by IBM for LLMs (2026) URL: https://tokrepo.com/en/workflows/asset-8dc956cc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docling converts PDFs, DOCX, PPTX, and images into structured Markdown or JSON with OCR and table extraction. ## What it is Docling is an open-source document AI library by IBM that parses PDFs, DOCX, PPTX, and images into structured Markdown or JSON. It includes OCR for scanned documents, table extraction with structure preser …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8dc956cc) --- # Centrifugo: Scalable Real-Time Messaging Server (2026) URL: https://tokrepo.com/en/workflows/asset-8dcc33b8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Centrifugo adds scalable real-time messaging to any application via WebSocket, SSE, and HTTP streaming with Redis or Nats backends. ## What it is Centrifugo is a scalable real-time messaging server that adds live update capabilities to any application regardless of its tech stack. It handles WebSocket connections, Server-Sent Events (SSE), HTTP stre …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8dcc33b8) --- # Dashy: Self-Hosted Dashboard for Your Homelab (2026) URL: https://tokrepo.com/en/workflows/asset-8e0fea0e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dashy organizes your homelab services, bookmarks, and widgets in a customizable dashboard. ## What it is Dashy is a highly customizable, self-hosted dashboard application. It organizes your services, bookmarks, monitoring widgets, and quick-access links in a single interface. You configure everything in a YAM …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e0fea0e) --- # AppFlowy: Open-Source Notion Alternative You Control in 2026 URL: https://tokrepo.com/en/workflows/asset-8e316c8a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Local-first, privacy-focused workspace with docs, databases, kanban, calendars, and AI built in Flutter+Rust. ## What it is AppFlowy is an open-source workspace that rebuilds Notion's core features on your own hardware. It provides documents, databases, kanban boards, calendars, and an AI assistant, all in a local-first archite …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e316c8a) --- # DBeaver: Universal Database Tool for Every Developer (2026) URL: https://tokrepo.com/en/workflows/asset-8e5054fc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DBeaver is a free SQL client that connects to MySQL, PostgreSQL, MongoDB, Snowflake, BigQuery, and 80+ other databases. ## What it is DBeaver is a free, open-source universal database management tool. It connects to virtually any database: MySQL, PostgreSQL, SQL Server, Oracle, SQLite, MongoDB, ClickHouse, Snowflake, BigQuery, and 80+ ot …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e5054fc) --- # Okteto: Kubernetes Dev Environments with Hot Reload 2026 URL: https://tokrepo.com/en/workflows/asset-8e5b2e31 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Okteto replaces local Docker and Minikube with instant file sync and hot-reload on remote Kubernetes clusters. ## What it is Okteto is a development platform that lets you code locally while your application runs on a real Kubernetes cluster. Instead of maintaining Docker Compose stacks or local Kubernetes setups that drift from …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e5b2e31) --- # mitmproxy: Interactive HTTPS Proxy for Debugging in 2026 URL: https://tokrepo.com/en/workflows/asset-8e6f3652 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: mitmproxy intercepts HTTP/HTTPS traffic for inspection, modification, and replay via terminal, web UI, or Python scripts. ## What it is mitmproxy is a free, open-source interactive HTTP/HTTPS/HTTP2/WebSocket proxy. It sits between your device and the internet, decrypts HTTPS traffic (after CA certificate installation), and displays every r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e6f3652) --- # Pkl: Configuration as Code Language by Apple 2026 URL: https://tokrepo.com/en/workflows/asset-8e845296 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pkl replaces YAML and JSON configuration sprawl with a typed, programmable configuration language by Apple. ## What it is Pkl is a programmable configuration language developed by Apple. It provides typed schemas, validation constraints, templating, and IDE support for configuration files. Instead of writing raw YAML or JSON …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e845296) --- # ShellCheck: Static Analysis for Shell Scripts in 2026 URL: https://tokrepo.com/en/workflows/asset-8e8e1dbb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Static analysis linter for shell scripts that catches unquoted variables, missing error handling, and portability issues. ## What it is ShellCheck is a static analysis tool for shell scripts that catches bugs before they reach production. It detects unquoted variables, missing error handling, portability issues between bash/sh/dash, and do …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8e8e1dbb) --- # direnv: Automatic Environment Switcher for 2026 URL: https://tokrepo.com/en/workflows/asset-8eaceee5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: direnv auto-loads per-project environment variables when you enter a directory. ## What it is direnv is a shell extension that loads and unloads environment variables when you `cd` into a directory. You create an `.envrc` file in your project root, and direnv automatically sets PATH, API keys, lang …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8eaceee5) --- # tig: Text-Mode Git Browser for Terminal in 2026 URL: https://tokrepo.com/en/workflows/asset-8ecbd7e9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: tig gives you an interactive TUI for browsing Git log, blame, diff, and stash views without leaving the terminal. ## What it is tig is a curses-based text-mode interface for Git repositories. It provides interactive views for log history, file blame, diffs, stash lists, and working directory status. Written in C and built on ncurse …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8ecbd7e9) --- # broot: Better Directory Navigation in Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-8eeab944 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: broot gives you an interactive tree view of your filesystem with fuzzy search, git status, previews, and built-in file operations. ## What it is broot is a terminal-based file manager and directory navigator written in Rust. It displays your filesystem as an interactive tree with fuzzy search, built-in file operations (copy, move, delete), git stat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8eeab944) --- # OpenCommit: AI-Powered Git Commit Messages in 2026 URL: https://tokrepo.com/en/workflows/asset-8f087c35 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI tool that auto-generates meaningful git commit messages using Claude, GPT, or Ollama from staged diffs. ## What it is OpenCommit is a CLI tool that analyzes your staged git changes and generates meaningful commit messages using AI. It reads the diff, sends it to an LLM (Claude, GPT, or local models via Ollama), and propos …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8f087c35) --- # grex: Generate Regular Expressions from Examples (2026) URL: https://tokrepo.com/en/workflows/asset-8f0a62b4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: grex takes a list of example strings and automatically generates a regular expression that matches all of them. ## What it is grex is a command-line tool written in Rust that generates regular expressions from user-provided example strings. Instead of manually crafting a regex pattern, you give grex a list of strings you want to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8f0a62b4) --- # sd: Intuitive Find and Replace CLI for 2026 Devs URL: https://tokrepo.com/en/workflows/asset-8f2991f3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: sd is a Rust CLI that replaces sed for find-and-replace with cleaner syntax, no escaping madness, and preview mode. ## What it is sd is a command-line find-and-replace tool written in Rust that serves as a simpler alternative to sed. It takes two arguments -- pattern and replacement -- and handles the common case of text substitution …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8f2991f3) --- # Crawlee: Web Scraping and Automation Library (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8f2c0ae9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Crawlee handles proxy rotation, fingerprints, and anti-bot bypassing so you build reliable scrapers fast. ## What it is Crawlee is a web scraping and browser automation library for Node.js and Python. It handles the hard parts of web scraping: proxy rotation, browser fingerprints, automatic retries, request queuing, auto-sc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8f2c0ae9) --- # watchexec: Run Commands on File Changes (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8f4872e1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: watchexec watches file trees and reruns commands on changes, with .gitignore support and smart debouncing. ## What it is watchexec is a cross-platform file watcher that runs a command whenever files in a directory change. Written in Rust, it provides smart defaults: respecting .gitignore, debouncing rapid changes, and restar …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8f4872e1) --- # LocalStack: AWS Cloud Emulator for Local Dev (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-8fa265fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LocalStack emulates 80+ AWS services in one Docker container for local dev and CI. ## What it is LocalStack is a cloud service emulator that runs inside a single Docker container on your laptop or CI runner. It provides functional implementations of over 80 AWS services including S3, Lambda, DynamoDB, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8fa265fe) --- # SQLAlchemy: Python SQL Toolkit and ORM Guide (2026) URL: https://tokrepo.com/en/workflows/asset-8fa9195c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SQLAlchemy provides both raw SQL expression building and a full ORM for Python database access. ## What it is SQLAlchemy is the most widely used Python database library. It provides two distinct layers: a Core layer with a SQL expression language for building queries programmatically, and an ORM layer with unit of …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8fa9195c) --- # Bazel: Fast Scalable Multi-Language Build System (2026) URL: https://tokrepo.com/en/workflows/asset-8fdadd4b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bazel provides hermetic, reproducible builds across 20+ languages with aggressive caching and parallel execution. ## What it is Bazel is an open-source build and test tool originally developed at Google to manage their monorepo. It builds and tests code across languages like Java, C++, Go, Python, and TypeScript using a unified dep …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8fdadd4b) --- # Anthropic Prompt Engineering Guide: Best Practices (2026) URL: https://tokrepo.com/en/workflows/asset-8fdb8111 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Anthropic's official guide to writing effective prompts for Claude with proven techniques. ## What it is This is Anthropic's official prompt engineering guide for Claude models. It covers system prompts, chain-of-thought reasoning, few-shot examples, XML tag structuring, tool use, and advanced techniques for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-8fdb8111) --- # etcd: Distributed Key-Value Store for K8s (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-90135e1f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: etcd is a strongly consistent, distributed key-value store that powers Kubernetes configuration, service discovery, and coordination. ## What it is etcd is an open-source, strongly consistent, distributed key-value store written in Go. It uses the Raft consensus algorithm to ensure data reliability across a cluster of machines. etcd is the backbone of …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90135e1f) --- # TiDB: Distributed SQL Database MySQL Compatible in 2026 URL: https://tokrepo.com/en/workflows/asset-90136633 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source distributed SQL database with MySQL wire protocol, HTAP, horizontal scaling, and strong consistency. ## What it is TiDB is an open-source, cloud-native, distributed SQL database that supports hybrid transactional and analytical processing (HTAP). It speaks the MySQL wire protocol, so existing MySQL applications can con …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90136633) --- # CockroachDB: Distributed SQL for Global Cloud Apps (2026) URL: https://tokrepo.com/en/workflows/asset-90136870 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CockroachDB provides distributed SQL with PostgreSQL compatibility and multi-region survivability. ## What it is CockroachDB is a distributed SQL database designed for the cloud. Inspired by Google Spanner, it offers serializable transactions, horizontal scale, automatic sharding, and survivability across node, zone, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90136870) --- # InfluxDB: Scalable Time Series Database for Metrics (2026) URL: https://tokrepo.com/en/workflows/asset-90136b66 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: InfluxDB stores and queries time-series data at scale with SQL support, high write throughput, and automatic downsampling. ## What it is InfluxDB is a scalable time series database optimized for metrics, events, and real-time analytics. Version 3.0 is a complete rewrite in Rust built on Apache Arrow columnar storage (via DataFusion), provid …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90136b66) --- # RabbitMQ: Reliable Open-Source Message Broker (2026) URL: https://tokrepo.com/en/workflows/asset-90136d3b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RabbitMQ is a mature open-source message broker implementing AMQP, MQTT, and STOMP for reliable async communication. ## What it is RabbitMQ is one of the most widely deployed open-source message brokers. Built on Erlang/OTP, it implements the Advanced Message Queuing Protocol (AMQP) as its primary protocol and also supports MQTT, STOM …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90136d3b) --- # Together AI Batch Inference Skill for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-90286a47 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This skill teaches Claude Code how to run batch inference on Together AI at up to 50% lower cost. ## What it is This is a skill that teaches AI coding agents how to use Together AI's batch inference API. Instead of making synchronous inference calls one at a time, batch inference lets you submit large volumes of pro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90286a47) --- # Mermaid: Generate Diagrams from Text Like Markdown (2026) URL: https://tokrepo.com/en/workflows/asset-90331916 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mermaid generates flowcharts, sequence diagrams, and more from text definitions in Markdown. ## What it is Mermaid is a JavaScript-based diagramming tool that renders Markdown-inspired text definitions into diagrams and visualizations. It supports flowcharts, sequence diagrams, Gantt charts, class diagrams, ER …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90331916) --- # Typst Typesetting System: LaTeX Alternative in 2026 URL: https://tokrepo.com/en/workflows/asset-9033216a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Typst replaces LaTeX with instant compilation, friendly errors, and a built-in scripting language. ## What it is Typst is a markup-based typesetting system written in Rust, designed as a modern alternative to LaTeX. Created by Martin Haug and Laurenz Maedje as a master thesis project at TU Berlin, Typst compiles docu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9033216a) --- # Nushell: Structured Data Shell Built in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-903323cf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nushell pipelines operate on structured tables and records instead of raw text strings. ## What it is Nushell is a modern shell that treats data as structured tables rather than plain text. Every command outputs structured data (tables, records, lists) that downstream commands can filter, sort, group, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-903323cf) --- # Polars: Blazingly Fast DataFrame Library Written in Rust URL: https://tokrepo.com/en/workflows/asset-903325aa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Polars is a Rust-based DataFrame library with lazy evaluation, multi-threaded execution, and Apache Arrow columnar format for fast data processing. ## What it is Polars is a DataFrame library written in Rust with bindings for Python, Node.js, and R. It uses the Apache Arrow columnar memory format, lazy evaluation with query optimization, and multi-threaded executio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-903325aa) --- # SurrealDB: Multi-Model Database with SurrealQL (2026) URL: https://tokrepo.com/en/workflows/asset-9033274f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SurrealDB unifies relational, document, graph, and time-series models with SurrealQL. ## What it is SurrealDB is a scalable, multi-model database designed for the real-time web. It combines relational, document, graph, and time-series data models in a single database with its own query language called Su …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9033274f) --- # DataHub: Open-Source Data Discovery Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-904ed27e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source metadata platform by LinkedIn for data discovery, governance, and lineage across 50+ sources. ## What it is DataHub is a modern metadata platform originally built inside LinkedIn and now maintained by Acryl Data. It provides a single pane of glass for discovering, governing, and observing data assets across your …(content truncated, full version at https://tokrepo.com/en/workflows/asset-904ed27e) --- # Tidy First: AI Code Refactoring Skill for Agents (2026) URL: https://tokrepo.com/en/workflows/asset-905bfdbf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tidy First teaches AI agents to make small structural tidyings before behavioral changes, following Kent Beck's refactoring philosophy. ## What it is Tidy First is an AI agent skill that encodes Kent Beck's refactoring methodology into a structured set of instructions for AI coding assistants. The core idea: before making a behavioral change to code, co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-905bfdbf) --- # Marimo: Reactive Python Notebook for AI Workflows 2026 URL: https://tokrepo.com/en/workflows/asset-907dd3de Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Next-gen Python notebook with reactive execution, UI elements, and git-friendly .py files. No hidden state. ## What it is Marimo is a reactive Python notebook that eliminates the hidden state problems of Jupyter. Every cell runs as a function, and when you change one cell, all dependent cells re-execute automatically. Noteboo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-907dd3de) --- # Eliza: TypeScript AI Social Agent Framework by elizaOS URL: https://tokrepo.com/en/workflows/asset-90de93bb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Eliza is a TypeScript framework for building autonomous AI agents that operate on Discord, Telegram, Twitter, and Slack with RAG memory and a plugin ecosystem. ## What it is Eliza is a TypeScript framework for building autonomous AI agents that operate across social platforms. It supports Discord, Telegram, Twitter, and Slack as communication channels. Agents are defined throu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-90de93bb) --- # /commit-push-pr Slash Command: One-Shot Commit Push PR URL: https://tokrepo.com/en/workflows/asset-91a8fec2 Type: featured-workflow Updated: 2026-04-30T11:16:39.735126 > **TL;DR**: /commit-push-pr is a Claude Code slash command that runs git status, explicit staging, a conventional-commit message, push with upstream, and gh pr create in one shot. It is inspired by Boris Cherny's documented setup and ships the same safety contract: never git add -A, never amend a published commit, never --no-verify, and stop before pushing to main, force-pushing, or staging more than 20 files at once. ## What /commit-push-pr Does in One Shot `/commit-push-pr` is a community-written Claude Code slash command that compresses the daily ship sequence — `git status`, `git diff`, `git add `, `git commit`, `git push`, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-91a8fec2) --- # Rivet: Visual AI Prompt Workflow IDE (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-9202a5c4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Drag-and-drop visual IDE for building LLM prompt chains with nodes for conditionals, loops, and real-time execution preview. ## What it is Rivet is a visual development environment for designing AI prompt workflows. Instead of writing prompt chains in code, you build them by dragging and dropping nodes onto a canvas. Nodes represent LLM calls …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9202a5c4) --- # Gemini CLI: Google AI Coding Agent in Terminal 2026 URL: https://tokrepo.com/en/workflows/asset-926633bc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI brings Google's Gemini models to the terminal for AI-assisted coding, file editing, and command execution. ## What it is Gemini CLI is Google's command-line AI coding agent. It lets you chat with Gemini models directly in the terminal, ask questions about your codebase, edit files, run shell commands, and generate code. It c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-926633bc) --- # Devin Cursorrules: Turn Cursor into an AI Engineer (2026) URL: https://tokrepo.com/en/workflows/asset-92824589 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A .cursorrules config adding Devin-like planning and self-correction to Cursor. ## What it is Devin Cursorrules is a .cursorrules configuration file that transforms Cursor (the AI code editor) into a more autonomous coding agent. It adds Devin-like capabilities: automated task planning, self-correc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92824589) --- # Meilisearch: Fast Open Source Search Engine in 2026 URL: https://tokrepo.com/en/workflows/asset-929a9b01 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Meilisearch provides instant, typo-tolerant search with hybrid keyword and semantic capabilities via a simple REST API. ## What it is Meilisearch is an open-source search engine designed for instant, typo-tolerant search results. It provides a REST API for indexing and querying documents with sub-50ms response times. Meilisearch supports …(content truncated, full version at https://tokrepo.com/en/workflows/asset-929a9b01) --- # Filesystem MCP: Local File Access for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-92b8baf2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Filesystem MCP gives AI agents sandboxed read/write access to local files via the MCP protocol. ## What it is Filesystem MCP is the official Model Context Protocol server for local file access. It gives AI agents like Claude Code safe, scoped access to read, write, search, and manage files within a specified root …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92b8baf2) --- # Ansible: Agentless IT Automation Platform Guide (2026) URL: https://tokrepo.com/en/workflows/asset-92bab097 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ansible automates configuration management, deployment, and provisioning via SSH with YAML playbooks. ## What it is Ansible is an agentless IT automation platform for configuration management, application deployment, and infrastructure provisioning. It connects to managed nodes via SSH, requires no agent installation on …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92bab097) --- # Self-Hosted AI Starter Kit: Local AI with n8n (2026) URL: https://tokrepo.com/en/workflows/asset-92d3cc62 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docker Compose template that bootstraps a local AI stack with n8n workflow automation, Ollama, Qdrant, and PostgreSQL. ## What it is The Self-Hosted AI Starter Kit is a Docker Compose template created by n8n that sets up a complete local AI environment. It bundles n8n (workflow automation), Ollama (local LLM inference), Qdrant (vector d …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92d3cc62) --- # Typesense: Fast Typo-Tolerant Search Engine in 2026 URL: https://tokrepo.com/en/workflows/asset-92da8a8c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Typesense delivers sub-50ms typo-tolerant search with faceting, geo search, and vector search out of the box. ## What it is Typesense is an open-source search engine built in C++ that delivers sub-50ms search results with typo tolerance out of the box. It provides faceted filtering, geo search, vector/semantic search, and a Jav …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92da8a8c) --- # k3sup: Bootstrap K3s Clusters Over SSH in 2026 URL: https://tokrepo.com/en/workflows/asset-92f4758c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: k3sup installs K3s on remote servers via SSH in one command, no complex setup scripts needed. ## What it is k3sup (pronounced 'ketchup') is a lightweight CLI that installs K3s on any remote server over SSH with a single command. It targets developers and homelab operators who want fast Kubernetes cluster creatio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92f4758c) --- # Grafana Loki Log Aggregation System Guide 2026 URL: https://tokrepo.com/en/workflows/asset-92fa7c1f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Loki indexes log metadata instead of full text, making it far cheaper than traditional log systems like ELK. ## What it is Grafana Loki is a horizontally scalable, multi-tenant log aggregation system inspired by Prometheus. Built by Grafana Labs, Loki takes a distinct approach to log management: it indexes only labels (metadat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-92fa7c1f) --- # Instructor: Structured LLM Outputs with Pydantic (2026) URL: https://tokrepo.com/en/workflows/asset-9301dfb7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Instructor uses Pydantic models to extract structured, validated JSON from any LLM including OpenAI, Anthropic, and local models. ## What it is Instructor is a Python library that patches LLM client libraries to return structured data validated by Pydantic models. Instead of parsing raw text or hoping for valid JSON, you define a Pydantic schema a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9301dfb7) --- # HashiCorp Consul: Service Discovery and Mesh in 2026 URL: https://tokrepo.com/en/workflows/asset-931a6bb7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Consul provides service discovery, health checking, KV storage, and service mesh with mTLS for microservices. ## What it is Consul is a distributed service networking platform by HashiCorp. It provides service discovery, health checking, key-value storage, and a full service mesh with mutual TLS (mTLS) for microservices. Consul …(content truncated, full version at https://tokrepo.com/en/workflows/asset-931a6bb7) --- # Claude Squad: Multi-Agent Session Manager in 2026 URL: https://tokrepo.com/en/workflows/asset-935294e1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Squad lets you run multiple Claude Code or Aider sessions simultaneously with tmux-based management and status tracking. ## What it is Claude Squad is a terminal multiplexer purpose-built for AI coding agents. It lets you run multiple Claude Code, Aider, or other AI coding sessions in parallel, each in its own tmux pane with independent g …(content truncated, full version at https://tokrepo.com/en/workflows/asset-935294e1) --- # RAPTOR: Security Research Agent for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-938e0073 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RAPTOR automates offensive and defensive security research using Claude Code for vulnerability discovery. ## What it is RAPTOR is an autonomous offensive and defensive security framework built on Claude Code. It performs static analysis, binary fuzzing, vulnerability discovery, exploit generation, and patch development. RAP …(content truncated, full version at https://tokrepo.com/en/workflows/asset-938e0073) --- # DBHub: Universal Database MCP Server Zero Deps (2026) URL: https://tokrepo.com/en/workflows/asset-943f4349 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DBHub connects AI agents to Postgres, MySQL, SQLite, and more with just two MCP tools. ## What it is DBHub is a database MCP server that connects AI agents to PostgreSQL, MySQL, MariaDB, SQL Server, and SQLite databases. It exposes only two MCP tools, keeping the interface minimal and token-efficient. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-943f4349) --- # Bun: All-in-One JavaScript Runtime and Toolkit (2026) URL: https://tokrepo.com/en/workflows/asset-944f2eb4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bun combines a JavaScript runtime, bundler, test runner, and package manager into one tool that runs 4x faster than Node.js. ## What it is Bun is an all-in-one JavaScript and TypeScript toolkit: runtime, bundler, test runner, and package manager combined into a single binary. Written in Zig with the JavaScriptCore engine (from Safari), it run …(content truncated, full version at https://tokrepo.com/en/workflows/asset-944f2eb4) --- # Mem0: Long-Term Memory Layer for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-952ce6d3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mem0 gives AI agents persistent memory that stores user preferences, context, and past interactions across sessions. ## What it is Mem0 is a memory layer designed for AI agents and assistants. It stores user preferences, conversational context, and learned information across sessions so that AI applications can remember past interacti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-952ce6d3) --- # Miniflux: Minimalist Self-Hosted Feed Reader 2026 URL: https://tokrepo.com/en/workflows/asset-95476ca4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Miniflux is a fast, self-hosted RSS reader written in Go that prioritizes simplicity and readable content over feature bloat. ## What it is Miniflux is an opinionated, minimalist RSS and Atom feed reader written in Go. It strips away the complexity of full-featured feed readers and focuses on three things: fast feed fetching, clean content ren …(content truncated, full version at https://tokrepo.com/en/workflows/asset-95476ca4) --- # Remotion: Transcribe Audio to Captions (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-957e8918 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Use @remotion/install-whisper-cpp to transcribe audio and generate timed captions for Remotion videos. ## What it is This is a Remotion skill rule for transcribing audio files to generate timed captions in programmatic video projects. It uses the `@remotion/install-whisper-cpp` package, which bundles Whisper.cpp for loca …(content truncated, full version at https://tokrepo.com/en/workflows/asset-957e8918) --- # AI Agent Design Patterns: Architecture Guide 2026 URL: https://tokrepo.com/en/workflows/asset-958852ab Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A catalog of proven design patterns for building AI agents, including ReAct, Plan-and-Execute, Reflection, and Multi-Agent architectures. ## What it is This resource is a curated catalog of design patterns for building AI agents. It covers the architectural approaches that have emerged as standard practice: ReAct (reason + act), Plan-and-Execute, Reflecti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-958852ab) --- # Kubebuilder: Build Kubernetes Operators in Go (2026) URL: https://tokrepo.com/en/workflows/asset-95910ea9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubebuilder scaffolds an idiomatic Go project with CRD generation, RBAC manifests, and envtest so you can focus on reconciler logic. ## What it is Kubebuilder is the official SIG-API-Machinery SDK for authoring Kubernetes operators in Go. It wraps controller-runtime, controller-gen, and the Kubernetes client libraries into an opinionated project layo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-95910ea9) --- # Quivr: Opinionated RAG Framework for Any LLM in 2026 URL: https://tokrepo.com/en/workflows/asset-96223597 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Opinionated RAG framework that builds a queryable knowledge brain from documents, supporting any LLM backend. ## What it is Quivr is a Python RAG (retrieval-augmented generation) framework that takes an opinionated approach to building knowledge bases from documents. You feed it files (PDFs, text, markdown, and more), and Quivr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-96223597) --- # Nanobrowser: AI Web Automation Chrome Extension (2026) URL: https://tokrepo.com/en/workflows/asset-96b4872e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nanobrowser is an open-source Chrome extension that automates web tasks using multi-agent AI with natural language instructions. ## What it is Nanobrowser is an open-source Chrome extension that brings multi-agent AI to web automation. Instead of writing scripts or recording macros, you describe what you want done in natural language and the AI a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-96b4872e) --- # Sealed Secrets: Encrypted Kubernetes Secrets (2026) URL: https://tokrepo.com/en/workflows/asset-96d329e7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bitnami Labs controller and CLI for committing encrypted Kubernetes secrets to Git. Cluster-side decryption into real Secrets at apply time. ## What it is Sealed Secrets is a Kubernetes controller and CLI tool from Bitnami Labs that enables GitOps-safe secret management. It lets you encrypt Kubernetes Secrets into SealedSecret resources that are safe to comm …(content truncated, full version at https://tokrepo.com/en/workflows/asset-96d329e7) --- # Mem0: Persistent Memory Layer for AI Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-96da1f40 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mem0 gives AI apps persistent memory across sessions with simple add/search APIs. ## What it is Mem0 (pronounced 'memo') is a memory infrastructure layer for AI applications. It automatically extracts, stores, and retrieves relevant facts and preferences from conversations, giving AI agents persisten …(content truncated, full version at https://tokrepo.com/en/workflows/asset-96da1f40) --- # NetBox: Source of Truth for Network Automation (2026) URL: https://tokrepo.com/en/workflows/asset-9741639f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NetBox models devices, IP addresses, circuits, racks, and cables as the single source of truth for network automation. ## What it is NetBox is an open-source infrastructure resource modeling application that serves as the source of truth for modern network automation. It provides DCIM (Data Center Infrastructure Management) and IPAM (IP …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9741639f) --- # Trino: Distributed SQL Query Engine Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-976e6a2f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Federated SQL engine that queries S3, Iceberg, Delta, MySQL, Postgres, Kafka, and dozens more data sources with ANSI SQL at scale. ## What it is Trino (formerly PrestoSQL) is a fast distributed SQL query engine designed for interactive analytics on data lakes and federated data sources. It executes ANSI SQL queries across Amazon S3, Apache Iceberg, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-976e6a2f) --- # Apache SkyWalking: Distributed APM Platform 2026 URL: https://tokrepo.com/en/workflows/asset-977a1d0a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SkyWalking unifies distributed tracing, metrics, logs, and eBPF profiling for microservices observability. ## What it is Apache SkyWalking is an open-source Application Performance Monitoring (APM) platform that unifies distributed tracing, metrics collection, log aggregation, and eBPF-based profiling. It supports auto-instr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-977a1d0a) --- # Portkey AI Gateway: Unified API for 200+ LLMs (2026) URL: https://tokrepo.com/en/workflows/asset-978ebe61 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Portkey routes requests across 200+ LLMs with load balancing, fallback, caching, and guardrails. ## What it is Portkey AI Gateway is a unified API layer that sits between your application and LLM providers. It routes requests across 200+ models from OpenAI, Anthropic, Google, Mistral, and others through a single AP …(content truncated, full version at https://tokrepo.com/en/workflows/asset-978ebe61) --- # Pydantic AI: Production Agent Framework for 2026 URL: https://tokrepo.com/en/workflows/asset-97ebc107 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pydantic AI builds type-safe AI agents with dependency injection and multi-model support. ## What it is Pydantic AI is a Python framework for building production-ready AI agents with type-safe structured outputs, dependency injection, and multi-model support. Created by the team behind Pydantic, it leverages …(content truncated, full version at https://tokrepo.com/en/workflows/asset-97ebc107) --- # CrewAI: Multi-Agent Orchestration Framework (2026) URL: https://tokrepo.com/en/workflows/asset-97fce2da Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CrewAI lets you define AI agents with roles, goals, and tools, then orchestrates their collaboration on complex tasks. ## What it is CrewAI is a Python framework for building multi-agent systems where each agent has a defined role, goal, and set of tools. Agents collaborate on complex tasks through a crew structure that manages delegati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-97fce2da) --- # Kubeflow: Machine Learning Toolkit for Kubernetes Clusters URL: https://tokrepo.com/en/workflows/asset-984a00dd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubeflow deploys ML pipelines, notebook servers, distributed training, hyperparameter tuning, and model serving on any Kubernetes cluster. ## What it is Kubeflow is an open-source platform for deploying, orchestrating, and managing machine learning workflows on Kubernetes. It provides Jupyter notebook servers, ML pipeline orchestration (Kubeflow Pipelines) …(content truncated, full version at https://tokrepo.com/en/workflows/asset-984a00dd) --- # MinerU: Extract LLM-Ready Data from Documents (2026) URL: https://tokrepo.com/en/workflows/asset-985fe0df Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MinerU converts PDFs and scans into clean Markdown or JSON for RAG and LLM pipelines. ## What it is MinerU is an open-source document extraction tool that converts PDFs, scanned images, and complex documents into clean Markdown or structured JSON. It handles tables, formulas, images, and multi-column lay …(content truncated, full version at https://tokrepo.com/en/workflows/asset-985fe0df) --- # Spring AI: AI Engineering for Java Developers (2026) URL: https://tokrepo.com/en/workflows/asset-98ae1961 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Spring AI provides Spring-friendly APIs for building AI applications in Java with chat, embeddings, RAG, and function calling. ## What it is Spring AI is a framework that brings AI engineering capabilities to Java and Spring Boot applications. It provides Spring-friendly APIs for chat completions, embeddings, retrieval-augmented generation (RAG …(content truncated, full version at https://tokrepo.com/en/workflows/asset-98ae1961) --- # Ollama: Run LLMs Locally with One Command (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-98b30827 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ollama runs Llama 3, Mistral, and 100+ LLMs locally via one command with an OpenAI-compatible API and zero cloud costs. ## What it is Ollama is an open-source tool that downloads, manages, and serves large language models on your local machine. Run `ollama run llama3.1` and you have a local chatbot — no API keys, no cloud provider, no da …(content truncated, full version at https://tokrepo.com/en/workflows/asset-98b30827) --- # Awesome Claude Skills: 50+ Verified Agent Skills (2026) URL: https://tokrepo.com/en/workflows/asset-9939ef92 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated, community-driven collection of 50+ verified Claude Code skills across 11 categories. ## What it is Awesome Claude Skills is a curated collection of over 50 verified Claude Code skills organized across 11 categories: document processing, testing, debugging, security, media creation, data analysis, DevOps …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9939ef92) --- # Remotion Calculate Metadata: Dynamic Video Props (2026) URL: https://tokrepo.com/en/workflows/asset-994d2298 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Use calculateMetadata to dynamically set Remotion composition duration, dimensions, and props based on input data. ## What it is The Calculate Metadata rule is part of the official Remotion Agent Skill for programmatic video creation in React. It teaches AI agents how to use the `calculateMetadata` API to dynamically set composition …(content truncated, full version at https://tokrepo.com/en/workflows/asset-994d2298) --- # Supergateway: Bridge MCP Servers via SSE and HTTP (2026) URL: https://tokrepo.com/en/workflows/asset-99cc4769 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Supergateway converts MCP stdio servers to SSE/HTTP, enabling remote access and multi-client sharing. ## What it is Supergateway is a bridge that converts any MCP server using stdio transport into an SSE (Server-Sent Events) or HTTP server. This enables remote access to local MCP servers, cloud deployment, and sharing a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-99cc4769) --- # AutoGen: Multi-Agent Conversation Framework (2026) URL: https://tokrepo.com/en/workflows/asset-99cd6575 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AutoGen is a Microsoft framework where multiple AI agents converse and collaborate to solve tasks with tool use and human feedback. ## What it is AutoGen is an open-source framework by Microsoft for building multi-agent conversational AI systems. Agents communicate through structured conversations to divide and solve complex tasks. The framework sup …(content truncated, full version at https://tokrepo.com/en/workflows/asset-99cd6575) --- # LobeChat: Open-Source AI Chat Framework and Agent Hub (2026) URL: https://tokrepo.com/en/workflows/asset-99fd3d91 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LobeChat is a self-hostable AI chat framework supporting 70+ model providers with multi-agent collaboration and plugins. ## What it is LobeChat is an open-source AI chat framework built with Next.js that provides a polished chat interface, multi-agent collaboration, and a plugin marketplace. It supports over 70 model providers including O …(content truncated, full version at https://tokrepo.com/en/workflows/asset-99fd3d91) --- # Dagster: Cloud-Native Data Pipeline Orchestrator (2026) URL: https://tokrepo.com/en/workflows/asset-9ad9a1ce Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dagster orchestrates data pipelines using declarative assets with lineage, testing, and observability. ## What it is Dagster is an open-source data pipeline orchestrator built around the concept of software-defined assets. Instead of defining tasks and their execution order, you define the data assets your pipeline produ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9ad9a1ce) --- # Tiptap: Headless Rich Text Editor Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-9ae98130 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tiptap is a headless, modular rich text editor on ProseMirror for React and Vue. ## What it is Tiptap is a headless rich text editor framework built on top of ProseMirror. It provides the editing logic -- content model, input rules, keyboard shortcuts, collaboration -- while letting you build your o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9ae98130) --- # Zonos: Open-Weight Multilingual TTS Guide 2026 URL: https://tokrepo.com/en/workflows/asset-9b6992d2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zonos generates natural speech from text with zero-shot voice cloning across 5 languages and fine-grained emotion control. ## What it is Zonos is an open-weight text-to-speech model by Zyphra, trained on more than 200,000 hours of multilingual speech data. It generates natural-sounding speech from text with zero-shot voice cloning from brie …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9b6992d2) --- # Renovate: Automated Dependency Update Bot Guide (2026) URL: https://tokrepo.com/en/workflows/asset-9b8e21a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Renovate scans repos for outdated dependencies and opens pull requests with version bumps automatically. ## What it is Renovate is an open-source tool that automates dependency updates by scanning repositories for outdated packages and opening pull requests with the latest versions. Unlike simple bots, it supports 90+ pack …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9b8e21a5) --- # code-architect Subagent: Claude Code Architecture Review URL: https://tokrepo.com/en/workflows/asset-9baa69dd Type: featured-workflow Updated: 2026-04-30T11:16:39.790767 > **TL;DR**: code-architect is a Claude Code subagent that runs design-level review on diffs over 200 lines, scoring cohesion, coupling, dependency direction, and testability with one to five stars plus up to five file and line level risks with mitigations before you ever open a pull request, and the same subagent auto-declines tiny diffs under 50 lines that touch a single file. ## What code-architect Does Before You Open a Pull Request code-architect is a community-written Claude Code subagent that performs design-level review on non-trivial diffs before a human reviewer ever sees them. It is …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9baa69dd) --- # Claude Official Skill: Doc Co-Authoring Workflow (2026) URL: https://tokrepo.com/en/workflows/asset-9bef652e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude official skill that guides structured co-authoring of docs, proposals, and technical specs. ## What it is Doc-coauthoring is an official Claude Code skill from Anthropic that provides a structured three-stage workflow for collaborative document creation. It guides users through Context Gathering, Refinement an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9bef652e) --- # Jina Reader: AI-Friendly Web Content Extraction (2026) URL: https://tokrepo.com/en/workflows/asset-9c6cbf5f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Free API that converts any URL to clean markdown by stripping ads, navigation, and clutter. Built for RAG pipelines and AI agent web research. ## What it is Jina Reader is a web content extraction service that converts any URL into clean, AI-friendly markdown. The free API at r.jina.ai strips advertisements, navigation menus, sidebars, and clutter, returning o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9c6cbf5f) --- # Marimo: Reactive Python Notebook Replacement (2026) URL: https://tokrepo.com/en/workflows/asset-9d2b4e76 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Marimo replaces Jupyter with reactive execution, git-friendly .py files, and one-command deployment as a web app. ## What it is Marimo is a Python notebook that rethinks how notebooks work. When you change a cell, all dependent cells re-execute automatically, like a spreadsheet. Notebooks are stored as plain .py files, making them …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9d2b4e76) --- # Goose: Open-Source AI Dev Agent by Block in 2026 URL: https://tokrepo.com/en/workflows/asset-9d80b9a1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Goose automates developer workflows through extensible plugins and MCP support, built by Block (formerly Square). ## What it is Goose is an open-source AI agent built by Block (formerly Square) that goes beyond code suggestions. It installs packages, executes shell commands, manages files, and orchestrates entire developer workflow …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9d80b9a1) --- # Tyk API Gateway: Open Source Rate Limiting in 2026 URL: https://tokrepo.com/en/workflows/asset-9d870738 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tyk is a Go API gateway with plugins, rate limiting, OAuth2/OIDC, GraphQL, and a developer portal. ## What it is Tyk is a high-performance, open-source API gateway written in Go. It handles quota enforcement, rate limiting, authentication (OAuth2, OIDC, JWT, HMAC, mTLS), request/response transformations, analytics, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9d870738) --- # Kubefwd: Bulk Port Forwarding for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-9d8da470 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI tool that bulk-forwards Kubernetes services to localhost with real DNS name mapping. ## What it is Kubefwd is a command-line tool that bulk-forwards Kubernetes services to your local machine and maps their DNS names to localhost. Instead of running `kubectl port-forward` for each service individually, k …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9d8da470) --- # External Secrets Operator for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-9db65ce5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: External Secrets Operator pulls secrets from external vaults into native Kubernetes Secrets automatically. ## What it is External Secrets Operator (ESO) is a CNCF project that synchronizes secrets from external management systems into Kubernetes Secret objects. It supports over 25 backends including AWS Secrets Manager, Hash …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9db65ce5) --- # Mintlify: AI-Powered Documentation Platform (2026) URL: https://tokrepo.com/en/workflows/asset-9dd15b95 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AI-powered documentation platform with beautiful API docs, auto-generated references from OpenAPI, and instant markdown deployment. ## What it is Mintlify is a documentation platform built for developer-facing products. It generates beautiful API documentation, developer portals, and knowledge bases from markdown files or OpenAPI specifications. The …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9dd15b95) --- # n8n-as-code: AI Agent Superpowers for n8n 2026 URL: https://tokrepo.com/en/workflows/asset-9de58e04 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: n8n-as-code gives AI agents access to 537 n8n node schemas and 7,700+ templates for building automation workflows. ## What it is n8n-as-code is a plugin that gives AI coding agents access to n8n's entire workflow automation ecosystem. It provides 537 node schemas (one for each n8n integration), 7,700+ workflow templates, and TypeScr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9de58e04) --- # NebulaGraph: Distributed Open-Source Graph Database (2026) URL: https://tokrepo.com/en/workflows/asset-9e58f35f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NebulaGraph stores and queries billions of vertices and trillions of edges with sub-millisecond latency. ## What it is NebulaGraph is a horizontally scalable, open-source distributed graph database designed for storing and querying massive graph datasets. It handles billions of vertices and trillions of edges with sub-mill …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9e58f35f) --- # Claude Code /babysit: Auto-Respond to PR Review Comments URL: https://tokrepo.com/en/workflows/asset-9e627ece Type: featured-workflow Updated: 2026-04-30T11:16:39.846795 > **TL;DR**: /babysit watches a PR, classifies review comments, and pushes fixes until merge. ## What /babysit Solves for PR Review Comments **Direct answer:** `/babysit` is a community-written Claude Code slash command that watches an open GitHub pull request, classifies every new review comment, autonomously f …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9e627ece) --- # ClearML: End-to-End MLOps Platform for 2026 Teams URL: https://tokrepo.com/en/workflows/asset-9e630ac2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ClearML tracks ML experiments, orchestrates pipelines, and serves models with a 2-line Python integration and self-hosted deployment. ## What it is ClearML is an open-source MLOps platform that covers the full machine learning lifecycle: experiment tracking, pipeline orchestration, data management, model versioning, and serving. It integrates with exi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9e630ac2) --- # Beszel: Lightweight Self-Hosted Server Monitoring 2026 URL: https://tokrepo.com/en/workflows/asset-9e6c318e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Beszel monitors servers with Docker stats, alerts, and a clean dashboard using minimal resources. ## What it is Beszel is a lightweight self-hosted server monitoring platform. It uses a hub-agent architecture where a central hub collects data from lightweight agents running on your servers. It provides historical da …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9e6c318e) --- # Awesome A2A: Agent-to-Agent Protocol Directory (2026) URL: https://tokrepo.com/en/workflows/asset-9e6c81c5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Awesome A2A curates A2A Protocol resources: SDKs, samples, integrations, and tutorials. ## What it is Awesome A2A is a curated directory of resources for the Agent-to-Agent (A2A) Protocol. It collects official samples, SDKs for five programming languages, framework integrations, community implementations, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9e6c81c5) --- # SearXNG: Privacy-First Self-Hosted Metasearch Engine URL: https://tokrepo.com/en/workflows/asset-9ea22ab4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SearXNG is a self-hosted metasearch engine that aggregates results from 70+ sources with no tracking, no ads, and full user control. ## What it is SearXNG is a free, self-hosted metasearch engine that aggregates results from over 70 search engines and sources. It sends queries to multiple backends (Google, Bing, DuckDuckGo, Wikipedia, and others), co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9ea22ab4) --- # Together AI Fine-Tuning Skill for Claude Code 2026 URL: https://tokrepo.com/en/workflows/asset-9f339e9b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill that provides structured knowledge for fine-tuning models on Together AI via LoRA, DPO, and full fine-tuning. ## What it is This is a Claude Code skill that teaches the AI agent how to use Together AI's fine-tuning API. It covers LoRA (efficient adapter tuning), full fine-tuning, DPO preference tuning, VLM (vision-language mode …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9f339e9b) --- # LaVague: Natural Language Web Automation Framework (2026) URL: https://tokrepo.com/en/workflows/asset-9f75bd64 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LaVague takes text objectives and autonomously drives a browser to accomplish them. ## What it is LaVague is an open-source framework for building AI web agents that interact with websites through natural language instructions. You give it a text objective like 'Find the cheapest flight from NYC to Lon …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9f75bd64) --- # Stripe MCP: Payments API Server for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-9fa25556 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The official Stripe MCP server lets AI agents process payments, manage customers, and handle billing. ## What it is Stripe MCP is the official Model Context Protocol server from Stripe that gives AI agents access to payment processing, customer management, subscription billing, and financial reporting. It exposes Stripe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9fa25556) --- # Cody: AI Coding Assistant by Sourcegraph in 2026 URL: https://tokrepo.com/en/workflows/asset-9fc7d409 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AI coding assistant by Sourcegraph that understands your entire codebase for context-aware code generation and answers. ## What it is Cody is an AI coding assistant built by Sourcegraph that has deep understanding of your entire codebase. Unlike generic code completion tools, Cody searches your repository, reads relevant files, and uses …(content truncated, full version at https://tokrepo.com/en/workflows/asset-9fc7d409) --- # Coqui TTS: Deep Learning Text-to-Speech in 2026 URL: https://tokrepo.com/en/workflows/asset-a059dce2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Coqui TTS generates speech in 1100+ languages with real-time voice cloning and sub-200ms streaming latency. ## What it is Coqui TTS is an open-source deep learning text-to-speech engine that supports over 1100 languages. Its XTTS v2 model enables voice cloning from short audio samples with streaming output under 200ms latency …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a059dce2) --- # Cortex: Scalable Long-Term Storage for Prometheus (2026) URL: https://tokrepo.com/en/workflows/asset-a05a40a6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cortex provides horizontally scalable, highly available, multi-tenant long-term storage for Prometheus metrics at any scale. ## What it is Cortex is a CNCF incubating project that extends Prometheus with horizontally scalable, highly available, multi-tenant long-term storage. It accepts Prometheus metrics via remote write, stores them durably …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a05a40a6) --- # Datree: Kubernetes Policy Enforcement Guide (2026) URL: https://tokrepo.com/en/workflows/asset-a1078df1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Policy enforcement tool that validates Kubernetes manifests against built-in and custom rules in CI pipelines or the CLI. ## What it is Datree is a policy enforcement tool for Kubernetes configurations. It validates YAML manifests against built-in and custom rules before they reach your cluster, catching misconfigurations in CI/CD pipeline …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a1078df1) --- # FastMCP: Build MCP Servers in Python Fast in 2026 URL: https://tokrepo.com/en/workflows/asset-a17a107c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FastMCP provides a clean Python decorator API for building MCP servers with automatic type validation and built-in testing. ## What it is FastMCP is a Python framework for building MCP (Model Context Protocol) servers quickly. It provides a decorator-based API similar to FastAPI: you define functions with type hints, decorate them with `@mcp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a17a107c) --- # Syncthing: Peer-to-Peer File Synchronization 2026 URL: https://tokrepo.com/en/workflows/asset-a1ace164 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Syncthing syncs files between your devices directly with end-to-end encryption, no cloud servers or accounts needed. ## What it is Syncthing is a continuous file synchronization tool that syncs files between devices directly, without any cloud servers or third-party accounts. All communication is encrypted with TLS, and devices authen …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a1ace164) --- # Metabase: Open Source Business Intelligence in 2026 URL: https://tokrepo.com/en/workflows/asset-a1cd7314 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Metabase connects to any database and lets non-technical users build dashboards and explore data without writing SQL. ## What it is Metabase is an open-source business intelligence tool that lets anyone in your organization ask questions about data and build dashboards. Connect any SQL database, and Metabase provides a visual query bui …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a1cd7314) --- # Restic: Fast Secure Encrypted Backup Program (2026) URL: https://tokrepo.com/en/workflows/asset-a1edbdb2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Restic provides encrypted, deduplicated backups to 20+ storage backends with fast incremental snapshots. ## What it is Restic is an open-source backup program that encrypts all data by default, deduplicates across snapshots, and supports over 20 storage backends including local disk, SFTP, S3, Google Cloud Storage, Azure B …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a1edbdb2) --- # Redash: Open Source SQL Dashboards and Visualization (2026) URL: https://tokrepo.com/en/workflows/asset-a20e0e3e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Redash lets data teams write SQL queries against any data source, create visualizations, and assemble shareable dashboards. ## What it is Redash is an open-source business intelligence tool that connects to virtually any data source -- PostgreSQL, MySQL, BigQuery, Redshift, Snowflake, Elasticsearch, and dozens more. You write SQL queries in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a20e0e3e) --- # Docker MCP Server for AI Container Management (2026) URL: https://tokrepo.com/en/workflows/asset-a2214d04 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docker MCP lets AI agents build, run, stop, and inspect Docker containers through the Model Context Protocol. ## What it is Docker MCP is a Model Context Protocol server that gives AI agents direct access to Docker container operations. Through MCP tool calls, an agent can list running containers, start and stop services, inspe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2214d04) --- # Woodpecker CI: Lightweight Container-Based CI/CD (2026) URL: https://tokrepo.com/en/workflows/asset-a22e63ee Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Woodpecker CI runs container-based pipelines defined in simple YAML with Docker-native execution. ## What it is Woodpecker CI is a lightweight, container-based CI/CD engine forked from Drone. Every pipeline step runs in an isolated Docker container, defined in a simple YAML file. It integrates with GitHub, GitLab, G …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a22e63ee) --- # Apache Kafka Event Streaming Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-a2aa8afb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Kafka handles publish-subscribe messaging at massive scale with durable partitioned logs and no ZooKeeper since v3.5. ## What it is Apache Kafka is an open-source distributed event streaming platform originally created at LinkedIn and donated to the Apache Software Foundation. It handles publish-subscribe messaging, durable storage, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2aa8afb) --- # Helm: The Package Manager for Kubernetes in 2026 URL: https://tokrepo.com/en/workflows/asset-a2aa953c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Helm packages Kubernetes applications into Charts that define, install, and upgrade even complex deployments with a single command. ## What it is Helm is the package manager for Kubernetes. It uses Charts -- bundles of pre-configured Kubernetes resource definitions -- to define, install, and upgrade applications on any Kubernetes cluster. Helm handl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2aa953c) --- # MongoDB: Document Database for Modern Applications (2026) URL: https://tokrepo.com/en/workflows/asset-a2aa9815 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MongoDB stores data in flexible JSON-like documents with horizontal scaling, replication, and sharding built in. ## What it is MongoDB is a source-available, cross-platform document database that stores data in flexible JSON-like documents (BSON format). Unlike relational databases that require rigid schemas, MongoDB documents can …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2aa9815) --- # Pulumi: Infrastructure as Code in Real Languages (2026) URL: https://tokrepo.com/en/workflows/asset-a2aa99f8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pulumi lets you define cloud infrastructure using general-purpose languages like TypeScript, Python, and Go instead of domain-specific HCL. ## What it is Pulumi is an infrastructure as code (IaC) platform that lets you define and manage cloud resources using general-purpose programming languages. Unlike Terraform which uses HCL (a domain-specific language), …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2aa99f8) --- # HashiCorp Nomad: Flexible Workload Orchestrator (2026) URL: https://tokrepo.com/en/workflows/asset-a2aa9c27 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nomad orchestrates containers, VMs, and binaries with a simpler model than Kubernetes. ## What it is HashiCorp Nomad is a flexible workload orchestrator that deploys and manages containers, virtual machines, Java applications, and standalone binaries across on-prem and cloud infrastructure. Unlike Kuberne …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2aa9c27) --- # Remotion Rule: 3D Content with Three.js Guide (2026) URL: https://tokrepo.com/en/workflows/asset-a2efc549 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion skill rule for building 3D video content using Three.js and React Three Fiber in programmatic React-based video production. ## What it is This is a Remotion skill rule for creating 3D content in programmatic videos using Three.js and React Three Fiber. It is part of the official Remotion Agent Skill, which enables AI agents to produce video …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a2efc549) --- # oh-my-claudecode: Zero-Config Multi-Agent System (2026) URL: https://tokrepo.com/en/workflows/asset-a318b055 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: oh-my-claudecode adds team mode, autopilot, and parallel execution with 19 specialized agents. ## What it is oh-my-claudecode is a multi-agent orchestration system for Claude Code that requires zero configuration. It provides team mode for collaborative agent work, autopilot for hands-off execution, Ralph persist …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a318b055) --- # CloudQuery: Sync Cloud Infrastructure to SQL (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a36fe8b8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CloudQuery extracts cloud configuration into PostgreSQL for security auditing and compliance queries. ## What it is CloudQuery is an open-source ELT framework that extracts configuration data from cloud APIs (AWS, GCP, Azure), SaaS platforms, and databases into PostgreSQL or data lakes. Once your infrastructure data is …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a36fe8b8) --- # Modal: Serverless GPU Cloud for AI Workloads in 2026 URL: https://tokrepo.com/en/workflows/asset-a3ae2bd0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Run GPU workloads in the cloud with Python decorators. Serverless A100/H100 for inference and fine-tuning. ## What it is Modal is a serverless cloud platform for running GPU workloads. You write Python functions, decorate them with `@app.function(gpu='A100')`, and Modal handles provisioning GPU instances, installing dependen …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a3ae2bd0) --- # GenAI Toolbox: MCP Server for Databases by Google 2026 URL: https://tokrepo.com/en/workflows/asset-a3c39721 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google's open-source MCP server connects AI agents to databases with built-in auth, pooling, and safety. ## What it is GenAI Toolbox is an open-source MCP server built by Google that connects AI agents to databases. It supports PostgreSQL, MySQL, Cloud SQL, AlloyDB, and Spanner with built-in authentication, connection pool …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a3c39721) --- # ClaudeForge: Auto-Generate CLAUDE.md for Any Project (2026) URL: https://tokrepo.com/en/workflows/asset-a3d1ca2b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ClaudeForge scans your codebase and generates a CLAUDE.md file tailored to your project structure. ## What it is ClaudeForge is a CLI tool that automatically generates and maintains CLAUDE.md files for any project. It scans your codebase, analyzes the project structure, scores existing documentation, and produces con …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a3d1ca2b) --- # MCP.so: Open-Source MCP Server Directory Platform (2026) URL: https://tokrepo.com/en/workflows/asset-a3e80e57 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP.so is a self-hostable, open-source directory for browsing and submitting MCP servers. ## What it is MCP.so is an open-source directory for Model Context Protocol servers. Built with Next.js and Supabase, it lets users browse, search, and submit community MCP servers. The project powers the mcp.so website …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a3e80e57) --- # Codebase Memory MCP: Code Intelligence Server (2026) URL: https://tokrepo.com/en/workflows/asset-a3fe5165 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An MCP server that indexes codebases via tree-sitter AST, supporting 66 languages with sub-millisecond graph queries. ## What it is Codebase Memory MCP is a high-performance code intelligence server built on the Model Context Protocol. It indexes entire repositories in milliseconds using tree-sitter AST parsing and supports 66 programm …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a3fe5165) --- # Codemod: AI-Powered Code Migration CLI with ast-grep URL: https://tokrepo.com/en/workflows/asset-a414acda Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Codemod scaffolds, shares, and runs large-scale code migrations with AI assistance, ast-grep support, and a community codemod registry. ## What it is Codemod is an AI-powered command-line tool for scaffolding, sharing, and running large-scale code migrations. It supports ast-grep for AST-based pattern matching, multi-step YAML workflows for complex migr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a414acda) --- # TrendRadar: AI-Driven Trend Monitoring System (2026) URL: https://tokrepo.com/en/workflows/asset-a42aec90 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TrendRadar aggregates trends from 50+ platforms and pushes AI-filtered alerts to your channels. ## What it is TrendRadar is an AI-powered trend monitoring system that aggregates content from 50+ platforms, filters it by your defined interests using AI, and pushes relevant alerts to WeChat, Telegram, Slack, or emai …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a42aec90) --- # KubeEdge: Extend Kubernetes to Edge and IoT (2026) URL: https://tokrepo.com/en/workflows/asset-a45d992a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CNCF project that brings Kubernetes container orchestration to resource-constrained edge nodes. ## What it is KubeEdge is a CNCF project that extends Kubernetes to edge devices and IoT environments. It lets you manage edge nodes using standard Kubernetes APIs while providing features tailored for edge computing: o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a45d992a) --- # Cursor vs Claude Code vs Codex Comparison 2026 URL: https://tokrepo.com/en/workflows/asset-a4647a34 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A side-by-side comparison of Cursor, Claude Code, and Codex CLI covering pricing, features, and best use cases. ## What it is This is a structured comparison of the three leading AI coding tools as of 2026: Cursor (IDE with AI), Claude Code (terminal-native AI agent), and Codex CLI (OpenAI's command-line coding tool). The compari …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a4647a34) --- # gptme: AI Agent That Lives in Your Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-a46522d1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: gptme lets you chat with an AI that writes code and runs commands from your terminal. ## What it is gptme is an open-source personal AI assistant that operates entirely inside your terminal. It connects to OpenAI, Anthropic, or local models and can write code, run shell commands, browse the web, and mana …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a46522d1) --- # DeepEval: LLM Testing Framework with 30+ Metrics (2026) URL: https://tokrepo.com/en/workflows/asset-a4d57f88 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DeepEval provides 30+ evaluation metrics for LLM apps in a pytest-compatible framework. ## What it is DeepEval is an open-source testing framework designed specifically for LLM applications. It works like pytest but adds 30+ evaluation metrics tailored to AI outputs, including answer relevancy, faithfulnes …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a4d57f88) --- # AFFiNE: Open-Source Notion Alternative Guide (2026) URL: https://tokrepo.com/en/workflows/asset-a517c512 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source Notion alternative combining docs, whiteboards, and databases. Local-first, privacy-focused, with real-time collaboration. ## What it is AFFiNE is an open-source workspace that combines documents, whiteboards, and databases in a single application. It is designed as a privacy-first alternative to Notion, with local-first data storage and op …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a517c512) --- # Langtrace: Open Source AI Observability Platform (2026) URL: https://tokrepo.com/en/workflows/asset-a53444d6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Langtrace instruments your LLM calls with OpenTelemetry and shows traces in a real-time dashboard. ## What it is Langtrace is an open-source observability platform purpose-built for LLM-powered applications. It hooks into your existing OpenAI, Anthropic, and LangChain calls and records every request, response, token …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a53444d6) --- # Opik: Debug, Evaluate and Monitor LLM Apps (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a543eba5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Opik traces LLM calls, runs evals, and monitors RAG quality in production. ## What it is Opik is an open-source LLM observability platform by Comet that provides tracing, evaluation, and production monitoring for AI applications. It instruments LLM calls with a single decorator, runs automated …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a543eba5) --- # Plandex: Terminal AI for Large Codebases (2026) URL: https://tokrepo.com/en/workflows/asset-a5444c0c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Plandex is a terminal AI tool for large codebases with 2M token context, sandbox diffs, and automatic debugging. ## What it is Plandex is a terminal-based AI development tool designed for large, multi-file coding tasks. It supports a 2M token context window, applies changes as sandbox diffs you can review before committing, and in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a5444c0c) --- # Neon: Serverless Postgres with Database Branching (2026) URL: https://tokrepo.com/en/workflows/asset-a561d526 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Neon offers serverless Postgres with git-like database branching for safe schema testing. ## What it is Neon is a serverless PostgreSQL platform that separates compute from storage, enabling instant database branching, autoscaling to zero, and a generous free tier. You can branch your database like git branc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a561d526) --- # Fleet: Open-Source Device Management and Security 2026 URL: https://tokrepo.com/en/workflows/asset-a57c08b9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source device management platform using osquery for real-time SQL visibility across your fleet. ## What it is Fleet is an open-source platform for managing and securing servers, laptops, and cloud workloads at scale. It uses osquery under the hood, providing real-time visibility into your entire device fleet throu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a57c08b9) --- # Alacritty: GPU-Accelerated Terminal Emulator (2026) URL: https://tokrepo.com/en/workflows/asset-a59ad2d2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Alacritty offloads terminal rendering to the GPU via OpenGL for consistently low frame times across platforms. ## What it is Alacritty is a cross-platform terminal emulator written in Rust that uses OpenGL for GPU-accelerated rendering. It deliberately omits features like tabs, splits, and scrollback search in favor of raw rende …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a59ad2d2) --- # tldr-pages: Simplified Community-Driven Man Pages (2026) URL: https://tokrepo.com/en/workflows/asset-a5b995ee Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: tldr-pages shows practical examples for CLI commands instead of cryptic man page walls of text. ## What it is tldr-pages is a community-curated collection of simplified command-line documentation. Where `man tar` shows hundreds of lines of options, `tldr tar` shows the five common invocations with real-world examp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a5b995ee) --- # fish Shell: Friendly Interactive Shell with Autosuggestions URL: https://tokrepo.com/en/workflows/asset-a5d85437 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: fish is an interactive shell with autosuggestions, syntax highlighting, and smart tab completions from man pages — no configuration required. ## What it is fish (Friendly Interactive Shell) is a command-line shell that prioritizes interactive usability. It provides autosuggestions from command history as you type, real-time syntax highlighting that colors inv …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a5d85437) --- # Lark CLI Skill: Wiki Knowledge Base Management (2026) URL: https://tokrepo.com/en/workflows/asset-a5eb9344 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Create and manage Lark/Feishu knowledge spaces and document nodes from the command line. ## What it is This Lark CLI skill provides programmatic access to Lark/Feishu knowledge bases (Wiki). It lets you create and manage knowledge spaces, organize document nodes, add shortcuts, and query the knowledge base …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a5eb9344) --- # kitty Terminal: GPU-Accelerated with Image Protocol (2026) URL: https://tokrepo.com/en/workflows/asset-a5f74c04 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: kitty is a fast, GPU-rendered terminal with tabs, splits, and a native image protocol. ## What it is kitty is a feature-rich, GPU-accelerated terminal emulator. It uses OpenGL for rendering, which offloads text drawing to the GPU and keeps CPU usage low even with large scrollback buffers. kitty supports t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a5f74c04) --- # Milvus: Cloud-Native Vector Database for AI Search (2026) URL: https://tokrepo.com/en/workflows/asset-a614800d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Milvus is a cloud-native vector database with GPU-accelerated indexing, hybrid search, and Kubernetes-native deployment for AI workloads at scale. ## What it is Milvus is a cloud-native vector database designed for similarity search at billion-vector scale. Built in Go and C++, it provides GPU-accelerated indexing, hybrid dense and sparse vector search, multi-tena …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a614800d) --- # micro: Modern Terminal Text Editor for 2026 Devs URL: https://tokrepo.com/en/workflows/asset-a6161a84 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: micro gives you desktop-style shortcuts (Ctrl+S, Ctrl+C, Ctrl+V) in the terminal with zero learning curve. ## What it is micro is a terminal-based text editor written in Go that brings desktop-style keyboard shortcuts to the command line. Instead of memorizing Vim keybindings or Emacs chords, you use Ctrl+S to save, Ctrl+C/V …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a6161a84) --- # WezTerm: GPU-Accelerated Terminal with Lua Scripting (2026) URL: https://tokrepo.com/en/workflows/asset-a634f04a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: WezTerm is a Rust-built terminal emulator with Lua config, GPU rendering, and built-in multiplexing. ## What it is WezTerm is a cross-platform terminal emulator written in Rust that combines GPU-accelerated rendering with a full Lua-based configuration and scripting layer. It supports Metal on macOS, WebGPU cross-platf …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a634f04a) --- # Pi-hole: Network-Wide Ad Blocker DNS Setup (2026) URL: https://tokrepo.com/en/workflows/asset-a6509f0d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pi-hole is a self-hosted DNS server that blocks ads and trackers for every device on your local network. ## What it is Pi-hole is an open-source network-level ad blocker that functions as a DNS sinkhole. It intercepts DNS queries from all devices on your LAN and blocks requests to known advertising, tracking, and malicious …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a6509f0d) --- # Argo Rollouts: Progressive Delivery for K8s (2026) URL: https://tokrepo.com/en/workflows/asset-a6525ca1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Argo Rollouts adds canary, blue-green, and analysis-driven deployments to Kubernetes natively. ## What it is Argo Rollouts is a Kubernetes controller that replaces the built-in Deployment resource with advanced deployment strategies. It supports canary releases with configurable traffic weight steps, blue-green d …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a6525ca1) --- # GitUI: Fast Terminal UI for Git in Rust 2026 URL: https://tokrepo.com/en/workflows/asset-a653bda2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GitUI is a keyboard-driven terminal Git interface written in Rust for speed. ## What it is GitUI is a terminal user interface for Git written in Rust. It lets you browse commits, stage individual hunks, view diffs, manage branches, and resolve merge conflicts entirely from the keyboard without l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a653bda2) --- # fastfetch: Modern System Information Tool Guide 2026 URL: https://tokrepo.com/en/workflows/asset-a672c079 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: fastfetch displays system info with distro logos in milliseconds, written in C as the successor to neofetch. ## What it is fastfetch is a command-line tool that displays system information (OS, kernel, CPU, GPU, memory, disk, uptime) alongside a distro or OS logo in the terminal. Written in C, it is the successor to the popula …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a672c079) --- # navi: Interactive CLI Cheatsheet Tool (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a691b1ab Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: navi lets you fuzzy-search CLI cheatsheets, fill in parameters interactively, and execute commands without memorizing flags. ## What it is navi is a Rust-based command-line tool that turns plain-text cheatsheets into an interactive, executable interface. You search for a command by description (e.g., 'rebase last N commits'), navi shows match …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a691b1ab) --- # Unsloth: 2x Faster LLM Training with 70% Less VRAM (2026) URL: https://tokrepo.com/en/workflows/asset-a69b498a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Unsloth accelerates LLM fine-tuning by 2x while cutting VRAM usage by 70%, supporting 500+ models with a simple Web UI or CLI. ## What it is Unsloth is a unified local interface for running and training AI models. It provides up to 2x faster training with 70% less VRAM usage across 500+ models including Qwen, DeepSeek, Llama, and Gemma. It incl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a69b498a) --- # yq: jq for YAML, JSON, XML, and TOML in 2026 URL: https://tokrepo.com/en/workflows/asset-a6b08736 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: yq extends jq's query language to YAML, JSON, XML, TOML, and properties files as a single dependency-free Go binary. ## What it is yq (Mike Farah's Go version) brings jq's query and transformation language to YAML, JSON, XML, TOML, .properties, and CSV files. If you have ever needed to patch a Kubernetes manifest, extract a value from …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a6b08736) --- # Remotion Fonts Rule: Loading Fonts in Video 2026 URL: https://tokrepo.com/en/workflows/asset-a6c7b3ba Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Load Google Fonts or local font files correctly in Remotion programmatic videos. ## What it is This Remotion skill rule covers loading Google Fonts and local fonts in Remotion projects. Remotion renders video frames as React components, which means font loading follows web patterns but with video-sp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a6c7b3ba) --- # Navidrome: Self-Hosted Music Server Setup in 2026 URL: https://tokrepo.com/en/workflows/asset-a70ba942 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Navidrome streams your music collection from your own server via Subsonic-compatible apps. ## What it is Navidrome is a lightweight, self-hosted music server that lets you stream your entire music collection from anywhere. It is compatible with the Subsonic API, which means you can use dozens of existing Subs …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a70ba942) --- # Sentry MCP: Error Monitoring Server for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-a739e813 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that gives AI agents access to Sentry error data for querying issues, analyzing stack traces, and resolving bugs. ## What it is Sentry MCP is a Model Context Protocol server that connects AI agents to Sentry's error monitoring platform. It gives agents like Claude Code the ability to query issues, analyze stack traces, track regres …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a739e813) --- # Morphic: Open-Source AI Answer Engine Guide 2026 URL: https://tokrepo.com/en/workflows/asset-a7a38f07 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Morphic is an open-source Perplexity alternative with generative UI, multi-provider support, and self-hosting via Next.js. ## What it is Morphic is an open-source AI answer engine in the style of Perplexity AI. It searches the web, synthesizes information from multiple sources, and presents answers with citations and a generative UI. Morphi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a7a38f07) --- # Nacos: Service Discovery and Config Management (2026) URL: https://tokrepo.com/en/workflows/asset-a7a61cf9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nacos bundles service registry, dynamic configuration with hot-reload, and DNS-based discovery into a single server with one console. ## What it is Nacos (Naming And Configuration Service) is an Alibaba-incubated, Apache 2.0 licensed platform that combines service registry, dynamic configuration, and service management. It targets the same problems as …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a7a61cf9) --- # Haystack MCP: Connect AI Pipelines to MCP Clients 2026 URL: https://tokrepo.com/en/workflows/asset-a7d6f60b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Expose Haystack RAG pipelines as MCP servers for Claude Code and other AI tools to query directly. ## What it is Haystack MCP bridges the Haystack AI framework with the Model Context Protocol (MCP). It lets you expose any Haystack pipeline, whether for document search, question answering, or retrieval-augmented gener …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a7d6f60b) --- # Dear ImGui: Immediate Mode GUI for C++ Game Tools (2026) URL: https://tokrepo.com/en/workflows/asset-a81f7c61 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dear ImGui powers in-game editors and debug tools across virtually every game engine. ## What it is Dear ImGui is an immediate-mode GUI library for C++ used by virtually every game engine for in-game editors, debug overlays, profiling tools, and level editors. Unlike retained-mode GUI frameworks, ImGui r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a81f7c61) --- # Docling: Document Parsing for AI Pipelines (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a8327829 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docling converts PDF, DOCX, PPTX, and images into clean Markdown or JSON optimized for LLM ingestion. ## What it is Docling is a document parsing library by IBM Research that converts PDF, DOCX, PPTX, HTML, and images into clean Markdown or JSON optimized for LLM ingestion. It handles complex layouts including tables, f …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a8327829) --- # raylib: Simple C Game Programming Library (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a83e3bc5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: raylib provides a clean, education-focused C API for game development with 500+ examples, zero dependencies, and 60+ language bindings. ## What it is raylib is a simple, education-focused C library for video game programming. It provides a clean API for 2D and 3D rendering, input handling, audio, textures, and more -- without the complexity of engines l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a83e3bc5) --- # egui: Immediate Mode GUI in Pure Rust for Any Target (2026) URL: https://tokrepo.com/en/workflows/asset-a85cf74f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: egui is a pure-Rust immediate mode GUI library that runs on native, WASM, and embedded targets with a simple API. ## What it is egui is a pure-Rust immediate mode GUI library. Unlike retained mode frameworks where you build a widget tree and the framework manages updates, egui redraws the entire UI every frame. You call functions l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a85cf74f) --- # NativeScript: Build Native iOS and Android Apps with JS/TS URL: https://tokrepo.com/en/workflows/asset-a87b8fe7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NativeScript lets you build native iOS and Android apps with JavaScript/TypeScript using native UI widgets and direct access to every platform API. ## What it is NativeScript is an open-source framework for building native iOS and Android apps with JavaScript or TypeScript. Unlike hybrid frameworks that wrap web content in a WebView, NativeScript renders actual nat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a87b8fe7) --- # p5.js: JavaScript Creative Coding Library in 2026 URL: https://tokrepo.com/en/workflows/asset-a89a37f1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Modern JS library for creative coding and interactive graphics. The browser-native descendant of Processing, no setup needed. ## What it is p5.js is a JavaScript library for creative coding that makes it easy to draw interactive graphics in the browser. It is the modern descendant of Processing, designed for learning, art, data visualization, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a89a37f1) --- # GDevelop: Build Games Without Coding in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-a8b8bf49 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source game creator that lets you build 2D and 3D games for all platforms using visual events instead of code. ## What it is GDevelop is a cross-platform, open-source game creation tool that uses a visual 'events' system instead of traditional code. You build 2D (and basic 3D) games by defining behaviors, physics, and interactio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a8b8bf49) --- # Cocos2d-x: Cross-Platform Mobile Game Engine in C++ (2026) URL: https://tokrepo.com/en/workflows/asset-a8d74ef3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cocos2d-x is a proven C++ engine for building 2D mobile games on iOS, Android, and desktop. ## What it is Cocos2d-x is a lightweight, cross-platform C++ game engine focused on 2D mobile games. It has powered titles like Clash Royale, Geometry Dash, and Badland. The engine provides sprite rendering, physics, au …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a8d74ef3) --- # Remotion Animation Rules for Programmatic Video (2026) URL: https://tokrepo.com/en/workflows/asset-a8e21ba7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion animation rules cover interpolation, spring physics, and easing for React-based video production. ## What it is This is a Remotion skill rule covering fundamental animation techniques for programmatic video in React. It is part of the official Remotion Agent Skill and provides patterns for interpolation, spring phys …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a8e21ba7) --- # Kivy: Cross-Platform Python Apps Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a8f5db0f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kivy lets you build touch-friendly cross-platform apps entirely in Python, running on mobile and desktop. ## What it is Kivy is an open-source Python framework for building cross-platform applications with touch-friendly UIs. A single Python codebase runs on iOS, Android, Windows, macOS, Linux, and Raspberry Pi. Kivy uses i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a8f5db0f) --- # Ebitengine: Dead Simple 2D Game Engine for Go (2026) URL: https://tokrepo.com/en/workflows/asset-a9148c68 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ebitengine is a minimal 2D game library for Go that compiles to desktop, mobile, WASM, and Nintendo Switch. ## What it is Ebitengine (formerly Ebiten) is a 2D game library for the Go programming language created by Hajime Hoshi. It offers a tiny API surface that takes minutes to learn. The engine handles rendering, input, aud …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a9148c68) --- # openFrameworks: C++ Toolkit for Creative Coding (2026) URL: https://tokrepo.com/en/workflows/asset-a933602f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: openFrameworks is a C++ creative coding toolkit for interactive art, computer vision, and real-time graphics. ## What it is openFrameworks (oF) is an open-source C++ toolkit designed for creative coding. It wraps low-level libraries for graphics (OpenGL), audio (rtAudio, FMOD), video, networking, and computer vision into a cons …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a933602f) --- # Kedro: Production-Ready ML Pipeline Framework in 2026 URL: https://tokrepo.com/en/workflows/asset-a9468d16 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source Python framework by QuantumBlack that turns messy notebook code into production-ready ML pipelines. ## What it is Kedro is an open-source Python framework created by McKinsey QuantumBlack that applies software engineering best practices to data science and machine learning code. It provides a standardized project stru …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a9468d16) --- # Atlantis: Terraform Pull Request Automation (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-a997170b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Atlantis turns terraform plan and apply into pull request comments with locking, policy checks, and audit history. ## What it is Atlantis is a self-hosted application that automates Terraform workflows through pull requests. When you open a PR that modifies Terraform code, Atlantis automatically runs `terraform plan` and posts the o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a997170b) --- # Jina Reader: Convert Any URL to LLM-Ready Markdown (2026) URL: https://tokrepo.com/en/workflows/asset-a9cbbc61 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jina Reader converts any URL to LLM-ready markdown by simply prepending r.jina.ai/ to it. Handles JS pages, PDFs, and images. ## What it is Jina Reader is a free API service that converts any web URL into clean, LLM-friendly markdown. You prepend `r.jina.ai/` to any URL and get back the page content as structured markdown, stripped of ads, nav …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a9cbbc61) --- # Remotion FFmpeg Rule: Video Processing in 2026 URL: https://tokrepo.com/en/workflows/asset-a9f7a7fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion skill rule that teaches AI agents how to use FFmpeg and FFprobe within Remotion projects. ## What it is This is a Remotion skill rule that covers using FFmpeg and FFprobe within Remotion, the React-based programmatic video framework. It is part of the official Remotion Agent Skill set, providing AI coding ag …(content truncated, full version at https://tokrepo.com/en/workflows/asset-a9f7a7fe) --- # Gemini CLI Observability Extension: Monitoring 2026 URL: https://tokrepo.com/en/workflows/asset-aa41279c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gemini CLI extension for setting up monitoring, analyzing logs, creating dashboards, and configuring alerts. ## What it is The Gemini CLI Observability extension is an official Google extension that adds application monitoring and observability capabilities to the Gemini command-line interface. It assists with setting up monit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-aa41279c) --- # Apache APISIX: Cloud Native API Gateway Guide (2026) URL: https://tokrepo.com/en/workflows/asset-aa6e7a65 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: APISIX is a high-performance API gateway built on NGINX and etcd with sub-millisecond routing updates and a rich plugin ecosystem. ## What it is Apache APISIX is a dynamic, real-time, high-performance API gateway built on NGINX and etcd. It provides rich traffic management features including load balancing, rate limiting, authentication, and observ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-aa6e7a65) --- # FerretDB: Open Source MongoDB Alternative in 2026 URL: https://tokrepo.com/en/workflows/asset-aa723091 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FerretDB translates MongoDB wire protocol queries into SQL, running on PostgreSQL or SQLite as the storage backend. ## What it is FerretDB is a truly open-source MongoDB-compatible database. It accepts MongoDB wire protocol connections and translates those queries into SQL, executing them against PostgreSQL or SQLite as the storage b …(content truncated, full version at https://tokrepo.com/en/workflows/asset-aa723091) --- # Daytona: Secure Sandboxes for AI Code Execution (2026) URL: https://tokrepo.com/en/workflows/asset-ab55b619 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Daytona creates isolated sandboxes for AI agents to execute code safely. ## What it is Daytona is an infrastructure platform that provides secure, isolated sandbox environments for running AI-generated code. It offers SDKs for Python, TypeScript, and Go, letting AI agents create sandboxes on …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ab55b619) --- # Lark CLI Skill: Minutes for Meeting AI (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ab64ed96 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Lark CLI skill that extracts AI summaries, todos, and chapter breakdowns from recorded Lark/Feishu meetings. ## What it is Lark CLI Skill: Minutes is a command-line tool that connects to your Lark (Feishu) workspace and extracts meeting intelligence from recorded meetings. It pulls metadata, AI-generated summaries, action item …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ab64ed96) --- # Awesome n8n: 280+ Workflow Automation Templates (2026) URL: https://tokrepo.com/en/workflows/asset-ab76a229 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated GitHub collection of 280+ n8n workflow JSON files you can import and run immediately. ## What it is n8n is an open-source workflow automation platform that connects apps, APIs, and AI models through a visual node-based editor. The Awesome n8n repository on GitHub aggregates over 280 ready-to-import JSON …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ab76a229) --- # tldraw: Infinite Canvas SDK for AI Apps (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-abe1c221 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source infinite canvas React library for whiteboard, diagramming, and design apps with real-time collaboration and AI tool integration. ## What it is tldraw is an open-source infinite canvas library for building whiteboard, diagramming, and design applications. It provides a React component with drawing tools, shape primitives, text, images, and real-ti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-abe1c221) --- # Cursor Rules: React TypeScript Component Patterns (2026) URL: https://tokrepo.com/en/workflows/asset-ac71b14f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cursor rule file that teaches AI to write production-quality React + TypeScript code. ## What it is This is a Cursor rule configuration file (`.mdc`) that teaches Cursor AI to write production-quality React code with TypeScript. It enforces functional component patterns, hooks best practices, proper typi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ac71b14f) --- # GraphRAG: Knowledge Graph RAG by Microsoft (2026) URL: https://tokrepo.com/en/workflows/asset-ac77668d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GraphRAG indexes documents into knowledge graphs and provides local and global search over entity relationships. ## What it is GraphRAG is an open-source tool by Microsoft Research that builds knowledge graphs from unstructured documents for smarter retrieval-augmented generation. Unlike traditional RAG that retrieves text chunks, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ac77668d) --- # DeepAgents: Multi-Step Agent Framework Guide 2026 URL: https://tokrepo.com/en/workflows/asset-ac820f80 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DeepAgents provides planning, filesystem access, and sub-agent spawning for complex multi-step AI tasks built on LangGraph. ## What it is DeepAgents is an agent harness built on LangGraph by the LangChain team. It provides planning tools, a filesystem backend, and sub-agent spawning for complex multi-step tasks like codebase refactoring, res …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ac820f80) --- # Remotion Rule Maps: Mapbox Animation Skills (2026) URL: https://tokrepo.com/en/workflows/asset-acc76203 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion Maps rule lets AI agents create animated map sequences using Mapbox in React video. ## What it is Remotion Rule: Maps is a skill rule within the Remotion Agent Skill ecosystem. It provides instructions and patterns for creating animated map visualizations using Mapbox GL inside Remotion, the React-base …(content truncated, full version at https://tokrepo.com/en/workflows/asset-acc76203) --- # Checkov: Static Security Scanning for IaC in 2026 URL: https://tokrepo.com/en/workflows/asset-accdd5bb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Checkov scans Terraform, CloudFormation, Kubernetes, and Docker configs for security misconfigurations before deployment. ## What it is Checkov is a static analysis tool by Bridgecrew (now part of Palo Alto Networks) that scans infrastructure-as-code files for security misconfigurations and policy violations. It supports Terraform, CloudFo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-accdd5bb) --- # Claude Skill: Algorithmic Art with p5.js in 2026 URL: https://tokrepo.com/en/workflows/asset-ad2d3030 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An official Claude skill for generating algorithmic art using p5.js with seeded randomness and interactive parameter controls. ## What it is The algorithmic-art skill is an official Claude skill that teaches Claude Code how to create algorithmic art using p5.js. It provides rules for seeded randomness, interactive parameter exploration, and cod …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ad2d3030) --- # Open Interpreter: Run Code via Natural Language (2026) URL: https://tokrepo.com/en/workflows/asset-ad8f9d27 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Run Python, JavaScript, and Shell code locally through natural language commands. ChatGPT-like interface on your own machine. ## What it is Open Interpreter is an open-source tool that lets you run code on your local machine through natural language instructions. It provides a ChatGPT-like interface in your terminal that can execute Python, Ja …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ad8f9d27) --- # Axolotl: Streamlined LLM Fine-Tuning Framework (2026) URL: https://tokrepo.com/en/workflows/asset-ae1cbf21 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Axolotl simplifies LLM fine-tuning with LoRA, QLoRA, DPO, and GRPO via one YAML config. ## What it is Axolotl is a framework that streamlines post-training and fine-tuning for large language models. It supports LoRA, QLoRA, full fine-tuning, DPO, GRPO, and multimodal training. You define your entire traini …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ae1cbf21) --- # Tekton Pipelines: Cloud-Native CI/CD on Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-af0d3ad8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tekton models CI/CD pipelines as Kubernetes CRDs, running each step in its own container. ## What it is Tekton Pipelines is an open-source framework for creating CI/CD systems that run as native Kubernetes resources. Originally born from Knative Build at Google, Tekton became a standalone CNCF project and no …(content truncated, full version at https://tokrepo.com/en/workflows/asset-af0d3ad8) --- # Terramate: IaC Orchestration for Terraform (2026) URL: https://tokrepo.com/en/workflows/asset-af4fad9b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Terramate orchestrates Terraform stacks with code generation, change detection, and drift detection at scale. ## What it is Terramate is an open-source orchestration tool that extends Terraform and OpenTofu with stack management, code generation, change detection, and drift detection. It helps teams scale from a single Terrafor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-af4fad9b) --- # Semantic Kernel: Microsoft AI Agent Framework (2026) URL: https://tokrepo.com/en/workflows/asset-afa12811 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Semantic Kernel is Microsoft's SDK for building AI agents in Python, .NET, and Java with plugin architecture. ## What it is Semantic Kernel is Microsoft's open-source AI agent framework that provides a lightweight SDK for integrating LLMs into Python, .NET, and Java applications. It uses a plugin architecture where AI capabilit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-afa12811) --- # KeyDB: Multithreaded Redis Replacement Guide (2026) URL: https://tokrepo.com/en/workflows/asset-afb23d9f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KeyDB is a multithreaded Redis fork with active-active replication that delivers higher throughput on multi-core hardware. ## What it is KeyDB is a fully Redis-compatible fork that replaces Redis's single-threaded architecture with a multithreaded design. It uses all available CPU cores for handling client connections and processing command …(content truncated, full version at https://tokrepo.com/en/workflows/asset-afb23d9f) --- # Vegeta: HTTP Load Testing at Constant Rates (2026) URL: https://tokrepo.com/en/workflows/asset-b048c0d2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vegeta sustains precise constant request rates and produces HDR histograms and latency reports. ## What it is Vegeta is a Go-based HTTP load testing tool that attacks endpoints at a precise constant request rate. Unlike tools that ramp up connections until the server breaks, Vegeta maintains the rate you specify a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b048c0d2) --- # Stable Diffusion Web UI by AUTOMATIC1111 (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b0727fbf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AUTOMATIC1111's Web UI runs Stable Diffusion locally with full control over models, LoRAs, and extensions. ## What it is AUTOMATIC1111's Stable Diffusion Web UI is a browser-based interface for running Stable Diffusion models locally. It supports text-to-image generation, image-to-image transformation, inpainting, ControlNet …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b0727fbf) --- # Hugging Face Transformers: Pretrained Models (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b0920ac9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Transformers provides a unified API for 250,000+ pretrained models across PyTorch, TensorFlow, and JAX. ## What it is Hugging Face Transformers is the de-facto Python library for using and fine-tuning pretrained models. It supports BERT, GPT, Llama, Whisper, ViT, and over 250,000 community-contributed models. One unified …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b0920ac9) --- # Fooocus: Simple AI Image Generation with SDXL (2026) URL: https://tokrepo.com/en/workflows/asset-b0b1b970 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fooocus generates high-quality images from text prompts with zero configuration using SDXL defaults. ## What it is Fooocus is a Stable Diffusion image generator that strips away every dial and toggle. You type a prompt and get magazine-quality results. It uses opinionated defaults, automatic prompt engineering, and SDX …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b0b1b970) --- # text-generation-webui: Gradio UI for Local LLMs 2026 URL: https://tokrepo.com/en/workflows/asset-b0d2eaa8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Feature-rich Gradio web UI for running local language models with llama.cpp, Transformers, and ExLlamaV2 backends. ## What it is text-generation-webui (commonly called 'oobabooga') is a feature-rich Gradio web interface for chatting with and serving local language models. It supports multiple backends including llama.cpp, Transforme …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b0d2eaa8) --- # Ray: Distributed Python Computing for AI in 2026 URL: https://tokrepo.com/en/workflows/asset-b0f2e5e4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ray scales Python and AI workloads across clusters with a simple decorator API for distributed training, tuning, and serving. ## What it is Ray is an open-source unified framework for scaling Python and AI applications. It handles distributed training, hyperparameter search, large-scale data processing, and model serving under a single API. Yo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b0f2e5e4) --- # Kotaemon: Open-Source RAG Document Chat Tool (2026) URL: https://tokrepo.com/en/workflows/asset-b0f93b10 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kotaemon is a self-hostable, open-source RAG application for chatting with PDF, DOCX, and web documents with citations and multi-model support. ## What it is Kotaemon is an open-source RAG (retrieval-augmented generation) tool that lets you chat with your documents. Upload PDFs, DOCX files, or web pages, and ask questions in natural language. Kotaemon retrieves …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b0f93b10) --- # Candle: Rust ML Framework for Fast Inference (2026) URL: https://tokrepo.com/en/workflows/asset-b113c394 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Candle runs ML inference in pure Rust with small binaries, no Python required, supporting Llama and Whisper. ## What it is Candle is a Rust-native machine learning framework focused on inference performance, small binaries, and serverless deployment. Built by Hugging Face, it runs Llama, Whisper, Stable Diffusion, and other Py …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b113c394) --- # Supabase MCP: Postgres and Auth Server for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-b141b1a9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Supabase MCP connects AI agents to Supabase PostgreSQL databases, auth, storage, and edge functions via MCP. ## What it is Supabase MCP is a Model Context Protocol server that connects AI agents to Supabase services. It provides access to PostgreSQL databases, authentication, file storage, and edge functions through the MCP to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b141b1a9) --- # Claude Code CLAUDE.md Best Practices Template (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b152c845 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A production-tested CLAUDE.md template that configures Claude Code with project conventions, test rules, and git workflow. ## What it is CLAUDE.md is a project-level configuration file that tells Claude Code how to work within your specific codebase. This template provides a battle-tested structure covering coding conventions, test requirem …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b152c845) --- # Cloudflare AI Gateway: LLM Proxy Cache Analytics 2026 URL: https://tokrepo.com/en/workflows/asset-b1962c77 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Free proxy gateway for LLM API calls that adds caching, rate limiting, cost tracking, and fallback routing across providers. ## What it is Cloudflare AI Gateway is a free proxy gateway for LLM API calls. It sits between your application and AI providers (OpenAI, Anthropic, Google, etc.), adding response caching, rate limiting, cost tracking, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b1962c77) --- # llama.cpp: Run LLMs Locally in Pure C/C++ 2026 URL: https://tokrepo.com/en/workflows/asset-b2e0b71d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: llama.cpp runs large language models locally on CPU and GPU with aggressive quantization and zero external dependencies. ## What it is llama.cpp is an open-source LLM inference engine written in C/C++. It runs large language models locally on consumer hardware including CPUs, Apple Silicon, NVIDIA GPUs, and AMD GPUs. The project supports …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b2e0b71d) --- # Gradio: Build ML Demos and AI Web Apps in 2026 URL: https://tokrepo.com/en/workflows/asset-b30caf4b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gradio builds interactive ML demos and AI web apps with chat interfaces, file upload, and shareable public links in a few lines of Python. ## What it is Gradio is the standard Python library for building interactive ML demos and AI web applications. You create chat interfaces, image generators, audio processors, and data tools with a few lines of Python -- …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b30caf4b) --- # Crawl4AI MCP: Web Crawling Server for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-b3396cdc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that gives Claude Code and Cursor web crawling capabilities through standardized tool calls for scraping and content extraction. ## What it is Crawl4AI MCP is a Model Context Protocol server that provides web crawling capabilities to AI agents. It enables Claude Code, Cursor, and other MCP-compatible clients to scrape web pages, extract structure …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3396cdc) --- # ko: Build Go Containers Without Dockerfiles in 2026 URL: https://tokrepo.com/en/workflows/asset-b357f123 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ko compiles Go code into distroless container images and pushes them to any registry in one command. ## What it is ko is a CLI tool that builds Go applications into minimal container images without requiring a Dockerfile. It produces distroless images based on Google's distroless base, which contain only your compiled …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b357f123) --- # NanoClaw: Lightweight Personal AI Assistant in 2026 URL: https://tokrepo.com/en/workflows/asset-b399753b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NanoClaw runs Claude agents in containers and connects them to WhatsApp, Telegram, Slack, Discord, and Gmail with minimal code. ## What it is NanoClaw is a lightweight personal AI assistant that runs Claude agents in isolated Docker containers and connects them to messaging platforms. It supports WhatsApp, Telegram, Slack, Discord, and Gmail as …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b399753b) --- # AI Coding Agent Comparison: Complete 2026 Guide URL: https://tokrepo.com/en/workflows/asset-b3a901fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Side-by-side comparison of Claude Code, Cursor, Codex, Gemini CLI, Cline, Windsurf, and Aider for 2026. ## What it is This guide provides a comprehensive comparison of all major AI coding agents available in 2026. It covers Claude Code, Cursor, Codex, Gemini CLI, Cline, Roo Code, Windsurf, and Aider with detailed feature …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3a901fe) --- # Three.js: JavaScript 3D Library for the Web (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b3e54897 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Three.js is the standard JavaScript library for building 3D scenes, models, and interactive experiences in the browser via WebGL/WebGPU. ## What it is Three.js is a JavaScript library that makes WebGL and WebGPU rendering accessible. Instead of writing low-level shader code and managing GPU buffers, you work with high-level abstractions: scenes, cameras, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3e54897) --- # axios: Promise-Based HTTP Client for JS in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-b3e550af Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: axios provides a promise-based HTTP client that works identically in browsers and Node.js with interceptors and automatic JSON handling. ## What it is axios is a promise-based HTTP client for JavaScript that works in both browsers and Node.js. It provides request and response interceptors, automatic JSON transformation, CSRF protection, request cancellat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3e550af) --- # Apache ECharts: Interactive Charting Library Guide 2026 URL: https://tokrepo.com/en/workflows/asset-b3e552ed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache ECharts provides 40+ chart types with canvas/SVG rendering, streaming data, and rich interactive features. ## What it is Apache ECharts is an open-source JavaScript charting library maintained by the Apache Software Foundation. It supports over 40 chart types including line, bar, scatter, pie, radar, treemap, sankey, and geo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3e552ed) --- # Socket.IO: Bidirectional Realtime Communication in 2026 URL: https://tokrepo.com/en/workflows/asset-b3e554ce Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Low-latency bidirectional communication library with WebSocket, fallbacks, auto-reconnection, and rooms. ## What it is Socket.IO is a library that enables real-time, bidirectional, event-based communication between web clients and servers. Built on top of WebSocket with automatic fallbacks to HTTP long-polling, it handles …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3e554ce) --- # Phaser: HTML5 Game Framework for Web Games (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b3e55673 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Phaser builds 2D games for desktop and mobile browsers with Canvas/WebGL rendering, physics, and built-in animation. ## What it is Phaser is an open-source 2D game framework for building HTML5 games that run in desktop and mobile web browsers. It provides Canvas and WebGL rendering, multiple physics engines (Arcade and Matter.js), spr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b3e55673) --- # Headlamp: Open-Source Kubernetes Web UI in 2026 URL: https://tokrepo.com/en/workflows/asset-b410700d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Headlamp is a CNCF Sandbox Kubernetes dashboard with plugins, multi-cluster, and OIDC support. ## What it is Headlamp is an extensible open-source Kubernetes dashboard that runs as a desktop app or self-hosted web UI. It is a CNCF Sandbox project that provides a clean interface for managing Kubernetes clusters wi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b410700d) --- # LiteLLM: Universal LLM API Gateway for 100+ Models (2026) URL: https://tokrepo.com/en/workflows/asset-b414da1d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LiteLLM provides a single API interface to call 100+ LLM providers with consistent request/response format and built-in load balancing. ## What it is LiteLLM is a unified API proxy that lets you call 100+ LLM providers through a single OpenAI-compatible interface. It supports OpenAI, Anthropic, AWS Bedrock, Azure OpenAI, Google Vertex AI, Cohere, Huggin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b414da1d) --- # bolt.diy: AI Full-Stack App Builder with Any LLM (2026) URL: https://tokrepo.com/en/workflows/asset-b45a4842 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: bolt.diy builds full-stack web apps by prompting any LLM with instant preview. ## What it is bolt.diy is an open-source community fork of Bolt.new that provides an AI-powered full-stack web app builder. You describe what you want in natural language, and bolt.diy generates a complete web applicati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b45a4842) --- # ShellGPT: AI Terminal Assistant for CLI in 2026 URL: https://tokrepo.com/en/workflows/asset-b48a2103 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ShellGPT turns natural language into shell commands, code snippets, and docs directly in your terminal. ## What it is ShellGPT is a command-line tool that generates shell commands, code, and documentation from natural language prompts. You type what you want in plain English, and ShellGPT returns the exact command or scri …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b48a2103) --- # AnythingLLM: All-in-One AI Knowledge Base App (2026) URL: https://tokrepo.com/en/workflows/asset-b4f588a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AnythingLLM bundles document chat, RAG, agents, and multi-user support into one privacy-first desktop or Docker app with 30+ LLM providers. ## What it is AnythingLLM is an open-source, all-in-one AI application that lets you chat with your documents, build RAG pipelines, run AI agents, and manage multiple users -- all from a single desktop app or Docker con …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b4f588a5) --- # Figma Context MCP: Design-to-Code for AI in 2026 URL: https://tokrepo.com/en/workflows/asset-b51a5814 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that feeds Figma design context to AI coding agents for accurate code generation. ## What it is Figma Context MCP is an MCP server that gives AI coding agents direct access to Figma design data. It exposes layout information, styles, typography, colors, and component hierarchies through the Model Con …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b51a5814) --- # AI Agent Memory Patterns: Build Agents That Remember URL: https://tokrepo.com/en/workflows/asset-b52189f9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A collection of design patterns for adding persistent memory to AI agents, covering conversation buffers, entity extraction, knowledge graphs, and tiered memory. ## What it is This resource collects design patterns for adding persistent memory to AI agents. It covers the spectrum from simple conversation buffers to sophisticated knowledge graph memory, with working code examples …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b52189f9) --- # Camel AI: Multi-Agent Role-Playing Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b532d25b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CAMEL enables AI agents to collaborate through structured role-playing with autonomous communication. ## What it is CAMEL (Communicative Agents for Mind Exploration of Large Language Model Society) is a multi-agent framework where AI agents collaborate through role-playing. Each agent assumes a specific role (Python pro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b532d25b) --- # AWX: Open Source Web UI and API for Ansible (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b559924e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AWX provides a web UI, REST API, and task engine for managing Ansible playbooks, inventories, and credentials at scale. ## What it is AWX is the upstream open-source project behind Red Hat Ansible Automation Platform. It provides a web-based user interface, REST API, and task engine built on top of Ansible. AWX lets teams manage playbook …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b559924e) --- # Dify: Open-Source LLMOps Platform for AI Apps (2026) URL: https://tokrepo.com/en/workflows/asset-b5693277 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dify provides a visual workflow builder, RAG pipeline, and agent orchestration for building AI applications without deep coding. ## What it is Dify is an open-source LLMOps platform that provides a visual interface for building AI applications. It includes a workflow builder for chaining LLM calls, a RAG pipeline for knowledge-based Q&A, agent or …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b5693277) --- # Mem0: Persistent Memory Layer for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-b61fca8c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mem0 gives AI agents persistent memory that learns user preferences across sessions. ## What it is Mem0 is an open-source memory layer for AI agents and applications. It adds persistent, personalized memory that lets AI agents learn user preferences, remember past interactions, and adapt context across …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b61fca8c) --- # Popeye: Kubernetes Cluster Sanitizer Tool (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b6253af9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Popeye scans live Kubernetes clusters for misconfigurations and reports issues before outages. ## What it is Popeye is a command-line utility that scans a live Kubernetes cluster and reports potential issues with deployed resources. It checks for misconfigurations, unused resources, port mismatches, dead referenc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b6253af9) --- # Claude Agent SDK: Build AI Agents with TypeScript 2026 URL: https://tokrepo.com/en/workflows/asset-b6989234 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Anthropic's official TypeScript SDK that gives your applications Claude Code's agent capabilities programmatically. ## What it is The Claude Agent SDK is Anthropic's official TypeScript SDK for building AI agents with Claude Code's full capabilities. It provides file editing, command execution, codebase understanding, and complex wor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b6989234) --- # Cognee: Persistent Memory Engine for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-b6ad223f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cognee gives AI agents persistent memory by processing data into knowledge graphs and vector stores, queryable in natural language. ## What it is Cognee is an open-source memory and knowledge management engine built for AI agents. While most AI tools lose context between sessions, Cognee provides persistent structured memory that grows over time. It …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b6ad223f) --- # txtai: All-in-One Embeddings Database for 2026 URL: https://tokrepo.com/en/workflows/asset-b732febc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: txtai combines vector search, SQL, and RAG pipelines into a single Python library for semantic search and LLM orchestration. ## What it is txtai is a Python library that provides an all-in-one embeddings database for semantic search, retrieval-augmented generation, and LLM workflow orchestration. It combines vector search with SQL queries, le …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b732febc) --- # FastAPI-MCP: Turn Any FastAPI into MCP Tools in 2026 URL: https://tokrepo.com/en/workflows/asset-b764314c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FastAPI-MCP exposes existing FastAPI endpoints as MCP tools with one line of code and zero config. ## What it is FastAPI-MCP is a zero-configuration bridge that turns any FastAPI application into a set of MCP tools. AI agents can call your existing API endpoints as tools through the MCP protocol without any endpoint …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b764314c) --- # Cursor Tips: Advanced AI Coding Workflows (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b7e65852 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated guide to Cursor power features: Composer, .cursorrules, codebase indexing, and prompt patterns for productive AI coding. ## What it is Cursor Tips is a comprehensive guide to advanced workflows in Cursor, the AI-powered code editor built as a VS Code fork. It covers Composer for multi-file edits, .cursorrules for project-specific AI behav …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b7e65852) --- # n8n: AI-Native Workflow Automation Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-b7ec9ae7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source workflow automation with 400+ integrations, built-in AI agent support, and RAG pipeline capabilities. ## What it is n8n is an open-source workflow automation platform with native AI support. It connects 400+ apps and services, lets you build AI agents with tool use, create RAG pipelines, and automate complex business pr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b7ec9ae7) --- # Claude Code System Prompts: Full Extraction Guide (2026) URL: https://tokrepo.com/en/workflows/asset-b845abfe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Complete reverse-engineering of Claude Code's 110+ dynamic prompts tracked across 135+ versions. ## What it is This is a complete reverse-engineering of Claude Code's internal prompt architecture. It documents 110+ dynamic strings that change based on environment and configuration, extracted directly from compiled …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b845abfe) --- # Tempo MCP: Calendar and Time Tracking for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-b84b96fd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tempo MCP connects AI agents to Google Calendar and Toggl for scheduling, time logging, and availability checks. ## What it is Tempo MCP is a Model Context Protocol server that gives AI agents access to calendar and time tracking functionality. It integrates with Google Calendar for scheduling and availability, and with Toggl for …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b84b96fd) --- # Smithery CLI: MCP Server Registry and Installer (2026) URL: https://tokrepo.com/en/workflows/asset-b92722d6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Smithery CLI lets you search and install MCP servers from a registry of 6,000+ integrations. ## What it is Smithery CLI is a command-line tool for searching, installing, and managing MCP (Model Context Protocol) servers from Smithery's registry. The registry contains thousands of community-contributed MCP serve …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b92722d6) --- # Google Gemini CLI Extensions Collection (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-b9520bd2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated set of 40+ official Gemini CLI extensions for coding, cloud, security, and database tasks. ## What it is This collection gathers all official Gemini CLI extensions published by Google. It covers coding assistance, security scanning, Google Cloud operations, database management, and partner integrations — all …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b9520bd2) --- # Claude XLSX Skill: Spreadsheet Operations Guide 2026 URL: https://tokrepo.com/en/workflows/asset-b9536815 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Claude Code skill for creating, reading, and editing Excel spreadsheets with formulas and charts. ## What it is This is an official Claude Code skill from Anthropic's skills repository for working with Excel spreadsheet files. It handles creating workbooks, writing formulas, generating charts, building pivot tables, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b9536815) --- # Remotion Caption Display Skill for Video (2026) URL: https://tokrepo.com/en/workflows/asset-b95ee0ef Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion skill for rendering TikTok-style captions with word-level highlighting and paged layouts in React video. ## What it is This is a Remotion skill rule that teaches AI agents how to render captions in programmatic video. It implements TikTok-style paged captions with word-level highlighting that syncs to audio timing. The rul …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b95ee0ef) --- # Apache SeaTunnel: Data Integration for Batch (2026) URL: https://tokrepo.com/en/workflows/asset-b9625074 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SeaTunnel synchronizes data across 100+ sources and sinks with a unified batch and streaming engine. ## What it is Apache SeaTunnel is a distributed data integration engine that synchronizes data between 100+ sources and sinks in both batch and streaming modes. It supports databases (MySQL, PostgreSQL, Oracle), data wa …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b9625074) --- # LangGraph: Stateful AI Agent Workflows in 2026 URL: https://tokrepo.com/en/workflows/asset-b985ba42 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangGraph models AI agent workflows as stateful directed graphs with cycles, branching, persistence, and human-in-the-loop controls. ## What it is LangGraph is a framework for building stateful AI agent workflows as directed graphs. Each node in the graph represents a step (LLM call, tool invocation, decision point), and edges define the flow between …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b985ba42) --- # tfsec: Static Security Scanner for Terraform (2026) URL: https://tokrepo.com/en/workflows/asset-b9dd698f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: tfsec scans Terraform files for security misconfigurations across AWS, Azure, and GCP with zero configuration needed. ## What it is tfsec is a static analysis security scanner for Terraform HCL files. It checks for hundreds of built-in security rules covering AWS, Azure, and GCP resources. It runs with zero configuration and flags issu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b9dd698f) --- # Anthropic Agent SDK: Build Production AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-b9f86852 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Anthropic SDK for building production AI agents with tool use, memory, orchestration, and Claude as the backbone. ## What it is The Anthropic Agent SDK is the official framework for building AI agents powered by Claude. It provides structured tool use, memory management, multi-step orchestration, and guardrails for production deplo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b9f86852) --- # AWS CDK: Infrastructure as Code with Languages (2026) URL: https://tokrepo.com/en/workflows/asset-b9fb8a8c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Define AWS infrastructure in TypeScript, Python, Java, Go, or C# instead of YAML. CDK synthesizes to CloudFormation and deploys with one command. ## What it is The AWS Cloud Development Kit (CDK) lets you define cloud infrastructure using familiar programming languages instead of YAML or JSON templates. Write TypeScript, Python, Java, Go, or C# code that describe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-b9fb8a8c) --- # Claude Code Hooks: Automate Pre/Post Actions in 2026 URL: https://tokrepo.com/en/workflows/asset-ba645a85 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code hooks run custom scripts before or after tool calls for linting, testing, and validation. ## What it is Claude Code hooks let you define custom scripts that run automatically before or after specific tool calls. When Claude Code writes a file, you can trigger ESLint to fix it. When Claude Code finishes a tas …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ba645a85) --- # Neko: Self-Hosted Virtual Browser in Docker (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ba64b2a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Neko runs a virtual browser in Docker and streams it to your browser via WebRTC for shared sessions and isolated browsing. ## What it is Neko is a self-hosted application that runs a full desktop browser inside a Docker container and streams it to your web browser via WebRTC. Multiple users can connect to the same browser session simultaneo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ba64b2a5) --- # Bolt.new: AI Full-Stack Web App Generator in 2026 URL: https://tokrepo.com/en/workflows/asset-ba69689a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AI-powered web app generator that builds, runs, and deploys full-stack apps entirely in the browser from natural language. ## What it is Bolt.new is an AI-powered development environment by StackBlitz that generates full-stack web applications from natural language prompts. You describe the app you want, and the AI writes the code, installs …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ba69689a) --- # tRPC: End-to-End Typesafe APIs for TypeScript 2026 URL: https://tokrepo.com/en/workflows/asset-baa87f69 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Build fully typesafe APIs that share types between frontend and backend automatically. No schemas, no codegen, no runtime bloat. ## What it is tRPC lets you build fully typesafe APIs in TypeScript without writing schemas, running code generators, or adding runtime validation overhead. When you define a procedure on the server, the client automati …(content truncated, full version at https://tokrepo.com/en/workflows/asset-baa87f69) --- # SolidJS: Reactive UI Framework Without vDOM (2026) URL: https://tokrepo.com/en/workflows/asset-baca85cb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SolidJS builds reactive UIs with fine-grained signals and no virtual DOM, delivering performance close to vanilla JavaScript. ## What it is SolidJS is a declarative JavaScript library for building user interfaces. It uses fine-grained reactivity with signals, memos, and effects instead of a virtual DOM diffing algorithm. Components compile to …(content truncated, full version at https://tokrepo.com/en/workflows/asset-baca85cb) --- # Roo Code: AI Coding Agent with Custom Modes (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-baddacd0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Roo Code adds custom agent modes and multi-model routing to the Cline AI coding experience. ## What it is Roo Code is a fork of Cline, the popular VS Code AI coding extension, that adds custom agent modes, boomerang orchestration, and multi-model routing. You can create specialized agents for different tasks: …(content truncated, full version at https://tokrepo.com/en/workflows/asset-baddacd0) --- # Browser-Use Web UI: AI Browser Automation (2026) URL: https://tokrepo.com/en/workflows/asset-badeea82 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gradio-based web interface for Browser-Use AI agent with visual feedback, persistent sessions, and recording support. ## What it is Browser-Use Web UI is a Gradio-based interface that wraps the Browser-Use AI agent. It lets you automate web browsing tasks through a visual dashboard rather than raw scripts. The agent navigates pages, fi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-badeea82) --- # Qwik: Instant-Loading Web Apps via Resumability (2026) URL: https://tokrepo.com/en/workflows/asset-baecf967 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Qwik replaces hydration with resumability for O(1) startup time regardless of app size. ## What it is Qwik is a web framework designed for instant-loading applications. Its core innovation is resumability: instead of downloading and re-executing JavaScript on the client (hydration), Qwik serializes the app …(content truncated, full version at https://tokrepo.com/en/workflows/asset-baecf967) --- # mcp-use: Fullstack MCP Framework for AI Apps (2026) URL: https://tokrepo.com/en/workflows/asset-bb0eb5f4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Fullstack framework for building MCP servers and client apps with TypeScript or Python. ## What it is mcp-use is a fullstack MCP (Model Context Protocol) framework for building servers and applications that work with ChatGPT, Claude, and any LLM that supports MCP. It provides both TypeScript and Python SDK …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bb0eb5f4) --- # SvelteKit: Full-Stack Framework for Svelte Apps (2026) URL: https://tokrepo.com/en/workflows/asset-bb0ef4ec Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SvelteKit provides file-based routing, SSR, SSG, and server actions for Svelte applications. ## What it is SvelteKit is the official full-stack framework for Svelte, the compiler-based UI framework. It provides file-based routing, server-side rendering (SSR), static site generation (SSG), client-side rendering …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bb0ef4ec) --- # Bolt.new: AI App Generator in the Browser 2026 URL: https://tokrepo.com/en/workflows/asset-bb148713 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Bolt.new generates full-stack web applications from plain English descriptions, running entirely in the browser via WebContainers. ## What it is Bolt.new is an AI-powered development environment by StackBlitz that generates, runs, and deploys full-stack web applications entirely in the browser. You describe what you want in plain English, and Bolt …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bb148713) --- # Elysia: TypeScript Web Framework for Bun Runtime (2026) URL: https://tokrepo.com/en/workflows/asset-bb30e2f1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Elysia delivers end-to-end type safety and near-native performance on the Bun runtime. ## What it is Elysia is a TypeScript web framework optimized for the Bun runtime. It provides end-to-end type safety from route definition to client consumption, automatic OpenAPI documentation generation, and performan …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bb30e2f1) --- # Seafile: Self-Hosted File Sync and Share Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-bb757141 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: High-performance self-hosted file sync platform with client-side encryption, versioning, and collaboration. ## What it is Seafile is a self-hosted file synchronization and sharing platform. It provides Dropbox-like functionality on your own infrastructure, with client-side encryption, file versioning, and team collaboration f …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bb757141) --- # MoneyPrinterTurbo: One-Click Short Video Generator 2026 URL: https://tokrepo.com/en/workflows/asset-bbc04f37 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Give MoneyPrinterTurbo a topic and it produces a complete short video with script, footage, voiceover, and subtitles. ## What it is MoneyPrinterTurbo is an AI-powered end-to-end short video pipeline. You provide a topic, and it generates the script (via LLM), finds matching stock footage, adds AI voiceover, generates subtitles, and com …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bbc04f37) --- # GPT Crawler: Build Custom GPTs from Any Website (2026) URL: https://tokrepo.com/en/workflows/asset-bbd3962b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GPT Crawler crawls websites and outputs structured JSON ready for OpenAI GPT Builder or any RAG pipeline. ## What it is GPT Crawler is an open-source tool that crawls any website and converts its content into structured JSON files suitable for custom GPTs and RAG knowledge bases. Point it at documentation sites, help center …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bbd3962b) --- # Rainbond: No-Kubernetes App Platform Guide 2026 URL: https://tokrepo.com/en/workflows/asset-bbd792f6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rainbond lets developers deploy and manage containerized applications on Kubernetes without needing to learn Kubernetes. ## What it is Rainbond is an open-source cloud-native application management platform that sits on top of Kubernetes and hides its complexity. Developers interact with a visual dashboard to deploy, scale, and connect se …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bbd792f6) --- # Miller (mlr): awk, sed, cut for CSV, TSV, and JSON Data URL: https://tokrepo.com/en/workflows/asset-bc103a0c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Miller (mlr) processes CSV, TSV, JSON, and JSON Lines from the command line with awk-style filtering, sorting, joining, and statistical operations. ## What it is Miller (mlr) is a command-line tool for processing structured data formats including CSV, TSV, JSON, and JSON Lines. It combines the functionality of awk, sed, cut, join, and sort into a single binary that …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bc103a0c) --- # xh: Fast HTTPie-Compatible HTTP Client in Rust 2026 URL: https://tokrepo.com/en/workflows/asset-bc2fcb99 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rust-powered HTTP client with HTTPie-compatible syntax, JSON highlighting, sessions, and HTTP/2 in a single static binary. ## What it is xh is a command-line HTTP client written in Rust that provides an HTTPie-compatible user experience with better performance. It ships as a single static binary with built-in JSON syntax highlighting, form …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bc2fcb99) --- # McFly: Context-Aware Shell History Search in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-bc4f7f6d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: McFly ranks shell history results by directory, exit status, and recency for smarter Ctrl-R search. ## What it is McFly replaces the default Ctrl-R reverse history search in bash, zsh, and fish with a context-aware, neural-ranked search. Instead of simple substring matching, McFly considers your current working direct …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bc4f7f6d) --- # Trippy: Network Diagnostic Tool for Traceroute (2026) URL: https://tokrepo.com/en/workflows/asset-bc7036be Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Trippy fuses traceroute and ping into a single TUI tool that visualizes network hops, latency, and packet loss in real time. ## What it is Trippy is a modern terminal-based network diagnostic tool that combines the functionality of traceroute and ping into a single interactive interface. It displays network hops, round-trip latency, jitter, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bc7036be) --- # dog: Modern DNS Lookup CLI Written in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-bc8fd465 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: dog is a modern DNS CLI with colorized output, DoT, DoH, and JSON support as a human-friendly dig replacement. ## What it is dog is a modern DNS lookup command-line tool written in Rust. It prints results in color, supports DNS-over-TLS (DoT) and DNS-over-HTTPS (DoH), and outputs JSON for scripting. It is designed as a human-fri …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bc8fd465) --- # procs: Modern ps Replacement Written in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-bcafd7b6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: procs replaces the classic ps command with colorized output, tree view, and Docker integration. ## What it is procs is a modern replacement for the Unix `ps` command, written in Rust. It displays running processes with colorized output, human-readable formatting, built-in tree view, column filters, Docker containe …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bcafd7b6) --- # dua: Interactive Disk Usage Analyzer in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-bccf74e7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: dua scans disk usage in parallel across CPU cores and provides an interactive TUI for browsing and deleting files. ## What it is dua (Disk Usage Analyzer) is an open-source CLI tool written in Rust that scans directories in parallel and displays file sizes in an interactive terminal interface. Unlike the traditional `du` command, du …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bccf74e7) --- # gdu: Fast Disk Usage Analyzer in Go (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-bcef0993 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: gdu scans disk usage with parallel goroutines, shows an interactive TUI, and supports non-interactive CI output. ## What it is gdu is a disk usage analyzer written in Go, inspired by ncdu. It scans filesystems using a pool of goroutines for parallel I/O, then presents results in an interactive terminal UI where you can drill into …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bcef0993) --- # Formbricks: Open-Source Survey and Feedback Platform (2026) URL: https://tokrepo.com/en/workflows/asset-bcf373a1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Formbricks collects in-product surveys and user feedback, self-hostable. ## What it is Formbricks is an open-source survey and feedback platform designed for in-product research. It lets you embed surveys inside your web application, trigger them based on user actions, and collect structured …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bcf373a1) --- # entr: Run Commands When Files Change (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-bd0e9cda Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: entr watches a list of files and runs any command you specify when changes are detected, enabling instant feedback loops. ## What it is entr is a small, dependency-free Unix utility that runs arbitrary commands when files in a given list change. It uses kernel-level file notification APIs (kqueue on macOS/BSD, inotify on Linux) for efficie …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bd0e9cda) --- # curlie: The Power of curl with HTTPie-Style Arguments URL: https://tokrepo.com/en/workflows/asset-bd2e4178 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: curlie wraps curl with HTTPie-style arguments, giving you every curl feature (HTTP/3, FTP, SSH) with a friendlier command-line interface. ## What it is curlie is a thin wrapper around curl written in Go. It translates HTTPie-style command-line arguments into curl calls, combining curl's comprehensive protocol support (HTTP/3, SSH, FTP, GSSAPI) with HTTPie …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bd2e4178) --- # htmx: Add Dynamic HTML Without Writing JavaScript (2026) URL: https://tokrepo.com/en/workflows/asset-bd7355cb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: htmx adds AJAX and dynamic behavior to HTML with attributes, no JS framework. ## What it is htmx is a JavaScript library that extends HTML with attributes for making AJAX requests, handling WebSocket connections, and triggering CSS transitions. Instead of writing JavaScript or using a frontend fr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bd7355cb) --- # Cloudflare AI Workers: Edge AI Deployment (2026) URL: https://tokrepo.com/en/workflows/asset-bd8d0961 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Workers AI runs LLMs, embeddings, and image models on Cloudflare's edge network with zero infrastructure management. ## What it is Cloudflare AI Workers lets you run AI inference on Cloudflare's global edge network. Workers AI provides serverless access to models including Meta Llama, Stable Diffusion, Whisper, and embedding models. Y …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bd8d0961) --- # Nginx Proxy Manager: Web UI for Reverse Proxy (2026) URL: https://tokrepo.com/en/workflows/asset-bdb6aa4e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nginx Proxy Manager wraps Nginx in a Docker container with a web UI for managing proxy hosts, SSL, and access control. ## What it is Nginx Proxy Manager (NPM) is a Docker-based application that puts a polished web interface on top of Nginx reverse proxy. Instead of editing nginx.conf files by hand, you create and manage proxy hosts, red …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bdb6aa4e) --- # Volta MCP: Node.js Version Manager for AI Tools (2026) URL: https://tokrepo.com/en/workflows/asset-bdf050c5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Volta pins Node.js versions per project so MCP servers and AI tools always run on the correct runtime. ## What it is Volta is a fast, cross-platform Node.js version manager that pins tool versions per project. When running MCP servers or AI tools that depend on Node.js, Volta ensures they always use the correct version w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bdf050c5) --- # Smart Contract Auditor: Web3 Security Agent 2026 URL: https://tokrepo.com/en/workflows/asset-bdf1e117 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that audits Solidity smart contracts for reentrancy, overflow, access control, and gas optimization. ## What it is Smart Contract Auditor is a specialized Claude Code agent for blockchain and Web3 security tasks. It conducts security assessments of Solidity smart contracts, detecting vulnerabilities like reentrancy att …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bdf1e117) --- # Apache Beam: Unified Batch and Stream Processing (2026) URL: https://tokrepo.com/en/workflows/asset-be423f59 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Apache Beam lets you write data pipelines once and run them on Spark, Flink, Dataflow, or Samza with the same code. ## What it is Apache Beam is a unified programming model for defining both batch and streaming data-parallel processing pipelines. You write your pipeline once using the Beam SDK (Python, Java, or Go) and run it on mult …(content truncated, full version at https://tokrepo.com/en/workflows/asset-be423f59) --- # Slim (DockerSlim): Optimize Docker Containers 2026 URL: https://tokrepo.com/en/workflows/asset-bebccaab Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Slim shrinks Docker images up to 30x by automatically removing unnecessary files and packages. ## What it is Slim (formerly DockerSlim) automatically analyzes and optimizes Docker container images. It instruments your container, observes which files and libraries are actually used at runtime, then builds a minifi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bebccaab) --- # Steampipe: Query Cloud APIs with SQL in Real Time (2026) URL: https://tokrepo.com/en/workflows/asset-befeba67 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Steampipe exposes cloud and SaaS APIs as live PostgreSQL tables, letting you audit infrastructure with plain SQL. ## What it is Steampipe is an open-source tool that exposes cloud and SaaS APIs as PostgreSQL foreign tables using a custom Foreign Data Wrapper. Instead of stitching together AWS CLI, kubectl, and GitHub scripts, opera …(content truncated, full version at https://tokrepo.com/en/workflows/asset-befeba67) --- # Chainlit: Build Conversational AI Apps in Python (2026) URL: https://tokrepo.com/en/workflows/asset-bf4ae5cd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Chainlit provides a polished chat UI for Python AI apps with streaming, auth, and feedback built in. ## What it is Chainlit is a Python framework for building production conversational AI interfaces. It provides a polished chat UI with streaming, file upload, feedback collection, authentication, and data persistence ou …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bf4ae5cd) --- # Context+: Semantic Code Intelligence MCP Server (2026) URL: https://tokrepo.com/en/workflows/asset-bf876394 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server combining RAG, Tree-sitter AST parsing, and spectral clustering to make large codebases searchable by AI agents. ## What it is Context+ is an MCP server that combines RAG (Retrieval-Augmented Generation), Tree-sitter AST parsing, and spectral clustering to transform large codebases into searchable feature graphs. It gives AI codin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-bf876394) --- # Cody by Sourcegraph: AI Code Assistant in 2026 URL: https://tokrepo.com/en/workflows/asset-c00d464a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cody uses Sourcegraph's code graph to give AI full codebase context for chat, completions, and cross-repo search. ## What it is Cody is Sourcegraph's AI code assistant that differentiates itself by understanding your entire codebase, not just the open file. It uses Sourcegraph's code intelligence platform to build a semantic unders …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c00d464a) --- # Claude Code Compliance Auditor Agent Skill (2026) URL: https://tokrepo.com/en/workflows/asset-c01fc4a7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent skill that scans codebases for GDPR, HIPAA, SOC2, and PCI-DSS compliance violations with remediation guidance. ## What it is The Compliance Auditor is a Claude Code agent skill that performs automated regulatory compliance checks on codebases. It scans source code, configuration files, and infrastructure definitions for violatio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c01fc4a7) --- # Glasskube: Next-Gen Kubernetes Package Manager (2026) URL: https://tokrepo.com/en/workflows/asset-c078e238 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Glasskube simplifies Kubernetes add-on management with dependency tracking, GUI, and automatic updates. ## What it is Glasskube is a modern Kubernetes package manager that simplifies installing and managing cluster add-ons. Unlike Helm, which requires manually tracking chart versions and dependencies, Glasskube packages a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c078e238) --- # Playwright MCP: Browser Automation for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-c07ce036 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Playwright MCP server that gives AI agents like Claude Code full control over web browsers for testing and automation. ## What it is Playwright MCP is the official Model Context Protocol server for Playwright browser automation. It gives AI agents like Claude Code full control over web browsers: navigate pages, fill forms, click buttons …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c07ce036) --- # Video AI Toolkit: Complete Production Collection (2026) URL: https://tokrepo.com/en/workflows/asset-c13f8a88 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of video AI tools covering programmatic video, animation, editing, transcription, and voiceover. ## What it is This collection brings together five video AI tools that form a complete automated video production pipeline: Remotion for programmatic video generation, Manim for math animations, MoviePy for video editin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c13f8a88) --- # Remotion Audio Duration Rule: Get Length in 2026 URL: https://tokrepo.com/en/workflows/asset-c14c3bd1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion agent rule that teaches AI assistants to measure audio file duration for video sync. ## What it is This Remotion rule instructs AI coding agents on how to get the duration of an audio file in seconds using Mediabunny within Remotion projects. Knowing the exact audio duration is essential for synchronizi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c14c3bd1) --- # Sweep: AI Junior Developer for GitHub PRs in 2026 URL: https://tokrepo.com/en/workflows/asset-c1ba884a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sweep reads your codebase and converts GitHub issues into working pull requests with code changes. ## What it is Sweep is an AI-powered GitHub bot that converts issues into pull requests. When you create a GitHub issue prefixed with 'Sweep:', the bot reads your repository, plans the necessary code changes, writes the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c1ba884a) --- # Unstructured: Document ETL for LLM Pipelines (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-c2ba9909 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Unstructured parses PDFs, DOCX, HTML, and images into clean data for LLM pipelines. ## What it is Unstructured is an open-source library that extracts and transforms data from unstructured documents into clean, structured formats suitable for LLM processing. It handles PDFs, Word documents, HTML pages, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c2ba9909) --- # Chaos Mesh: Kubernetes Chaos Engineering in 2026 URL: https://tokrepo.com/en/workflows/asset-c2c90613 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Chaos Mesh lets you inject controlled failures into Kubernetes via CRDs to prove resilience. ## What it is Chaos Mesh is a CNCF incubating project that provides a chaos engineering platform for Kubernetes. It lets platform and SRE teams run controlled, reproducible failure experiments against live clusters by e …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c2c90613) --- # Wazuh: Open Source XDR and SIEM Security Platform (2026) URL: https://tokrepo.com/en/workflows/asset-c2ce4716 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Wazuh unifies SIEM, XDR, and cloud security posture management in a single open-source platform with lightweight endpoint agents. ## What it is Wazuh is a unified open-source security platform that combines SIEM (Security Information and Event Management), XDR (Extended Detection and Response), and cloud security posture management. It deploys a l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c2ce4716) --- # lnai: Unified AI Config for Claude, Cursor, Copilot (2026) URL: https://tokrepo.com/en/workflows/asset-c3338e8d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Define AI tool configs once in .ai/ and sync to Claude Code, Cursor, Copilot, Gemini CLI, and more. ## What it is lnai is a CLI tool that lets developers define AI coding tool configurations in a single `.ai/` directory and automatically sync them to native config formats for seven or more tools: Claude Code (CLAUDE.m …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c3338e8d) --- # Slack MCP Server: AI Slack Integration Guide 2026 URL: https://tokrepo.com/en/workflows/asset-c35881e9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Connect Claude Code or Cursor to Slack for reading, posting, and searching messages. ## What it is This Slack MCP Server provides Slack workspace integration for AI tools via the Model Context Protocol. It lets AI assistants like Claude Code and Cursor read channels, post messages, search conversations, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c35881e9) --- # Kiali: Istio Service Mesh Observability Console (2026) URL: https://tokrepo.com/en/workflows/asset-c3735002 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kiali renders an interactive graph of your Istio mesh, validates configuration, and integrates Prometheus and Jaeger traces in one dashboard. ## What it is Kiali is the management console for the Istio service mesh. It provides a real-time visual graph of your microservices topology, showing how services communicate, where traffic flows, and where errors occu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c3735002) --- # Weaviate: AI-Native Vector Database Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-c379f063 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Weaviate is an open-source vector database with built-in vectorization, hybrid search, and multi-tenancy at scale. ## What it is Weaviate is an open-source, AI-native vector database designed for building search and retrieval systems. It provides built-in vectorization (you send text, it generates embeddings), hybrid search combinin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c379f063) --- # Apache DataFusion: In-Process SQL Engine in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-c39e1e76 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DataFusion embeds a fast SQL query engine in your Rust application using Apache Arrow for columnar in-memory processing. ## What it is Apache DataFusion is an extensible query engine written in Rust that uses Apache Arrow as its in-memory columnar format. It provides a SQL interface for running analytical queries directly inside your appl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c39e1e76) --- # Smolagents by HuggingFace: Lightweight AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-c3ffefc8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Smolagents lets you build AI agents with tool calling in under 30 lines of Python code. ## What it is Smolagents is a lightweight Python agent framework by HuggingFace. It provides a minimalist API for building AI agents that can use tools, write and execute code, and perform multi-step reasoning. The enti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c3ffefc8) --- # WhisperX: 70x Faster Speech Recognition in 2026 URL: https://tokrepo.com/en/workflows/asset-c43ad870 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: WhisperX runs Whisper at 70x realtime speed with word-level timestamps and speaker diarization. ## What it is WhisperX is a speech recognition system that accelerates OpenAI's Whisper model to 70x realtime speed through batched inference. It adds word-level timestamps via forced alignment and speaker diarization t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c43ad870) --- # Claude Code Game Designer Agent: Mechanics & Balance (2026) URL: https://tokrepo.com/en/workflows/asset-c45180ee Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent template that provides game design expertise for mechanics, level design, balance tuning, economy systems, and progression. ## What it is The Game Designer agent is a Claude Code agent template focused on game development. It provides specialized knowledge for game mechanics design, level design, balance tuning, economy systems, and player p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c45180ee) --- # Alacritty: GPU-Accelerated Terminal Emulator in 2026 URL: https://tokrepo.com/en/workflows/asset-c457becc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Alacritty is a Rust-based, GPU-accelerated terminal emulator focused on simplicity and rendering speed. ## What it is Alacritty is a cross-platform terminal emulator written in Rust that uses GPU acceleration via OpenGL for rendering. It deliberately omits tabs and splits, focusing entirely on being the fastest terminal r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c457becc) --- # Ghostty: Feature-Rich Terminal Emulator Guide 2026 URL: https://tokrepo.com/en/workflows/asset-c457c64e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ghostty combines native OS UI with GPU-accelerated rendering for a fast, feature-rich terminal experience. ## What it is Ghostty is a cross-platform terminal emulator written in Zig by Mitchell Hashimoto, co-founder of HashiCorp. It uses platform-native UI elements (AppKit on macOS, GTK on Linux) combined with GPU-accelerate …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c457c64e) --- # Homebrew: The Missing Package Manager for macOS (2026) URL: https://tokrepo.com/en/workflows/asset-c457c879 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Homebrew installs CLI tools, libraries, and GUI apps on macOS and Linux with simple brew commands. ## What it is Homebrew is the de facto package manager for macOS (and Linux). It installs CLI tools, libraries, and GUI applications (called casks) that Apple or your Linux distribution did not include. It is the first …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c457c879) --- # Podman: Daemonless Container Engine for OCI (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-c457ca38 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Podman runs OCI containers without a root daemon, offering a drop-in Docker CLI replacement with rootless security by default. ## What it is Podman is a daemonless container engine for developing, managing, and running OCI-compliant containers and pods. Unlike Docker, Podman does not require a background daemon process running as root. Each con …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c457ca38) --- # Envoy Proxy: Cloud-Native Service Proxy Guide 2026 URL: https://tokrepo.com/en/workflows/asset-c457cbe3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Envoy is a C++ service proxy powering Istio, AWS App Mesh, and most cloud-native service mesh implementations. ## What it is Envoy is a high-performance edge, middle, and service proxy originally built at Lyft and now a CNCF graduated project. Written in C++, it serves as the data plane for service mesh implementations including …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c457cbe3) --- # Gemini CLI Stitch Extension: AI Design Tool 2026 URL: https://tokrepo.com/en/workflows/asset-c4b18aeb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Google Stitch extension for Gemini CLI enables AI-driven UI design, component generation, and design system management. ## What it is Stitch is an official Gemini CLI extension from Google that integrates the Stitch AI design tool with the Gemini command-line interface. Once installed, Gemini CLI gains capabilities for AI-driven UI desig …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c4b18aeb) --- # Claude Swarm: Multi-Agent Orchestration SDK 2026 URL: https://tokrepo.com/en/workflows/asset-c55ce837 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Swarm decomposes tasks with Opus and executes them in parallel Haiku workers. ## What it is Claude Swarm is a Python-based multi-agent orchestration system built on the Claude Agent SDK. It uses a hierarchical architecture where Claude Opus decomposes complex tasks into subtasks, and Claude Haiku …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c55ce837) --- # Outlines: Guaranteed Structured LLM Output in 2026 URL: https://tokrepo.com/en/workflows/asset-c62993b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Outlines constrains LLM generation to produce valid JSON, Pydantic objects, enums, or regex-matched text, eliminating post-hoc parsing failures. ## What it is Outlines is a Python library that guarantees valid structured outputs from large language models. Instead of hoping the LLM produces valid JSON and then parsing it, Outlines constrains the generation proce …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c62993b1) --- # SWE-agent: Autonomous GitHub Issue Solver (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-c6ec5ec5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SWE-agent enables LLMs to autonomously fix GitHub issues and detect security vulnerabilities via custom agent interfaces. ## What it is SWE-agent is a tool that enables language models like Claude Sonnet or GPT-4o to autonomously fix GitHub issues, identify security vulnerabilities, and tackle custom coding challenges. It provides a specia …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c6ec5ec5) --- # Terratest: Automated Testing for Infrastructure Code (2026) URL: https://tokrepo.com/en/workflows/asset-c79522cf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Terratest is a Go testing library that validates Terraform, Packer, Kubernetes, and Docker infrastructure with real deployments. ## What it is Terratest is a Go library for writing automated tests for infrastructure code. It deploys real infrastructure (Terraform modules, Kubernetes manifests, Docker images, Packer templates), validates that it w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c79522cf) --- # k0s: Zero Friction Kubernetes Distribution in 2026 URL: https://tokrepo.com/en/workflows/asset-c7ca6bf7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: k0s is a single-binary Kubernetes distro with everything baked in, from edge Raspberry Pi to production HA clusters. ## What it is k0s is a Kubernetes distribution by Mirantis that ships as a single binary with etcd, containerd, and CNI networking included. There is nothing to install separately. It runs on any Linux host, from a Rasp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c7ca6bf7) --- # Lark CLI Docs Skill: Cloud Document Automation 2026 URL: https://tokrepo.com/en/workflows/asset-c8177caa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Automate Lark/Feishu document creation and editing from Markdown via the CLI. ## What it is Lark CLI Docs is a skill for the Lark (Feishu) CLI that automates cloud document operations. It lets you create documents from Markdown, read and update existing doc content, insert images, and search acro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c8177caa) --- # OpenKruise: Advanced Kubernetes Workloads in 2026 URL: https://tokrepo.com/en/workflows/asset-c8bc2375 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenKruise adds in-place updates, sidecar containers, image pre-pulling, and advanced rollout strategies to Kubernetes workloads. ## What it is OpenKruise is a CNCF sandbox project that extends Kubernetes with advanced workload controllers. It provides capabilities that native Deployments and StatefulSets lack: in-place container updates (no pod r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c8bc2375) --- # Manim: Mathematical Animation Engine for Python (2026) URL: https://tokrepo.com/en/workflows/asset-c9259c0f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Manim creates mathematical animations and explanatory videos in Python, used by 3Blue1Brown. ## What it is Manim (Mathematical Animation Engine) is a community-maintained Python library for creating precise mathematical animations and explanatory videos. Originally created by Grant Sanderson for his 3Blue1Brown …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c9259c0f) --- # Taipy: Build Data and AI Web Apps in Python 2026 URL: https://tokrepo.com/en/workflows/asset-c926c5d3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Taipy combines a Python GUI builder with pipeline orchestration for data and AI web apps. ## What it is Taipy is a full-stack Python framework that combines a GUI builder with workflow orchestration for data dashboards and AI pipelines. You write dashboards and data processing pipelines in Python without swi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c926c5d3) --- # Ory Hydra: Open-Source OAuth 2.0 & OIDC Server (2026) URL: https://tokrepo.com/en/workflows/asset-c948e459 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ory Hydra handles OAuth 2.0 token issuance and consent flows while letting you control user management and login UI completely. ## What it is Ory Hydra is a hardened, OpenID Foundation-certified OAuth 2.0 and OpenID Connect provider written in Go. Unlike full identity platforms like Keycloak or Auth0, Hydra focuses exclusively on the OAuth/OIDC …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c948e459) --- # Qdrant: Vector Search Engine for AI Applications in 2026 URL: https://tokrepo.com/en/workflows/asset-c94ec45f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: High-performance open-source vector database with advanced filtering, quantization, and distributed deployment. ## What it is Qdrant is an open-source vector database built for AI applications. It stores vector embeddings and supports fast similarity search with advanced filtering, quantization for memory efficiency, and distribu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c94ec45f) --- # LitServe: Fast AI Model Serving Engine Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-c9d3044a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LitServe adds batching, streaming, and GPU autoscaling on top of FastAPI for serving AI models in production. ## What it is LitServe is a high-performance AI model serving engine built on top of FastAPI by Lightning AI. It adds batching, streaming, GPU management, and autoscaling to make deploying AI models simple and fast. You …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c9d3044a) --- # LLM CLI: Access 100+ Language Models in 2026 URL: https://tokrepo.com/en/workflows/asset-c9e10dbf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LLM is a CLI and Python library that gives you access to 100+ LLMs with built-in logging and embeddings. ## What it is LLM is a command-line tool and Python library by Simon Willison that provides a unified interface to 100+ language models. It works with both API-based models (OpenAI, Anthropic, Google) and local models ( …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c9e10dbf) --- # Harbor: Cloud Native Container Registry Guide 2026 URL: https://tokrepo.com/en/workflows/asset-c9f4655f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Harbor stores, signs, and scans container images with vulnerability scanning, RBAC, replication, and OCI compliance. ## What it is Harbor is a CNCF-graduated open-source container registry that stores, signs, and scans container images and OCI artifacts. It provides vulnerability scanning (via Trivy), role-based access control (RBAC), …(content truncated, full version at https://tokrepo.com/en/workflows/asset-c9f4655f) --- # Awesome Cursor Rules: AI Coding Standards in 2026 URL: https://tokrepo.com/en/workflows/asset-ca000374 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Pre-built .cursorrules config files for 30+ stacks so Cursor AI writes code your way. ## What it is Awesome Cursor Rules is a community-curated repository of `.cursorrules` configuration files covering 30+ technology stacks. Each file defines naming conventions, framework patterns, testing approaches, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca000374) --- # Argo CD: GitOps Continuous Delivery for K8s 2026 URL: https://tokrepo.com/en/workflows/asset-ca164613 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Argo CD syncs Kubernetes applications from Git with visual diffs and automated rollback. ## What it is Argo CD is a declarative GitOps continuous delivery tool for Kubernetes. It watches Git repositories containing your application manifests and automatically syncs them to your Kubernetes clusters. When som …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca164613) --- # vLLM: High-Throughput LLM Serving Engine (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ca2016fb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: vLLM serves LLMs with high throughput using PagedAttention and continuous batching. OpenAI-compatible API, multi-GPU support. The standard for production LLM serving. ## What it is vLLM is a high-throughput, memory-efficient inference engine for serving large language models. Its key innovation is PagedAttention, which manages attention key-value caches like virtual memory pages, dra …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca2016fb) --- # VictoriaMetrics: Fast Time Series Database (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ca380c82 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: VictoriaMetrics is a Prometheus-compatible time series database with better compression, lower resource usage, and horizontal scaling. ## What it is VictoriaMetrics is an open-source time series database and monitoring solution designed as a drop-in replacement for Prometheus. It stores metrics with significantly better compression (up to 7x compared t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca380c82) --- # Netdata: Real-Time Infrastructure Monitoring (2026) URL: https://tokrepo.com/en/workflows/asset-ca4a8158 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source monitoring agent that collects thousands of metrics per second with instant deployment. ## What it is Netdata is an open-source monitoring agent that collects thousands of system and application metrics per second with zero configuration. It provides real-time dashboards, ML-powered anomaly detection alert …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca4a8158) --- # Flux: GitOps Toolkit for Kubernetes CD in 2026 URL: https://tokrepo.com/en/workflows/asset-ca59b463 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Flux syncs Kubernetes clusters with Git repositories using composable GitOps controllers. ## What it is Flux is a CNCF-graduated GitOps toolkit for Kubernetes continuous delivery. It watches Git repositories, Helm repositories, and OCI registries, then reconciles your cluster state to match. When you push a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca59b463) --- # Mattermost: Open Source Slack Alternative for Team Messaging URL: https://tokrepo.com/en/workflows/asset-ca6c4512 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mattermost is an open-source, self-hosted messaging platform with channels, threads, voice/video calls, playbooks, and integrations as a Slack alternative. ## What it is Mattermost is an open-source messaging platform for team collaboration. It provides channels, threaded discussions, voice and video calls, playbooks (incident response workflows), and integrations with dev …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca6c4512) --- # Longhorn: Distributed Block Storage for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-ca7e61b6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lightweight distributed block storage for Kubernetes with replication, snapshots, and backups. ## What it is Longhorn is a lightweight, reliable distributed block storage system for Kubernetes. It provides persistent volumes with built-in replication, snapshots, scheduled backups to S3-compatible storage, and dis …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca7e61b6) --- # Medusa: Open Source Headless Commerce Engine (2026) URL: https://tokrepo.com/en/workflows/asset-ca8df7e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Medusa is an open-source headless commerce engine with modular architecture for building custom e-commerce experiences in Node.js. ## What it is Medusa is an open-source headless commerce engine built with Node.js and TypeScript. It provides the backend infrastructure for e-commerce: products, orders, customers, payments, shipping, discounts, and i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ca8df7e8) --- # Hasura: Instant GraphQL and REST APIs on Your DB (2026) URL: https://tokrepo.com/en/workflows/asset-caafaa4a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hasura auto-generates real-time GraphQL and REST APIs from your database with fine-grained access. ## What it is Hasura generates instant, real-time GraphQL and REST APIs on top of PostgreSQL, MySQL, SQL Server, and MongoDB. Point it at your database, and it creates a complete API with queries, mutations, subscriptio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-caafaa4a) --- # FreshRSS: Self-Hosted RSS News Aggregator in 2026 URL: https://tokrepo.com/en/workflows/asset-cad151ae Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: FreshRSS is a self-hosted RSS aggregator with multi-user support, API compatibility, and browser/mobile access. ## What it is FreshRSS is a free, self-hosted RSS feed aggregator. It provides a modern web interface for subscribing to RSS and Atom feeds, organizing them into categories, and reading articles. It supports multiple us …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cad151ae) --- # Turbopuffer: Serverless Vector DB for AI Search (2026) URL: https://tokrepo.com/en/workflows/asset-cad8d8d1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Turbopuffer offers serverless vector search with sub-millisecond queries, auto-scaling, and pay-per-query pricing. ## What it is Turbopuffer is a serverless vector database designed for AI search at scale. It provides sub-millisecond query latency, automatic scaling based on traffic, and pay-per-query pricing with no infrastructure …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cad8d8d1) --- # Claude SEO: Complete SEO Skill for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-cb068086 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An SEO skill for Claude Code that automates keyword research, on-page optimization, technical audits, and content strategy. ## What it is Claude SEO is a comprehensive skill for Claude Code that provides SEO automation capabilities. It covers keyword research, on-page optimization, technical SEO audits, meta tag generation, content optimizat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cb068086) --- # Devtron: Kubernetes App Lifecycle Management (2026) URL: https://tokrepo.com/en/workflows/asset-cb0788f9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Devtron wraps CI/CD, GitOps, security scanning, and debugging into one Kubernetes dashboard. ## What it is Devtron is an open-source platform that provides end-to-end application lifecycle management for Kubernetes. It wraps CI/CD pipelines, GitOps deployment, security scanning, and debugging tools into a singl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cb0788f9) --- # Crawl4AI: LLM-Friendly Web Crawling in Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-cb19c9d4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An open-source Python crawler that returns clean markdown output optimized for LLM ingestion and RAG pipelines. ## What it is Crawl4AI is a Python library for crawling web pages and extracting content in formats optimized for large language models. Unlike traditional web scrapers that return raw HTML or DOM trees, Crawl4AI conver …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cb19c9d4) --- # Citus: Distributed PostgreSQL for Sharding in 2026 URL: https://tokrepo.com/en/workflows/asset-cb669573 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Citus turns PostgreSQL into a distributed cluster with sharding, columnar storage, and parallel queries while keeping full SQL. ## What it is Citus is a PostgreSQL extension that transforms a single-node Postgres database into a distributed cluster. It adds horizontal sharding, columnar storage, and parallel query execution while preserving full …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cb669573) --- # Crawl4AI: LLM-Ready Web Crawler in Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-cb733d4d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Crawl4AI crawls websites and returns clean markdown optimized for LLM consumption, with anti-bot bypass and structured extraction. ## What it is Crawl4AI is an open-source Python web crawler purpose-built for AI and LLM pipelines. It extracts clean markdown from any website, handling JavaScript rendering, anti-bot measures, tables, code blocks, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cb733d4d) --- # Elasticsearch MCP: Search Analytics for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-cba686ed Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: An MCP server that lets AI agents query and manage Elasticsearch clusters via natural language. ## What it is Elasticsearch MCP is a Model Context Protocol server that connects AI agents to Elasticsearch clusters. It exposes search, indexing, and cluster management operations as MCP tools, letting agents like Clau …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cba686ed) --- # Together AI Dedicated Endpoints Skill Guide 2026 URL: https://tokrepo.com/en/workflows/asset-cbbd6c05 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This skill teaches coding agents how to provision and manage Together AI dedicated endpoints with autoscaling on single-tenant GPUs. ## What it is Together AI Dedicated Endpoints Skill is a configuration package that teaches AI coding agents how to provision and manage dedicated GPU inference endpoints on Together AI. It covers creating endpoints wit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cbbd6c05) --- # Claude Code K8s Specialist: Kubernetes Agent in 2026 URL: https://tokrepo.com/en/workflows/asset-cc023b17 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A specialized Claude Code agent that handles Kubernetes deployments, helm charts, troubleshooting, and cluster management. ## What it is Claude Code Agent: K8s Specialist is a pre-configured Claude Code agent for DevOps and infrastructure tasks focused on Kubernetes. It handles deployment configurations, helm charts, troubleshooting, scalin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc023b17) --- # Django Web Framework: Python Development in 2026 URL: https://tokrepo.com/en/workflows/asset-cc164535 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Django gives you ORM, admin, auth, and migrations out of the box in Python. ## What it is Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. It is batteries-included: ORM for database access, admin interface for content management, authent …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc164535) --- # Laravel: The PHP Framework for Web Artisans (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-cc164e67 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Laravel is the most popular PHP web framework, providing Eloquent ORM, Blade templates, queues, events, broadcasting, and a comprehensive ecosystem. ## What it is Laravel is a PHP web framework with an expressive, elegant syntax. It provides routing, Eloquent ORM for database operations, Blade template engine, queue management, event broadcasting, task scheduling, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc164e67) --- # Spring Boot: Production-Grade Java Apps Guide (2026) URL: https://tokrepo.com/en/workflows/asset-cc16509a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Spring Boot auto-configures stand-alone Java apps with embedded servers, actuator endpoints, and a massive starter ecosystem. ## What it is Spring Boot is a framework that simplifies building production-grade, stand-alone Spring-based Java applications. It removes most of the configuration boilerplate that traditional Spring required by provid …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc16509a) --- # Express: Node.js Web Framework Essential Guide (2026) URL: https://tokrepo.com/en/workflows/asset-cc16528f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Express is the minimal, flexible Node.js web framework that inspired Koa, Hono, Fastify, and remains the go-to starting point for backends. ## What it is Express is the original and most popular web framework for Node.js. It provides a minimal, unopinionated foundation for building web applications and APIs. Express handles routing, middleware composition, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc16528f) --- # Ruby on Rails: Full-Stack Web Framework Guide 2026 URL: https://tokrepo.com/en/workflows/asset-cc16545d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rails provides convention-over-configuration MVC, ActiveRecord ORM, scaffolding, and rapid prototyping for web applications. ## What it is Ruby on Rails is a full-stack web framework built on the Ruby programming language. Created by DHH in 2004, it popularized conventions like MVC architecture, convention over configuration, and database mig …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc16545d) --- # LangGraph: Build Stateful AI Agents as Graphs 2026 URL: https://tokrepo.com/en/workflows/asset-cc1a6ed2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangGraph models AI agents as stateful graphs with cycles, branching, persistence, and human-in-the-loop for production reliability. ## What it is LangGraph is the LangChain framework for building AI agents as stateful directed graphs rather than linear chains. Each node represents a computation (LLM call, tool use, decision), and edges define how st …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cc1a6ed2) --- # Firecracker: Secure Lightweight MicroVMs (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ccce9812 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Firecracker boots minimal KVM-based microVMs in milliseconds. The open-source engine behind AWS Lambda and Fargate. ## What it is Firecracker is an open-source virtual machine monitor (VMM) developed by AWS. It creates and manages lightweight microVMs that boot in under 125 milliseconds with minimal memory overhead. Each microVM runs …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ccce9812) --- # LitGPT: Fine-Tune and Deploy AI Models Simply 2026 URL: https://tokrepo.com/en/workflows/asset-cd28bce4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lightning AI framework for fine-tuning and serving 20+ LLM families with LoRA, QLoRA, and full fine-tuning on consumer GPUs. ## What it is LitGPT is Lightning AI's framework for fine-tuning and serving large language models. It supports 20+ model families including Llama, Mistral, Gemma, and Phi, with training methods including LoRA, QLoRA, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cd28bce4) --- # Scrapy: Python Web Crawling Framework Guide 2026 URL: https://tokrepo.com/en/workflows/asset-cd40eff3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Scrapy handles concurrent scraping, retries, and data pipelines so you write just the spider. ## What it is Scrapy is the most battle-tested web scraping framework for Python. It handles concurrency, retries, throttling, cookies, and export pipelines, letting you write spiders that scale from one page to million …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cd40eff3) --- # BuildKit: Concurrent Cache-Efficient OCI Builder (2026) URL: https://tokrepo.com/en/workflows/asset-cd46c5c6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: BuildKit powers docker build with concurrent DAG-based builds and advanced caching. ## What it is BuildKit is the modern container image builder that powers `docker build` and `docker buildx`. It replaces the legacy Docker builder with a concurrent DAG-based build engine that executes independent build …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cd46c5c6) --- # Rich: Beautiful Python Terminal Formatting (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-cd60c899 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rich adds colorized output, tables, progress bars, and syntax highlighting to any Python CLI with minimal code. ## What it is Rich is a Python library for rendering beautiful text, tables, progress bars, markdown, syntax-highlighted code, and tracebacks in the terminal. It turns any Python CLI into a polished user experience with …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cd60c899) --- # Textual: Python TUI Framework with CSS Styling (2026) URL: https://tokrepo.com/en/workflows/asset-cd808776 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Textual builds sophisticated terminal UIs in Python with CSS styling, async events, and browser deployment. ## What it is Textual is a Python framework for building terminal user interfaces (TUIs) with CSS-based styling, async event handling, and over 20 built-in widgets. Built on top of Rich, Textual lets you create applicat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cd808776) --- # Gogs: Lightweight Self-Hosted Git Service in Go (2026) URL: https://tokrepo.com/en/workflows/asset-cda70b8e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gogs is a single Go binary that provides a full GitHub-like Git hosting experience on minimal hardware. ## What it is Gogs is a self-hosted Git service built with Go that provides a clean web interface for hosting Git repositories. It includes issue tracking, pull requests, code review, built-in wiki, webhooks, and organi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cda70b8e) --- # Hugo: Fastest Static Site Generator Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-ce6e0794 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The fastest static site generator, written in Go. Builds thousands of pages in milliseconds with markdown content and Go templates. ## What it is Hugo is the fastest static site generator in the world, written in Go. It builds thousands of pages in milliseconds using Go templates, Markdown content, shortcodes, and a powerful taxonomy system. Hugo i …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e0794) --- # Slidev: Markdown Presentation Slides for Devs (2026) URL: https://tokrepo.com/en/workflows/asset-ce6e1004 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Slidev lets developers write presentation slides in Markdown with code highlighting and Vue. ## What it is Slidev is a Markdown-based presentation tool designed for developers. You write slides in Markdown, use Vue components for interactivity, and get code syntax highlighting with animations, live coding capab …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1004) --- # Dioxus: Full-Stack Rust App Framework Guide 2026 URL: https://tokrepo.com/en/workflows/asset-ce6e125e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dioxus builds cross-platform apps in Rust with a React-like component model. ## What it is Dioxus is a full-stack application framework for Rust with a React-like API. You write components with hooks, props, and JSX-like syntax (RSX), and Dioxus compiles them to web (WASM), desktop (native WebVi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e125e) --- # Yew: Rust WASM Framework for Web Applications (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ce6e1482 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Yew compiles Rust to WebAssembly for building web applications with a component-based virtual DOM, hooks, and a React-like developer experience. ## What it is Yew is a Rust framework for creating reliable and efficient web applications that compile to WebAssembly. It provides a component-based architecture with a virtual DOM, hooks (use_state, use_effect, use_co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1482) --- # Hyperfine: Command-Line Benchmarking Tool in 2026 URL: https://tokrepo.com/en/workflows/asset-ce6e174e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hyperfine benchmarks shell commands with warmup runs, statistical analysis, and result export. ## What it is Hyperfine is a command-line benchmarking tool written in Rust. It runs shell commands multiple times, performs statistical analysis on the timing results, and reports mean, standard deviation, min, and max …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e174e) --- # Glow: Render Markdown on the CLI with Style (2026) URL: https://tokrepo.com/en/workflows/asset-ce6e1914 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Glow renders Markdown files with syntax highlighting and theming directly in the terminal. ## What it is Glow is a terminal-based Markdown reader built by Charmbracelet. It renders Markdown files with syntax highlighting, word wrapping, and configurable themes directly in your terminal. It also features a sta …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1914) --- # mdBook: Create Books from Markdown in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ce6e1a98 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: mdBook generates polished online books from Markdown files, fast and dependency-free in Rust. ## What it is mdBook is a Rust-based tool that generates online books from Markdown files. It is similar to Gitbook but faster, simpler, and requires no JavaScript runtime. The Rust project itself uses mdBook for its of …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1a98) --- # Leptos: Build Fast Web Apps with Rust and Wasm (2026) URL: https://tokrepo.com/en/workflows/asset-ce6e1c12 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Leptos brings signals-based reactivity to Rust web apps, compiling to WebAssembly with server-side rendering. ## What it is Leptos is a full-stack Rust web framework that uses fine-grained reactivity inspired by SolidJS. It compiles to WebAssembly for the client side and runs server functions natively, giving you a single langu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1c12) --- # VitePress: Vite-Powered Static Site Generator (2026) URL: https://tokrepo.com/en/workflows/asset-ce6e1d98 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: VitePress builds documentation sites from Markdown with Vue components, Vite HMR, and near-instant builds. ## What it is VitePress is a static site generator built on Vite and Vue.js, designed specifically for documentation websites. It combines Markdown-centered authoring with the ability to embed Vue components directly in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1d98) --- # Zola: Fast Static Site Generator in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ce6e1f4f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zola builds static sites fast with built-in Sass, syntax highlighting, and search -- all in one binary. ## What it is Zola is a static site generator built as a single Rust binary with zero external dependencies. It includes Sass compilation, syntax highlighting, table of contents generation, full-text search index, image …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ce6e1f4f) --- # ZeroTier: Programmable Overlay Network for Teams (2026) URL: https://tokrepo.com/en/workflows/asset-ceb43612 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ZeroTier creates encrypted peer-to-peer Layer-2 overlay networks that traverse NATs and connect any device, cloud, or edge node. ## What it is ZeroTier is an open-source software-defined networking tool that creates encrypted peer-to-peer Layer-2 overlay networks. It connects devices across NATs, firewalls, clouds, and on-premises infrastructure …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ceb43612) --- # RisingWave: Cloud-Native Streaming Database (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ceff5b8b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RisingWave processes streaming data with standard SQL and incrementally maintained materialized views, replacing Flink plus a database. ## What it is RisingWave is a cloud-native streaming database written in Rust. It ingests data from Kafka, Pulsar, Kinesis, and other sources, processes it with standard SQL including joins, aggregations, and window fun …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ceff5b8b) --- # Firecrawl: Web Scraping API Built for LLMs (2026) URL: https://tokrepo.com/en/workflows/asset-cf56d8ce Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Firecrawl scrapes websites into clean markdown or structured JSON for AI consumption. ## What it is Firecrawl is a web scraping API purpose-built for feeding data to LLMs. It handles JavaScript rendering, anti-bot protection, and rate limiting, then outputs clean markdown or structured JSON ready for AI …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cf56d8ce) --- # Composio: 250+ Tool Integrations for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-cf74621a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Composio gives AI agents managed access to 250+ tools like GitHub, Slack, and Gmail in one SDK. ## What it is Composio is a tool integration platform that connects AI agents to over 250 external services including GitHub, Slack, Gmail, Jira, Notion, and Salesforce. It handles authentication (OAuth, API keys), acti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cf74621a) --- # Marker: Convert PDF to Markdown for AI Tools (2026) URL: https://tokrepo.com/en/workflows/asset-cfafd4e4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Marker converts PDFs to clean Markdown preserving tables, equations, and formatting for use with AI tools. ## What it is Marker is an open-source tool that converts PDF, EPUB, and MOBI documents to clean Markdown. It uses a combination of deep learning models to handle complex document layouts including tables, equations, mu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cfafd4e4) --- # Gotify: Self-Hosted Push Notification Server (2026) URL: https://tokrepo.com/en/workflows/asset-cfc426e7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gotify delivers push notifications through a REST API and WebSocket with a web UI and Android app, fully self-hosted. ## What it is Gotify is a self-hosted push notification server written in Go. It provides a REST API for sending notifications, real-time WebSocket delivery for receiving them, a web UI for management, and an Android ap …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cfc426e7) --- # Qwen-Agent: Multi-Tool AI Agent Framework (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-cfd97f48 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Qwen-Agent provides tool calling, code execution, RAG, and browser control for building agents with Qwen models. ## What it is Qwen-Agent is an agent framework built around Alibaba's Qwen large language models. It provides tool calling, code execution (code interpreter), retrieval-augmented generation (RAG), and browser control ca …(content truncated, full version at https://tokrepo.com/en/workflows/asset-cfd97f48) --- # Claude Code Agent: Automated PR Code Reviewer (2026) URL: https://tokrepo.com/en/workflows/asset-d004b554 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent that performs comprehensive code reviews checking security, performance, and best practices. ## What it is This Claude Code agent automates code reviews by analyzing pull requests for security vulnerabilities, performance issues, maintainability concerns, and adherence to best practices. It installs with a sing …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d004b554) --- # Cloudflare Workers MCP: Edge AI Agent Tools (2026) URL: https://tokrepo.com/en/workflows/asset-d0283053 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server connecting AI agents to Cloudflare Workers for deploying edge functions and managing storage from chat. ## What it is Cloudflare Workers MCP is a Model Context Protocol server that connects AI coding agents to the Cloudflare developer platform. It lets agents deploy edge functions, manage KV key-value storage, R2 object s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d0283053) --- # Easegress: Cloud-Native Traffic Orchestration in Go (2026) URL: https://tokrepo.com/en/workflows/asset-d0e8f036 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Easegress routes and load-balances HTTP traffic through composable filter pipelines with built-in resilience patterns and Raft-based HA. ## What it is Easegress is a cloud-native traffic orchestration system written in Go. It functions as an API gateway, load balancer, and service mesh sidecar, processing requests through composable filter pipelines. Eac …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d0e8f036) --- # LiteLLM: Unified Proxy for 100+ LLM APIs in Python (2026) URL: https://tokrepo.com/en/workflows/asset-d11eb1fe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Python proxy that translates OpenAI-format API calls to 100+ LLM providers for seamless model switching. ## What it is LiteLLM is a Python library and proxy server that provides a unified API interface for calling over 100 LLM providers. You write your code once using the OpenAI SDK format, and LiteLLM translates the call …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d11eb1fe) --- # VideoCaptioner: AI-Powered Subtitle Pipeline with Whisper URL: https://tokrepo.com/en/workflows/asset-d12d8441 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: VideoCaptioner combines Whisper transcription, LLM-based correction, 99-language translation, and styled subtitle export in a single desktop application. ## What it is VideoCaptioner is an open-source desktop application that automates the video subtitle workflow. It chains Whisper-based speech recognition, LLM-powered text correction, translation into 99 languages, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d12d8441) --- # Phidata: Build and Deploy AI Agents at Scale (2026) URL: https://tokrepo.com/en/workflows/asset-d1627127 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Phidata provides a Python framework for building AI agents with memory, knowledge bases, tools, reasoning, and multi-agent team workflows. ## What it is Phidata is a Python framework for building, running, and managing AI agents at scale. It provides built-in support for agent memory, knowledge bases, tool integration, reasoning chains, and multi-agent tea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d1627127) --- # Together AI GPU Clusters Skill for Claude Code (2026) URL: https://tokrepo.com/en/workflows/asset-d1647e03 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill that teaches the agent how to provision and manage H100, H200, and B200 GPU clusters on Together AI. ## What it is The Together AI GPU Clusters skill teaches Claude Code how to use Together AI's GPU cluster API. Once installed, Claude Code can provision on-demand and reserved clusters of H100, H200, and B200 GPUs for l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d1647e03) --- # AI Project Starter Kit: CLAUDE.md, MCP, and Skills Setup URL: https://tokrepo.com/en/workflows/asset-d1a894ea Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A starter template with pre-configured CLAUDE.md, essential MCP servers, and recommended skills so you can start coding with Claude Code immediately. ## What it is This starter kit provides a ready-to-use project template for AI-powered development with Claude Code. It includes a pre-configured CLAUDE.md file, essential MCP server configurations, recommended skill in …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d1a894ea) --- # Rundeck: Open Source Runbook Automation and Scheduler (2026) URL: https://tokrepo.com/en/workflows/asset-d1bf0e61 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rundeck defines runbooks as executable jobs with steps, schedules, access control, and audit trails for operations teams. ## What it is Rundeck is an open-source runbook automation platform that lets operations teams define, schedule, and execute operational procedures as repeatable jobs. Each job consists of ordered steps (scripts, comman …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d1bf0e61) --- # Mage: Modern Data Pipeline Tool for Engineers in 2026 URL: https://tokrepo.com/en/workflows/asset-d1c8069c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source data pipeline tool combining notebook interactivity with production orchestration for ETL/ELT. ## What it is Mage is an open-source data pipeline tool that merges the interactivity of notebooks with the reliability of orchestrators. It provides a visual editor for building ETL/ELT pipelines using Python, SQL, or …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d1c8069c) --- # Vercel Skills: Agent Skill Ecosystem and CLI in 2026 URL: https://tokrepo.com/en/workflows/asset-d1eba6f1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Install packaged SKILL.md instruction sets into Claude Code, Cursor, Codex, and 30+ AI agents with one CLI command. ## What it is Vercel Skills is an open ecosystem for packaging and distributing AI agent instructions as SKILL.md files. Each skill is a self-contained instruction set that teaches an AI coding agent how to perform a sp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d1eba6f1) --- # Conftest: Test Config with Open Policy Agent (2026) URL: https://tokrepo.com/en/workflows/asset-d3137f66 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Conftest tests structured config files against Rego policies, catching misconfigurations before deployment. ## What it is Conftest is a command-line tool for writing tests against structured configuration data using the Rego policy language from Open Policy Agent (OPA). It validates Kubernetes manifests, Terraform plans, Dock …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3137f66) --- # Terraform: Infrastructure as Code for Any Cloud 2026 URL: https://tokrepo.com/en/workflows/asset-d31a13f3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Terraform lets you define, provision, and manage cloud infrastructure across any provider using declarative configuration files. ## What it is Terraform is an open-source infrastructure-as-code tool by HashiCorp. You write declarative configuration files (HCL) that describe your desired infrastructure state, and Terraform figures out what API cal …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d31a13f3) --- # Minikube: Run Kubernetes Locally on macOS, Linux, or Windows URL: https://tokrepo.com/en/workflows/asset-d338cf45 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Minikube runs a single-node Kubernetes cluster on your laptop for developing, testing, and learning Kubernetes without cloud infrastructure. ## What it is Minikube runs a local Kubernetes cluster on your laptop. It creates a single-node cluster using Docker, VirtualBox, or other VM drivers, giving you a fully functional Kubernetes environment for development …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d338cf45) --- # Headscale: Self-Hosted Tailscale Control Server (2026) URL: https://tokrepo.com/en/workflows/asset-d339dece Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Headscale lets you run your own Tailscale-compatible control server for a private WireGuard mesh VPN without a Tailscale subscription. ## What it is Headscale is an open-source implementation of the Tailscale control server (coordination server). Tailscale clients connect to Headscale instead of Tailscale's SaaS control plane, giving you a fully self-h …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d339dece) --- # ScrapeGraphAI: AI-Powered Web Scraping with LLMs (2026) URL: https://tokrepo.com/en/workflows/asset-d34e3181 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ScrapeGraphAI lets you describe what to extract in plain English and returns structured data from any website. ## What it is ScrapeGraphAI is a Python web scraping library that uses large language models to extract structured data from websites. Instead of writing CSS selectors or XPath queries, you describe what you want in nat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d34e3181) --- # HashiCorp Vault: Secrets Management Platform (2026) URL: https://tokrepo.com/en/workflows/asset-d359a6e1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Industry-standard platform for managing secrets, dynamic credentials, and encryption as a service. ## What it is HashiCorp Vault is a secrets management and encryption platform that centralizes the storage and access of sensitive data: API keys, database credentials, TLS certificates, and encryption keys. Vault provi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d359a6e1) --- # NetBird: Open Source WireGuard Mesh VPN Setup (2026) URL: https://tokrepo.com/en/workflows/asset-d3796427 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NetBird builds secure WireGuard mesh VPNs with SSO, MFA, and zero-trust access controls. ## What it is NetBird is an open-source, WireGuard-based mesh VPN and zero-trust networking platform. It connects devices (laptops, servers, mobile phones) into a secure overlay network with end-to-end encryption, SSO a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3796427) --- # NATS: Cloud Native High-Performance Messaging (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-d3992702 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NATS provides pub/sub, request/reply, and persistent streaming for cloud-native microservices. ## What it is NATS is a simple, secure, and high-performance messaging system designed for cloud-native applications, IoT, and microservices architectures. It supports publish/subscribe, request/reply, and persistent st …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3992702) --- # Lazydocker: Terminal Docker Management Tool 2026 URL: https://tokrepo.com/en/workflows/asset-d3b63baa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lazydocker shows containers, images, logs, and stats in one terminal dashboard. ## What it is Lazydocker is a terminal user interface for managing Docker and Docker Compose. It presents containers, images, volumes, logs, and resource stats in a single dashboard. You can stop, restart, remove, and p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3b63baa) --- # zoxide: Smarter cd Command for Developers in 2026 URL: https://tokrepo.com/en/workflows/asset-d3b64571 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: zoxide tracks your directory visits and lets you jump to any frequently-used directory with a few keystrokes via fuzzy matching. ## What it is zoxide is a Rust-based replacement for the `cd` command that ranks directories by frequency and recency (a metric called frecency). Instead of typing full paths, you type `z proj` and zoxide jumps to `~/co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3b64571) --- # Just: Modern Command Runner and Makefile Alt 2026 URL: https://tokrepo.com/en/workflows/asset-d3b6480b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Just provides a simpler alternative to Make for running project commands with a clean syntax, variables, arguments, and cross-platform support. ## What it is Just is a command runner that serves as a modern replacement for Make. You write recipes in a Justfile with a simple syntax, and run them with `just recipe-name`. Unlike Make, Just has no file-dependency s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3b6480b) --- # Atuin: Shell History with Sync and Search (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-d3b64b0c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Atuin replaces shell history with a SQLite database, adding full-text search, cross-machine sync, and encrypted backup. ## What it is Atuin replaces your existing shell history with a SQLite database, recording additional context like the working directory, exit code, session ID, and command duration for every command. It provides full-t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3b64b0c) --- # eza: Modern Colorful Replacement for ls with Git Status URL: https://tokrepo.com/en/workflows/asset-d3b64cc3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: eza replaces ls with colored output, Git status indicators, file type icons, tree view, and improved long-format display. ## What it is eza is a modern replacement for the ls command. It adds colors by default, Git status indicators alongside file names, file type icons, tree view, and improved long-format output with human-readable file s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d3b64cc3) --- # Remotion Subtitles Rule: Caption Your Videos (2026) URL: https://tokrepo.com/en/workflows/asset-d43f84af Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion agent rule that teaches AI assistants how to add subtitles to React-based videos. ## What it is This Remotion rule defines how AI coding agents should generate subtitle and caption components in Remotion video projects. It is part of the official Remotion Agent Skill that teaches AI assistants the co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d43f84af) --- # Memos: Self-Hosted Note-Taking with Markdown (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-d4bf6827 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Memos is a self-hosted note-taking tool with Markdown support, tags, and a timeline-style interface. ## What it is Memos is an open-source, self-hosted note-taking tool designed for quick idea capture. It features a Twitter-like timeline interface where notes appear as short posts, Markdown support for formatting, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d4bf6827) --- # Ghostfolio: Open Source Portfolio Tracker (2026) URL: https://tokrepo.com/en/workflows/asset-d4e2f573 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ghostfolio tracks your stocks, ETFs, and crypto in a self-hosted dashboard with real-time market data and privacy. ## What it is Ghostfolio is an open-source personal finance dashboard for tracking investment portfolios. Built with Angular, NestJS, and Prisma, it provides a clean interface to monitor stocks, ETFs, cryptocurrencies, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d4e2f573) --- # Docmost: Open Source Collaborative Wiki Guide 2026 URL: https://tokrepo.com/en/workflows/asset-d505e49b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docmost provides self-hosted team wikis with real-time collaboration and rich editing. ## What it is Docmost is an open-source collaborative wiki and documentation platform. It serves as a self-hosted alternative to Confluence and Notion, providing real-time collaboration, a rich block-based editor, permi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d505e49b) --- # Postiz: Open Source Social Media Scheduling Tool (2026) URL: https://tokrepo.com/en/workflows/asset-d528c69b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Postiz is a self-hostable social media scheduling tool with AI content generation, multi-platform posting, and team collaboration. ## What it is Postiz is an open-source social media scheduling and management platform. It provides AI-powered content generation, multi-platform posting (Twitter/X, LinkedIn, Instagram, Facebook, and more), team collab …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d528c69b) --- # Rallly: Open Source Meeting Scheduling Tool (2026) URL: https://tokrepo.com/en/workflows/asset-d54be0e0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rallly is a free, open-source Doodle alternative for scheduling group meetings without requiring sign-up. ## What it is Rallly is an open-source alternative to Doodle for scheduling group meetings. It lets you create availability polls, share them with participants, and find the best meeting time. Participants do not need t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d54be0e0) --- # AgentOps: Observability for AI Agents in Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-d570c84f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AgentOps provides LLM cost tracking, session replay, and error analysis for AI agents via a Python SDK. ## What it is AgentOps is a Python SDK for monitoring AI agents in production. It provides LLM cost tracking, session replay, benchmarking, and error analysis. The SDK auto-instruments LLM calls from OpenAI, Anthropic, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d570c84f) --- # Slack MCP Server: AI Agent Team Messaging 2026 URL: https://tokrepo.com/en/workflows/asset-d5a6ae87 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Slack MCP lets AI agents send messages, read channels, and search Slack workspaces. ## What it is Slack MCP is a Model Context Protocol server that connects AI agents to Slack workspaces. Through this integration, AI assistants like Claude Code or Cursor can send messages, read channels, search convers …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d5a6ae87) --- # Revideo: Code-Driven Video Editor for Dev Teams (2026) URL: https://tokrepo.com/en/workflows/asset-d6468cb8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Revideo lets you build videos programmatically in TypeScript with API-driven rendering, forked from Motion Canvas. ## What it is Revideo is an open-source framework for creating videos programmatically using TypeScript. It is a fork of Motion Canvas, designed for developers who want to define scenes, animations, and transitions in c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d6468cb8) --- # Repomix: Pack Any Repo into One AI-Ready File in 2026 URL: https://tokrepo.com/en/workflows/asset-d659a8be Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Repomix packs your entire repository into one file optimized for LLM context windows with token counting and security scanning. ## What it is Repomix is a developer tool that packs an entire repository into a single, AI-optimized file. When you need to feed a codebase to an LLM for analysis, code review, or documentation generation, Repomix crea …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d659a8be) --- # GitHub MCP: Repository Management for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-d6e7f6a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official GitHub MCP server providing AI agents with access to repos, issues, PRs, code search, Actions, and project management. ## What it is The GitHub MCP server is the official Model Context Protocol integration for GitHub. It gives AI agents access to repositories, issues, pull requests, code search, GitHub Actions, and project management th …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d6e7f6a5) --- # Distribution: OCI Container Registry Toolkit 2026 URL: https://tokrepo.com/en/workflows/asset-d71cfb41 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Distribution is the reference OCI container registry implementation that powers Docker Hub, GitHub Container Registry, and most private registries. ## What it is Distribution is the reference implementation of the OCI Distribution Specification. It provides a container image registry that stores and serves Docker and OCI container images. This is the same codebase …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d71cfb41) --- # Lark CLI Events Skill: Real-Time Subscriptions 2026 URL: https://tokrepo.com/en/workflows/asset-d74aa20d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lark CLI skill that enables real-time WebSocket event listening with regex routing and NDJSON output. ## What it is This is a Lark/Feishu CLI skill for event-driven workflows. It provides WebSocket real-time event listening with regex-based routing and NDJSON output, designed for automation pipelines and integrations. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d74aa20d) --- # OpenAI Swarm: Lightweight Multi-Agent Orchestration (2026) URL: https://tokrepo.com/en/workflows/asset-d75dad10 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenAI Swarm provides ergonomic agent handoffs and tool calling as a thin layer over Chat Completions. ## What it is OpenAI Swarm is an educational multi-agent framework that demonstrates lightweight patterns for orchestrating multiple AI agents. It provides ergonomic agent handoffs, tool calling, and context variables w …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d75dad10) --- # Trae Agent: AI Coding Agent by ByteDance in 2026 URL: https://tokrepo.com/en/workflows/asset-d77fd4c5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source autonomous coding agent from ByteDance that handles software engineering tasks with multi-provider LLM support. ## What it is Trae Agent is an open-source autonomous coding agent built by ByteDance. It handles software engineering tasks end-to-end: reading codebases, planning changes, writing code, running tests, and iterating un …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d77fd4c5) --- # OpenHands: Open-Source AI Software Developer (2026) URL: https://tokrepo.com/en/workflows/asset-d837fdc2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source autonomous AI developer that writes code, runs commands, and interacts with APIs. ## What it is OpenHands (formerly OpenDevin) is an open-source autonomous AI software developer. It can write code, execute shell commands, browse the web, interact with APIs, and manage git workflows. The agent operate …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d837fdc2) --- # Together AI Video Generation Skill for Claude (2026) URL: https://tokrepo.com/en/workflows/asset-d848ded0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill for Together AI's video generation API covering text-to-video and image-to-video. ## What it is This skill teaches Claude Code how to use Together AI's video generation API. It covers text-to-video generation, image-to-video conversion, and keyframe control for creating AI-powered video content. With …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d848ded0) --- # WeKan: Open Source Kanban Board for Teams (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-d8bc68b6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: WeKan is an open-source self-hosted Kanban board with boards, lists, cards, swimlanes, WIP limits, and full data control. ## What it is WeKan is a self-hosted open-source Kanban board that provides teams with full control over their task management workflow. It offers boards, lists, cards, swimlanes, checklists, due dates, labels, WIP (wor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d8bc68b6) --- # Biome: Fast Rust-Powered Formatter and Linter (2026) URL: https://tokrepo.com/en/workflows/asset-d8e830a7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rust-powered formatter and linter that replaces Prettier + ESLint with a single fast tool. ## What it is Biome is a Rust-powered code formatter and linter for JavaScript, TypeScript, JSX, JSON, and CSS. It combines the functionality of Prettier (formatting) and ESLint (linting) into a single tool with zero co …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d8e830a7) --- # /go Slash Command: Verify, Simplify, Ship PR for Claude Code URL: https://tokrepo.com/en/workflows/asset-d8f73db9 Type: featured-workflow Updated: 2026-04-30T11:16:39.897423 > **TL;DR**: /go is a community-written Claude Code slash command that chains three ship-time gates into one keystroke. It invokes the verify-app subagent for E2E tests, then the Anthropic-official code-simplifier subagent for cleanup, then re-runs verify-app to catch regressions, and finally calls /commit-push-pr to open a pull request. Any failed gate stops the sequence with a clear failure summary instead of pushing broken or unverified code. Save the prompt template to .claude/commands/go.md and reload Claude Code to install in under sixty seconds. ## What /go Does in 30 Seconds `/go` is a community-written Claude Code slash command that bundles three ship-time gates into a single keystroke: it invokes the `verify-app` subagent (E2E test pass), then the `code-simp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d8f73db9) --- # Qwen-Agent: Build AI Agents on Qwen Models in 2026 URL: https://tokrepo.com/en/workflows/asset-d95df987 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Alibaba's agent framework with function calling, code interpreter, RAG, and MCP support built for Qwen 3.0+ models. ## What it is Qwen-Agent is an agent framework by Alibaba designed for building AI agents on top of Qwen models. It provides function calling, a built-in code interpreter, RAG (retrieval-augmented generation), and MCP s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d95df987) --- # Context7: Live Library Docs MCP Server for LLMs (2026) URL: https://tokrepo.com/en/workflows/asset-d95ee526 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Context7 feeds version-specific library docs into LLM context via MCP, eliminating hallucinated APIs and outdated suggestions. ## What it is Context7 is an MCP server that fetches up-to-date, version-specific library documentation and injects it directly into LLM context. When an AI coding agent needs to use a library API, Context7 pulls the cu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-d95ee526) --- # Together AI Embeddings and Reranking Skill (2026) URL: https://tokrepo.com/en/workflows/asset-da3bf81c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill covering Together AI's embeddings and reranking API for semantic search, RAG pipelines, and result reranking patterns. ## What it is This skill teaches Claude Code how to use Together AI's embeddings and reranking API. It covers dense vector generation for semantic search, building RAG (Retrieval-Augmented Generation) pipelines, and rer …(content truncated, full version at https://tokrepo.com/en/workflows/asset-da3bf81c) --- # AI Shell: Natural Language to Shell Commands in 2026 URL: https://tokrepo.com/en/workflows/asset-da61dedb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AI Shell translates plain English descriptions into shell commands you can execute, revise, or cancel. ## What it is AI Shell is a CLI tool by Builder.io that converts natural language into shell commands using AI. You describe what you want in plain English, and it suggests the exact command to run. It supports 13+ lang …(content truncated, full version at https://tokrepo.com/en/workflows/asset-da61dedb) --- # Composio: 250+ Tool Integrations for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-da7c97a3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Composio gives AI agents access to 250+ external tools with managed auth, Python/JS SDKs, and MCP support. ## What it is Composio connects AI agents to over 250 external tools and services including GitHub, Slack, Jira, databases, Google Workspace, and more. It handles the complexity of OAuth flows, API key management, and r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-da7c97a3) --- # Lark CLI Skill: Calendar Event Management (2026) URL: https://tokrepo.com/en/workflows/asset-da8b5cb3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lark CLI skill for calendar management: agenda, events, free/busy, and time suggestions. ## What it is Lark Calendar is a CLI skill for the Lark/Feishu collaboration platform that lets you manage calendar events from the terminal. It supports viewing agendas, creating events, inviting attendees, checking fr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-da8b5cb3) --- # RocksDB: Embeddable Persistent Key-Value Store (2026) URL: https://tokrepo.com/en/workflows/asset-daa7a5d7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: RocksDB is a C++ LSM-tree engine optimized for fast SSDs with high write throughput and low read latency. ## What it is RocksDB is a C++ embeddable persistent key-value store developed at Meta (Facebook). It uses an LSM-tree (Log-Structured Merge-tree) architecture optimized for fast storage devices like NVMe SSDs. RocksDB …(content truncated, full version at https://tokrepo.com/en/workflows/asset-daa7a5d7) --- # DevSpace: Kubernetes Dev Workflow Tool in 2026 URL: https://tokrepo.com/en/workflows/asset-db044cf3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DevSpace reads a single devspace.yaml to build images, deploy to Kubernetes, sync files, port-forward, and stream logs in one command. ## What it is DevSpace is an open-source CLI tool that transforms any code repository into a Kubernetes development environment. It handles image building, deployment, port-forwarding, file synchronization, and log stre …(content truncated, full version at https://tokrepo.com/en/workflows/asset-db044cf3) --- # Rerun: Visualize Multimodal AI Data in Real-Time (2026) URL: https://tokrepo.com/en/workflows/asset-db28c112 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rerun logs and visualizes 3D, images, and time series in real-time for AI work. ## What it is Rerun is an open-source SDK and viewer for logging, storing, and visualizing multimodal data in real-time. It handles 3D point clouds, camera images, time series, tensors, text, and more -- all in a single …(content truncated, full version at https://tokrepo.com/en/workflows/asset-db28c112) --- # Knative Serving: Serverless Workloads on Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-db3b0313 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Knative Serving adds scale-to-zero autoscaling and traffic splitting to Kubernetes workloads. ## What it is Knative Serving is the serverless sub-project of Knative, a CNCF incubating project started at Google. It layers request-driven autoscaling and traffic-splitting on top of Kubernetes, so teams can focus on …(content truncated, full version at https://tokrepo.com/en/workflows/asset-db3b0313) --- # Strimzi: Run Apache Kafka on Kubernetes in 2026 URL: https://tokrepo.com/en/workflows/asset-db994635 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Strimzi deploys and manages Apache Kafka clusters on Kubernetes using native operators. ## What it is Strimzi provides Kubernetes operators that deploy, manage, and scale Apache Kafka clusters natively on any Kubernetes distribution. Instead of manually configuring Kafka brokers, ZooKeeper, and Connect wor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-db994635) --- # SWR: React Hooks for Data Fetching by Vercel (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-dbec11cd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SWR provides React hooks for data fetching with caching, revalidation, and focus tracking built in. ## What it is SWR is a lightweight React data-fetching library created by Vercel. It implements the stale-while-revalidate caching strategy: return cached (stale) data instantly, then fetch fresh data in the background, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dbec11cd) --- # LangGraph: Stateful AI Agent Graphs Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-dbf0bc9a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangGraph models AI agents as stateful directed graphs with cycles, branching, and human-in-the-loop patterns. ## What it is LangGraph is a framework by LangChain for building stateful, multi-actor AI agent applications as directed graphs. Instead of linear chains, LangGraph lets agents loop, branch, wait for human input, and ch …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dbf0bc9a) --- # Nx: Smart Monorepos and Fast CI for JS and More (2026) URL: https://tokrepo.com/en/workflows/asset-dc0a4fee Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nx provides computation caching, affected commands, task orchestration, and distributed execution for monorepos in any language. ## What it is Nx is a build system and monorepo management tool with first-class support for JavaScript, TypeScript, Go, Python, Java, and more. It provides computation caching, affected-only commands, task orchestratio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dc0a4fee) --- # Jotai: Primitive Atomic State Management for React (2026) URL: https://tokrepo.com/en/workflows/asset-dc289209 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jotai provides atomic state for React with derivation, async support, and zero Redux-style boilerplate. ## What it is Jotai is an atomic state management library for React. Instead of a single global store, you define independent atoms that hold pieces of state. Components subscribe to only the atoms they use, so re-rende …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dc289209) --- # Oxc: The JavaScript Oxidation Compiler in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-dc46ca98 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Oxc provides Rust-powered JS/TS parser, linter, transformer, and minifier -- fastest in each category. ## What it is Oxc (JavaScript Oxidation Compiler) is a Rust-based collection of JavaScript and TypeScript tools. It includes a parser, linter (oxlint), resolver, transformer, and minifier, each designed to be the fastes …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dc46ca98) --- # MSW: API Mocking at the Service Worker Layer (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-dc65506c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MSW intercepts network requests at the service worker layer to mock REST and GraphQL APIs for tests and dev. ## What it is Mock Service Worker (MSW) intercepts network requests at the service worker layer in the browser and at the request module level in Node.js. You define request handlers that describe how to respond to spec …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dc65506c) --- # Million.js: Make React 70% Faster with Compiler 2026 URL: https://tokrepo.com/en/workflows/asset-dc83ee9f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Million.js compiles React components into a block-based virtual DOM for up to 70% faster renders. ## What it is Million.js is a compiler that optimizes React components by replacing the standard virtual DOM diffing with a block-based approach. It analyzes your JSX at build time, identifies static and dynamic parts, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dc83ee9f) --- # Rolldown: Rust-Powered JavaScript Bundler for Vite (2026) URL: https://tokrepo.com/en/workflows/asset-dca2d215 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rolldown is a fast Rust bundler from the Vite team that replaces esbuild + Rollup in one tool. ## What it is Rolldown is a Rust-based JavaScript bundler built by the Vite team. It is designed to replace the current esbuild + Rollup dual-bundler setup in Vite with a single fast bundler. Rolldown maintains Rollup p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dca2d215) --- # Ory Kratos: Cloud-Native Identity Management (2026) URL: https://tokrepo.com/en/workflows/asset-dcb25a5e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ory Kratos is a headless identity server that handles registration, login, MFA, and account recovery via APIs, letting you own the entire user experience. ## What it is Ory Kratos is a headless, API-first identity and user management server. It handles registration, login, multi-factor authentication, account recovery, profile management, and session handling without bund …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dcb25a5e) --- # Rspack: Fast Rust-Based Webpack Replacement (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-dcc11c87 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rspack gives webpack-compatible projects 5-10x faster builds by reimplementing the bundler in Rust. ## What it is Rspack is a JavaScript bundler written in Rust that implements the webpack loader and plugin API. Built by ByteDance's web infra team, it lets existing webpack projects migrate with minimal configuration c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dcc11c87) --- # ctop: Real-Time Container Metrics in Your Terminal (2026) URL: https://tokrepo.com/en/workflows/asset-dcc36ad5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ctop is a single Go binary that displays live CPU, memory, and network stats for all running containers. ## What it is ctop is a terminal-based monitoring tool that brings the familiar Unix `top` experience to Docker and runC containers. It displays live CPU, memory, network I/O, and disk I/O metrics per container in a scr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dcc36ad5) --- # tsup: Zero-Config TypeScript Bundler Guide (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-dce122a2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: tsup bundles TypeScript libraries into ESM, CJS, and DTS outputs with zero configuration using esbuild. ## What it is tsup is a zero-config TypeScript bundler built on esbuild. It produces ESM, CJS, IIFE, and declaration (DTS) files from a single command. tsup is the fastest way to ship a polished TypeScript package witho …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dce122a2) --- # Redux Toolkit: Modern Redux Development in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-dcff567b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Redux Toolkit eliminates Redux boilerplate with createSlice, handles immutability via Immer, and includes RTK Query for API caching. ## What it is Redux Toolkit (RTK) is the official, opinionated, batteries-included toolset for efficient Redux development. It eliminates the boilerplate that made Redux painful: no more hand-written action creators, ac …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dcff567b) --- # AutoGen: Microsoft Multi-Agent Conversation (2026) URL: https://tokrepo.com/en/workflows/asset-dd1827b4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AutoGen lets multiple AI agents converse and collaborate to solve tasks, with human-in-the-loop and code execution support. ## What it is AutoGen is an open-source framework by Microsoft Research for building multi-agent conversational AI systems. Multiple agents chat with each other, divide work, execute code, and collaborate to solve compl …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dd1827b4) --- # Julep: Stateful AI Agent Platform with Workflows (2026) URL: https://tokrepo.com/en/workflows/asset-dd60ff3f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Julep is a platform for building stateful AI agents with multi-step workflows, long-term memory, and built-in tool integrations. ## What it is Julep is an AI agent platform that handles state management, multi-step workflows, and long-term memory so your agents remember context across sessions. Instead of building custom persistence layers and wo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dd60ff3f) --- # NocoDB: Open Source No-Code Database Platform (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-dddaecfa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: NocoDB converts SQL databases into spreadsheet interfaces with REST APIs, views, and automations. ## What it is NocoDB is an open-source no-code platform that turns any MySQL, PostgreSQL, SQL Server, SQLite, or MariaDB database into a smart spreadsheet interface. It provides grid, gallery, kanban, and form views on …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dddaecfa) --- # Materialize: Streaming SQL Database for Real-Time Analytics URL: https://tokrepo.com/en/workflows/asset-ddde048d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Materialize is a streaming SQL database that keeps materialized views incrementally updated as source data changes in real time. ## What it is Materialize is a streaming database that maintains materialized views using standard SQL. Unlike traditional databases where materialized views are refreshed on a schedule, Materialize keeps views incremen …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ddde048d) --- # Cohere Embed: Multilingual AI Embeddings API in 2026 URL: https://tokrepo.com/en/workflows/asset-dde04e91 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Multilingual embedding API supporting 100+ languages with specialized modes for documents, queries, and classification. ## What it is Cohere Embed is a multilingual embedding API that converts text into high-dimensional vectors for semantic search, retrieval-augmented generation (RAG), and classification tasks. The API supports 100+ lang …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dde04e91) --- # Paperless-ngx: Self-Hosted Document Management OCR (2026) URL: https://tokrepo.com/en/workflows/asset-de0041a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Paperless-ngx scans, OCRs, and indexes your documents for full-text search, all self-hosted. ## What it is Paperless-ngx is an open-source document management system that digitizes, OCRs, indexes, and archives both physical and digital documents. Drop a scanned document or PDF into the system, and it automatica …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de0041a5) --- # Karpenter: Just-in-Time Kubernetes Node Autoscaler (2026) URL: https://tokrepo.com/en/workflows/asset-de139dca Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Karpenter watches pending pods and launches the cheapest matching EC2 instance in about 30 seconds. ## What it is Karpenter is an open-source Kubernetes node autoscaler that originated at AWS and is now a CNCF project. It watches for pending pods and launches the right-sized EC2 instance type in approximately 30 secon …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de139dca) --- # Prompt Engineering Techniques: 20+ Methods in 2026 URL: https://tokrepo.com/en/workflows/asset-de151579 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Collection of 20+ prompt engineering techniques with runnable notebooks. From Chain-of-Thought to Tree-of-Thought. ## What it is This is a comprehensive collection of prompt engineering techniques covering 20+ methods with runnable implementations. The repository includes techniques ranging from foundational approaches like Chain-of …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de151579) --- # Wiki.js: Modern Open Source Wiki with Git Sync (2026) URL: https://tokrepo.com/en/workflows/asset-de2576e2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Wiki.js is a Node.js-based open-source wiki with Markdown/WYSIWYG editing, Git synchronization, and built-in full-text search. ## What it is Wiki.js is an open-source wiki platform built on Node.js that provides both Markdown and WYSIWYG editors for creating and managing documentation. It synchronizes content with Git repositories, supports ful …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de2576e2) --- # Remotion Rule: Trimming Patterns for Video (2026) URL: https://tokrepo.com/en/workflows/asset-de485e69 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion skill rule that teaches AI agents trimming patterns for cutting animation beginnings and ends in React video. ## What it is Remotion Rule: Trimming is a skill rule from the official Remotion Agent Skill that covers patterns for cutting the beginning or end of animations in programmatic React video. It activates automatically wh …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de485e69) --- # Firefly III: Self-Hosted Personal Finance Manager (2026) URL: https://tokrepo.com/en/workflows/asset-de4aaf47 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Firefly III is a self-hosted finance manager for tracking expenses, budgets, and accounts with full privacy. ## What it is Firefly III is an open-source personal finance manager for tracking expenses, budgets, and bank accounts. It runs self-hosted with full privacy, supports multiple currencies, and provides powerful reportin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de4aaf47) --- # Duplicati: Free Encrypted Cloud Backup Tool 2026 URL: https://tokrepo.com/en/workflows/asset-de6fcaaf Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Duplicati backs up your files with encryption and deduplication to 20+ cloud storage backends including S3, Google Drive, and Backblaze B2. ## What it is Duplicati is a free, open-source backup client that creates encrypted, incremental, compressed backups and stores them on remote storage. It supports over 20 backends including Amazon S3, Google Drive, One …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de6fcaaf) --- # Dagger: CI/CD Pipelines as Code in Any Language (2026) URL: https://tokrepo.com/en/workflows/asset-de970503 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dagger replaces YAML-based CI/CD with real code in TypeScript, Python, or Go, running identically on your laptop and in CI. ## What it is Dagger is a programmable CI/CD engine that lets you define pipelines in TypeScript, Python, or Go instead of vendor-specific YAML. Every pipeline step runs inside a container, so the behavior is identical …(content truncated, full version at https://tokrepo.com/en/workflows/asset-de970503) --- # Goose AI Developer Agent: Terminal Coding in 2026 URL: https://tokrepo.com/en/workflows/asset-dedbb70b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Goose automates coding tasks in your terminal with session memory, toolkits, and MCP support. ## What it is Goose is an open-source AI developer agent built by Block (formerly Square). It runs in your terminal, reads your codebase, executes shell commands, and edits files based on natural-language instructions. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dedbb70b) --- # Hono: Ultra-Fast Edge Web Framework Guide 2026 URL: https://tokrepo.com/en/workflows/asset-df1d7640 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hono is a 14KB TypeScript web framework with zero dependencies that runs on every JavaScript runtime at 3x Express speed. ## What it is Hono is a lightweight TypeScript web framework designed for edge computing environments. It runs on Cloudflare Workers, Deno, Bun, Vercel Edge Functions, AWS Lambda, and Node.js without code changes. At 14 …(content truncated, full version at https://tokrepo.com/en/workflows/asset-df1d7640) --- # DevPod: Open-Source Dev Environments Anywhere in 2026 URL: https://tokrepo.com/en/workflows/asset-df4899c5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DevPod spins up reproducible dev environments from devcontainer.json on Docker, Kubernetes, AWS, GCP, Azure, or SSH targets. ## What it is DevPod by Loft Labs is an open-source tool that creates reproducible development environments based on the devcontainer.json standard. Unlike proprietary cloud IDEs, DevPod is client-only and infrastructur …(content truncated, full version at https://tokrepo.com/en/workflows/asset-df4899c5) --- # Prefect: Python Workflow Orchestration Platform (2026) URL: https://tokrepo.com/en/workflows/asset-dfa1e8d2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prefect orchestrates Python data pipelines with decorator-based flows, automatic retries, caching, scheduling, and a built-in UI dashboard. ## What it is Prefect is a Python workflow orchestration platform that lets you turn any Python function into a resilient, observable pipeline. Use `@flow` and `@task` decorators to add retries, caching, logging, and sc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-dfa1e8d2) --- # Awesome CLAUDE.md: Project Config Best Practices 2026 URL: https://tokrepo.com/en/workflows/asset-e0565f2a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated collection of CLAUDE.md templates that tell Claude Code your project conventions, tech stack, and architecture. ## What it is Awesome CLAUDE.md is a community-maintained collection of CLAUDE.md templates and best practices for configuring Claude Code on a per-project basis. A CLAUDE.md file in your project root tells Claude Code …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0565f2a) --- # Claude Code Swarm Orchestration Skill Guide (2026) URL: https://tokrepo.com/en/workflows/asset-e07746ff Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A skill that teaches Claude Code to orchestrate multi-agent swarms using TeammateTool, spawn patterns, and error handling. ## What it is The Swarm Orchestration skill is a reference guide for building multi-agent systems within Claude Code. It documents the TeammateTool API for spawning subagents, six orchestration patterns (fan-out, pipeli …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e07746ff) --- # TGI: Hugging Face Production LLM Inference Server (2026) URL: https://tokrepo.com/en/workflows/asset-e08ad222 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TGI serves LLMs in production with continuous batching, tensor parallelism, quantization, and an OpenAI-compatible API. ## What it is Text Generation Inference (TGI) is Hugging Face's production-grade LLM inference server. It powers Hugging Face Inference Endpoints and provides continuous batching, tensor parallelism, quantization (GPTQ, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e08ad222) --- # OpenAI Agents SDK: Multi-Agent Python Guide 2026 URL: https://tokrepo.com/en/workflows/asset-e0a359b3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenAI Agents SDK provides Python primitives for agent handoffs, tool calling, guardrails, and tracing in multi-agent systems. ## What it is OpenAI Agents SDK is the official lightweight Python framework from OpenAI for building multi-agent workflows. It provides core primitives: Agents (LLMs with instructions and tools), Handoffs (delegation b …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0a359b3) --- # NVIDIA Triton: Multi-Framework Model Serving at Scale URL: https://tokrepo.com/en/workflows/asset-e0a9738b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Triton Inference Server serves models from any framework (PyTorch, TensorFlow, ONNX, TensorRT) with dynamic batching, ensembles, and GPU optimization. ## What it is NVIDIA Triton Inference Server is a production model serving platform. It deploys models from PyTorch, TensorFlow, ONNX, TensorRT, and custom Python backends through a unified HTTP/gRPC API. Triton handles …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0a9738b) --- # AutoGluon: AutoML for Tabular and Time-Series Data (2026) URL: https://tokrepo.com/en/workflows/asset-e0c86ffc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AutoGluon trains state-of-the-art ML ensembles with a single .fit() call on multiple data types. ## What it is AutoGluon is an AutoML toolkit developed by AWS that automates machine learning model training. With a single `.fit()` call, it trains and ensembles multiple models on tabular, time-series, text, and image …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0c86ffc) --- # CoreDNS: Flexible Plugin-Based DNS Server in Go for 2026 URL: https://tokrepo.com/en/workflows/asset-e0db27a2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CNCF-graduated Go DNS server built from plugins, the default in-cluster DNS for Kubernetes since v1.13. ## What it is CoreDNS is a DNS server written in Go that uses a plugin architecture for all its functionality. Every feature, from caching to logging to Kubernetes service discovery, is a plugin that can be enabled or d …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0db27a2) --- # Verba: Open Source RAG Chatbot by Weaviate (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e0e719be Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Verba bundles document ingestion, embedding, vector search, and chat into a single RAG application with a 2-minute setup. ## What it is Verba is an open-source RAG (Retrieval-Augmented Generation) chatbot from the Weaviate team. It bundles document ingestion, chunking, embedding, vector search, and chat into a single application. Upload PD …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0e719be) --- # Upstash MCP: Serverless Redis and Kafka for 2026 URL: https://tokrepo.com/en/workflows/asset-e0ed3953 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Upstash MCP lets AI agents like Claude Code access serverless Redis and Kafka for caching, rate limiting, and message queues. ## What it is Upstash MCP is a Model Context Protocol server that gives AI agents access to Upstash's serverless Redis and Kafka services. With this MCP server configured, Claude Code or Cursor can create caches, set ra …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0ed3953) --- # LitmusChaos: Kubernetes Chaos Engineering in 2026 URL: https://tokrepo.com/en/workflows/asset-e0fe8444 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LitmusChaos runs controlled failure experiments on Kubernetes to validate system resilience before incidents happen. ## What it is LitmusChaos is a CNCF incubating project that provides a framework for practicing chaos engineering on Kubernetes. It ships with a library of 50+ pre-built chaos experiments -- pod kill, network latency, C …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e0fe8444) --- # Claude Code Agent: Search Specialist for AI (2026) URL: https://tokrepo.com/en/workflows/asset-e1742654 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code agent specialized in vector search, semantic retrieval, embedding strategies, and ranking optimization. ## What it is Claude Code Agent: Search Specialist is a pre-configured Claude Code agent focused on building search systems. It brings expertise in vector search, semantic retrieval, embedding strategies, and ranking op …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e1742654) --- # Zed Editor: GPU-Accelerated AI Code Editor in Rust (2026) URL: https://tokrepo.com/en/workflows/asset-e17aff9c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zed is a Rust-built editor with GPU rendering, multiplayer editing, and AI assistant. ## What it is Zed is a high-performance code editor built from scratch in Rust by the team that created Atom and Tree-sitter. It uses GPU acceleration for rendering, resulting in frame rates and input latency that tradi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e17aff9c) --- # Tokei: Fast Code Statistics for Any Language in 2026 URL: https://tokrepo.com/en/workflows/asset-e18416ca Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tokei counts lines of code, comments, and blanks across 200+ languages in milliseconds, written in Rust. ## What it is Tokei is a code statistics tool written in Rust that counts lines of code, comments, and blanks across 200+ programming languages. It runs in milliseconds even on large codebases and outputs clean tables s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e18416ca) --- # Lark CLI Tasks: Todo and Project Management (2026) URL: https://tokrepo.com/en/workflows/asset-e190eb3c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CLI skill that creates, tracks, and manages Lark/Feishu tasks, subtasks, and reminders. ## What it is Lark CLI Skill: Tasks is a command-line skill for the Lark/Feishu CLI that lets you create todos, track progress, manage subtasks, assign team members, and set reminders without leaving the terminal. It is …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e190eb3c) --- # whisper.cpp: Local Speech-to-Text in Pure C/C++ (2026) URL: https://tokrepo.com/en/workflows/asset-e1fd7c46 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: whisper.cpp runs OpenAI Whisper locally in C/C++ with no Python and no internet needed. ## What it is whisper.cpp is a high-performance C/C++ port of OpenAI's Whisper speech recognition model by Georgi Gerganov (creator of llama.cpp). It runs entirely locally with zero dependencies: no Python, no PyTorch, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e1fd7c46) --- # CloudNativePG: PostgreSQL Operator for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-e1ff9c2c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CloudNativePG is a Kubernetes operator managing PostgreSQL clusters with replication, backups, PITR, and rolling upgrades. ## What it is CloudNativePG is a Kubernetes operator for managing PostgreSQL database clusters. It handles the full lifecycle: provisioning, streaming replication, automated failover, online backups, point-in-time recov …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e1ff9c2c) --- # Remotion Rule: Get Video Dimensions in React (2026) URL: https://tokrepo.com/en/workflows/asset-e3257fe7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion skill rule for retrieving and validating video dimensions, aspect ratios, and frame sizes in React video projects. ## What it is Remotion Rule: Get Video Dimensions is a skill rule within the official Remotion Agent Skill that provides patterns for programmatically getting and working with video dimensions in Remotion projects. It c …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e3257fe7) --- # Jules by Google: Async Coding Agent for Gemini CLI (2026) URL: https://tokrepo.com/en/workflows/asset-e39bb022 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Jules extends Gemini CLI with an async coding agent that autonomously fixes bugs, refactors code, and implements features. ## What it is Jules is a Gemini CLI extension built by Google that adds asynchronous coding agent capabilities to the Gemini CLI. Rather than requiring a developer to stay in the loop for every step, Jules works autonom …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e39bb022) --- # Wallabag: Self-Hosted Read-It-Later Application (2026) URL: https://tokrepo.com/en/workflows/asset-e3d165db Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Wallabag saves web articles for offline reading with tagging, annotations, and full-text search. ## What it is Wallabag is a self-hosted read-it-later application. It saves web articles, strips away ads and clutter, and stores the clean content for offline reading. Wallabag supports tagging, annotations, full-text …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e3d165db) --- # Delta Lake: ACID Transactions for Data Lakes 2026 URL: https://tokrepo.com/en/workflows/asset-e4dc6f52 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Delta Lake brings ACID transactions, time travel, and schema evolution to data lakes. ## What it is Delta Lake is an open storage format that adds ACID transactions, time travel, and schema evolution to data lakes built on Parquet files and object storage like S3 or ADLS. It turns your data lake into a l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e4dc6f52) --- # Prompts.chat: The Largest ChatGPT Prompt Library (2026) URL: https://tokrepo.com/en/workflows/asset-e5066556 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prompts.chat offers a massive open-source collection of role-based prompts for ChatGPT and LLMs. ## What it is Prompts.chat is the largest open-source prompt library for ChatGPT and other large language models. It contains community-curated prompts organized by role: developer, writer, translator, analyst, coach, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e5066556) --- # Supabase MCP: Database and Auth for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-e54d5caa Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Official Supabase MCP server lets AI agents query databases, manage auth, access storage, and call edge functions in your Supabase project. ## What it is Supabase MCP is the official Model Context Protocol server built by Supabase. It lets AI coding assistants like Claude Code or Cursor interact with your Supabase project directly -- running SQL queries, ma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e54d5caa) --- # OpenObserve: Petabyte-Scale Observability Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-e58baa0c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenObserve ingests logs, metrics, traces, and RUM into Parquet on object storage for dramatically cheaper retention. ## What it is OpenObserve is an all-in-one observability platform written in Rust. It ingests logs, metrics, traces, and Real User Monitoring (RUM) data, storing everything as Parquet files on object storage (S3, MinIO, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e58baa0c) --- # Open WebUI: Self-Hosted AI Chat Platform Guide (2026) URL: https://tokrepo.com/en/workflows/asset-e59ad0e9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open WebUI gives you a self-hosted ChatGPT-style interface for Ollama, OpenAI, and local LLMs. ## What it is Open WebUI is an open-source, self-hosted web interface for interacting with large language models. It provides a polished chat UI similar to ChatGPT but runs entirely on your infrastructure. It connects t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e59ad0e9) --- # File Browser: Self-Hosted Web File Manager (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e6599fc2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: File Browser provides a clean web UI for managing files on your server with uploads, sharing, and users. ## What it is File Browser is a lightweight, self-hosted web file manager that lets you manage files on your server through a clean browser interface. It supports file uploads, downloads, sharing via links, user managem …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e6599fc2) --- # Istio: Open Source Service Mesh for Microservices (2026) URL: https://tokrepo.com/en/workflows/asset-e66c0370 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Istio provides mTLS, traffic management, and observability for microservices without changing application code. ## What it is Istio is an open-source service mesh that provides a uniform way to connect, secure, control, and observe services in a microservices architecture. It works by injecting Envoy sidecar proxies alongside eac …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e66c0370) --- # Spinnaker: Multi-Cloud Continuous Delivery at Scale 2026 URL: https://tokrepo.com/en/workflows/asset-e68033e2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Netflix-born open-source CD platform orchestrating safe deployments across AWS, GCP, Azure, and Kubernetes. ## What it is Spinnaker is an open-source multi-cloud continuous delivery platform originally built at Netflix. It orchestrates safe, high-velocity production deployments across AWS, GCP, Azure, and Kubernetes. Spinnake …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e68033e2) --- # k9s: Terminal UI for Kubernetes Management (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e68df6b6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: k9s provides a fast terminal UI for Kubernetes with keyboard navigation, replacing repetitive kubectl commands. ## What it is k9s is a terminal-based user interface for Kubernetes that lets you navigate, observe, and manage your clusters entirely with keyboard shortcuts. It provides real-time views of pods, deployments, services, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e68df6b6) --- # KServe: ML Model Serving on Kubernetes for 2026 URL: https://tokrepo.com/en/workflows/asset-e691472c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: KServe provides Kubernetes-native ML model serving with autoscaling, canary rollouts, and multi-framework support. ## What it is KServe is a CNCF project that provides a standardized, Kubernetes-native platform for deploying, scaling, and managing machine learning models in production. It supports inference runtimes including Tensor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e691472c) --- # Velero: Kubernetes Backup and Disaster Recovery 2026 URL: https://tokrepo.com/en/workflows/asset-e6af2ecd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Velero backs up Kubernetes resources and persistent volumes for migration and disaster recovery with one CLI command. ## What it is Velero is an open-source tool for backing up and restoring Kubernetes cluster resources and persistent volumes. It provides disaster recovery, data migration between clusters, and scheduled backups to obje …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e6af2ecd) --- # Falco: Cloud Native Runtime Security Tool (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e6d09344 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Falco detects runtime threats in containers and Kubernetes using eBPF syscall monitoring and custom rules. ## What it is Falco is an open-source runtime security tool that detects abnormal behavior in containers, hosts, and Kubernetes clusters. It uses eBPF to monitor system calls in real time and matches them against securi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e6d09344) --- # Kyverno: Kubernetes Policy as Native YAML in 2026 URL: https://tokrepo.com/en/workflows/asset-e6f1ef60 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kyverno enforces Kubernetes policies written as native YAML resources -- validate, mutate, and generate configurations without learning a new language. ## What it is Kyverno is a policy engine designed for Kubernetes that uses native YAML instead of a proprietary policy language. It validates, mutates, and generates Kubernetes resources using policies defined as custom …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e6f1ef60) --- # AdGuard Home: Self-Hosted DNS Ad Blocker Guide (2026) URL: https://tokrepo.com/en/workflows/asset-e725f22b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AdGuard Home blocks ads and trackers at the DNS level for every device on your network. ## What it is AdGuard Home is a single-binary Go DNS server that blocks ads and trackers across your entire network. It supports encrypted DNS upstreams (DNS-over-HTTPS, DNS-over-TLS), parental controls, and ships with …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e725f22b) --- # Cloud Nuke: Wipe AWS Resources in One Command (2026) URL: https://tokrepo.com/en/workflows/asset-e7c09266 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Gruntwork CLI tool that deletes all AWS resources across regions in one command for sandbox cleanup and cost control. ## What it is Cloud Nuke is a CLI tool from Gruntwork that deletes AWS resources across all regions in a single command. It supports EC2 instances, S3 buckets, Lambda functions, IAM roles, VPCs, RDS databases, and dozen …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e7c09266) --- # Replicate: Run Open Source AI Models via API (2026) URL: https://tokrepo.com/en/workflows/asset-e80aca76 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Replicate runs open-source AI models via API with no GPU setup and pay-per-second billing. ## What it is Replicate is a cloud platform that runs open-source AI models via a simple API. No GPU provisioning, no Docker, no model serving code. Call replicate.run() with a model name and input. It hosts thousands o …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e80aca76) --- # Trigger.dev: Background Jobs for AI Agents (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e82ebfc9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Trigger.dev runs background jobs with durable execution and retries for AI agents. ## What it is Trigger.dev is an open-source platform for running background jobs with durable execution. It handles long-running tasks, automatic retries, scheduled jobs, and provides observability for every run. The Ty …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e82ebfc9) --- # Nextcloud: Self-Hosted Cloud for Files and More (2026) URL: https://tokrepo.com/en/workflows/asset-e8506b82 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Nextcloud gives you a private cloud with file sync, calendar, contacts, and office collaboration on hardware you control. ## What it is Nextcloud is a self-hosted, open-source cloud platform that provides file synchronization, calendar, contacts, email, video conferencing, and document collaboration. It serves as a privacy-focused alternat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8506b82) --- # Vaultwarden: Lightweight Bitwarden Server in Rust (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e8706cbd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vaultwarden implements the Bitwarden API in Rust, providing all premium features on minimal hardware with official Bitwarden client apps. ## What it is Vaultwarden is an unofficial, lightweight Bitwarden-compatible server written in Rust. It implements the Bitwarden API, allowing you to use all official Bitwarden client apps (browser extensions, desktop, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8706cbd) --- # Authentik: Open Source Identity Provider SSO 2026 URL: https://tokrepo.com/en/workflows/asset-e890152d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Authentik provides SSO, MFA, and user flows as a self-hosted identity provider. ## What it is Authentik is a flexible open-source identity provider offering single sign-on (SSO), multi-factor authentication (MFA), user enrollment flows, and an application proxy. It serves as the authentication laye …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e890152d) --- # Vite: Next Generation Frontend Build Tool Guide (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e893b7be Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Vite provides instant dev server startup and fast HMR using native ES modules, supporting all major frameworks. ## What it is Vite (French for 'fast') is a frontend build tool that leverages native ES modules for instant development server startup and fast hot module replacement (HMR). Created by Evan You (Vue.js creator), Vite s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e893b7be) --- # Traefik: Cloud Native Reverse Proxy and Load Balancer (2026) URL: https://tokrepo.com/en/workflows/asset-e8afc2f9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Traefik auto-discovers services, handles HTTPS certificates, and routes traffic for Docker and Kubernetes. ## What it is Traefik is an open-source edge router and reverse proxy designed for cloud-native environments. It automatically discovers services running in Docker, Kubernetes, and other orchestrators, handles HTTPS cer …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8afc2f9) --- # Webpack: JavaScript Module Bundler Setup Guide (2026) URL: https://tokrepo.com/en/workflows/asset-e8b24810 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Webpack bundles JavaScript modules with code splitting, lazy loading, and a massive plugin ecosystem for production apps. ## What it is Webpack is a module bundler for JavaScript applications that processes modules with dependencies and generates optimized static assets. Since its release in 2012, it has been the backbone of build systems …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8b24810) --- # Screenshot to Code: Convert Designs to Code (2026) URL: https://tokrepo.com/en/workflows/asset-e8c64554 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Converts screenshots and mockups into clean HTML, React, Vue, or Bootstrap code using AI vision models. Open-source, MIT license. ## What it is Screenshot to Code is an open-source tool that converts screenshots, mockups, and Figma designs into clean, functional code. It uses AI vision models to interpret visual layouts and generate HTML, React, V …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8c64554) --- # Caddy: Fast Web Server with Automatic HTTPS by Default URL: https://tokrepo.com/en/workflows/asset-e8cf7b74 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Caddy is a web server written in Go with automatic HTTPS via Let's Encrypt, reverse proxy, file serving, and load balancing in a single binary. ## What it is Caddy is a modern web server written in Go. Its defining feature is automatic HTTPS: Caddy obtains and renews TLS certificates from Let's Encrypt without any configuration. It also functions as a reverse p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8cf7b74) --- # Prettier Code Formatter: Consistent Style in 2026 URL: https://tokrepo.com/en/workflows/asset-e8d0be14 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prettier auto-formats your code so every file looks the same, no debates needed. ## What it is Prettier is an opinionated code formatter that rewrites your source files to enforce a single, consistent style. It supports JavaScript, TypeScript, CSS, HTML, JSON, GraphQL, Markdown, and many other langu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8d0be14) --- # Parcel: Zero-Configuration Web Application Bundler URL: https://tokrepo.com/en/workflows/asset-e8ef5938 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Parcel bundles JavaScript, CSS, HTML, and images with zero configuration, using Rust and multicore processing for fast builds. ## What it is Parcel is a zero-configuration build tool for web applications. It automatically handles JavaScript, TypeScript, CSS, HTML, images, and other assets without requiring configuration files. Under the hood, P …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e8ef5938) --- # Babel: JavaScript Compiler for Modern Syntax (2026) URL: https://tokrepo.com/en/workflows/asset-e90de9b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Babel compiles modern JavaScript, JSX, and TypeScript into backwards-compatible code using configurable plugin presets. ## What it is Babel is a JavaScript compiler that transforms modern ECMAScript syntax into backwards-compatible code that runs in older browsers and environments. It handles JSX transformation for React, TypeScript stri …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e90de9b1) --- # Contour: Kubernetes Ingress Controller Using Envoy (2026) URL: https://tokrepo.com/en/workflows/asset-e916ebd5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Contour uses Envoy proxy as its data plane to route traffic into Kubernetes with advanced HTTPProxy CRD features. ## What it is Contour is a Kubernetes ingress controller that uses Envoy proxy as its data plane. It provides a custom HTTPProxy CRD that goes beyond standard Ingress with features like TLS delegation, rate limiting, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e916ebd5) --- # SWC: Rust-Based JavaScript and TypeScript Compiler (2026) URL: https://tokrepo.com/en/workflows/asset-e92c8526 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SWC compiles JavaScript and TypeScript 20x faster than Babel using Rust, with full plugin support. ## What it is SWC (Speedy Web Compiler) is an extensible Rust-based platform for next-generation JavaScript tooling. It handles transpilation (ES2025 to ES5), TypeScript stripping, JSX transformation, bundling, and mini …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e92c8526) --- # Remotion Rule Audio: Sound in React Videos (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-e92dc629 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion audio rule covers importing, trimming, volume, speed, and pitch for sound in React-based programmatic video projects. ## What it is The Remotion Rule: Audio is a skill rule from the official Remotion Agent Skill set. It provides structured guidance for AI coding agents working with audio in Remotion projects. Remotion is a framework fo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e92dc629) --- # Turborepo: High-Performance Monorepo Build System (2026) URL: https://tokrepo.com/en/workflows/asset-e94b1c46 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Turborepo caches build outputs and runs tasks in parallel across monorepo packages for dramatically faster builds. ## What it is Turborepo is a high-performance build system for JavaScript and TypeScript monorepos, maintained by Vercel. It sits on top of your existing package manager (npm, pnpm, yarn) and orchestrates task execution …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e94b1c46) --- # Redpanda Connect (Benthos): Stream Processing in 2026 URL: https://tokrepo.com/en/workflows/asset-e95cabb2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Redpanda Connect pipes data between 200+ sources and sinks using declarative YAML configuration. ## What it is Redpanda Connect (formerly Benthos) is a high-performance declarative stream processor written in Go. It connects, transforms, and routes data between 200+ sources and sinks using YAML configuration files. …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e95cabb2) --- # ESLint: JavaScript and TypeScript Linter for 2026 URL: https://tokrepo.com/en/workflows/asset-e969a624 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ESLint finds problems and enforces coding standards in JavaScript and TypeScript. ## What it is ESLint is the most widely used linter for JavaScript and TypeScript. It statically analyzes your code to find problems, enforce coding standards, and automatically fix many issues. Its plugin system suppor …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e969a624) --- # TypeORM: TypeScript ORM for Node.js Applications (2026) URL: https://tokrepo.com/en/workflows/asset-e96cdff9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: TypeORM provides decorator-based entity mapping, migrations, and Active Record or Data Mapper patterns for Node.js. ## What it is TypeORM is a full-featured Object-Relational Mapper for TypeScript and JavaScript running on Node.js. It supports PostgreSQL, MySQL, MariaDB, SQLite, SQL Server, and Oracle, offering both Active Record and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e96cdff9) --- # Rollup: ES Module Bundler for JavaScript Libraries 2026 URL: https://tokrepo.com/en/workflows/asset-e9883503 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Rollup compiles ES modules into optimized bundles with best-in-class tree-shaking, built for library authors. ## What it is Rollup is an ES module bundler designed specifically for building JavaScript libraries and packages. Unlike webpack, which targets applications, Rollup produces clean, readable output that uses ES modules …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e9883503) --- # Together AI Chat Completions Skill for Claude 2026 URL: https://tokrepo.com/en/workflows/asset-e99e1db6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code skill providing correct SDK patterns for Together AI chat completions, streaming, and tool calling. ## What it is This is a Claude Code skill that teaches AI coding agents how to correctly call Together AI's chat completions API. It provides the exact SDK patterns, model identifiers, and parameter configurations neede …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e99e1db6) --- # Biome: Fast Formatter and Linter for Web Projects 2026 URL: https://tokrepo.com/en/workflows/asset-e9a6b741 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Biome is a Rust-based toolchain that replaces Prettier + ESLint with one binary running 25-35x faster. ## What it is Biome is a high-performance, all-in-one toolchain for web development. It combines a code formatter (97% Prettier compatible), linter (290+ rules), and import organizer into a single Rust binary. Originall …(content truncated, full version at https://tokrepo.com/en/workflows/asset-e9a6b741) --- # SeaweedFS: Distributed S3-Compatible Storage 2026 URL: https://tokrepo.com/en/workflows/asset-ea4a0584 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SeaweedFS handles billions of files with O(1) disk access, S3 API compatibility, and simple single-binary operation. ## What it is SeaweedFS is a fast distributed storage system designed to handle billions of files efficiently. It provides an S3-compatible API, a POSIX-like filer for hierarchical file access, and a volume server for r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ea4a0584) --- # LobeChat: Open-Source Multi-Model Chat UI in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-ea712bf1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LobeChat is an open-source multi-model chat UI supporting 50+ providers with plugins, vision, TTS, and self-hosted deployment. ## What it is LobeChat is a beautiful open-source chat interface that supports Claude, GPT-4, Gemini, Ollama, and 50+ other model providers. It provides a unified chat experience with features like plugin support, visio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ea712bf1) --- # ToolJet: Open Source Low-Code App Builder (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-eac97f87 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: ToolJet lets teams build internal apps visually with 30+ data source integrations and workflow automation. ## What it is ToolJet is an open-source low-code platform for building internal tools, dashboards, and business applications. It provides a drag-and-drop visual app builder, workflow automation, AI integration, and conn …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eac97f87) --- # Harness Open Source: Self-Hosted Dev Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-eae86d36 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Harness Open Source bundles Git hosting, CI/CD pipelines, cloud dev environments, and artifact registry into one self-hosted binary. ## What it is Harness Open Source (formerly Gitness) is a developer platform that combines Git repository hosting, CI/CD pipeline execution, cloud development environments, and an artifact registry in a single lightweig …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eae86d36) --- # Refine: React Framework for Internal Tools (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-eb077501 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source React framework that provides data hooks, auth, and routing for admin panels and dashboards. ## What it is Refine is an open-source React framework purpose-built for admin panels, dashboards, and internal tools. It ships data-fetching hooks, authentication, access control, routing, and notification primitives s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eb077501) --- # Whisper: OpenAI Speech-to-Text Model for 2026 URL: https://tokrepo.com/en/workflows/asset-eb0f9dd6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenAI Whisper transcribes audio to text in 99 languages with word-level timestamps, running locally without API calls. ## What it is Whisper is OpenAI's open-source speech recognition model. It transcribes audio and video files to text with high accuracy across 99 languages. The model runs locally, requires no API key, and produces outp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eb0f9dd6) --- # Backstage: Open Source Developer Portal by Spotify 2026 URL: https://tokrepo.com/en/workflows/asset-eb267d16 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Backstage centralizes all services, docs, and tooling into one developer portal. ## What it is Backstage is an open platform for building developer portals, created by Spotify and donated to the CNCF. It provides a centralized software catalog of all services, documentation, CI/CD pipelines, infrast …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eb267d16) --- # Celery: Distributed Task Queue for Python (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-eb455e68 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Celery processes background jobs, scheduled tasks, and real-time workloads in Python with support for multiple message brokers. ## What it is Celery is the most widely used distributed task queue for Python. It handles background job processing, scheduled periodic tasks, and real-time message processing with support for multiple message brokers …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eb455e68) --- # Temporal: Durable Workflow Execution Platform (2026) URL: https://tokrepo.com/en/workflows/asset-eb6474e2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Temporal provides durable execution so your workflow code runs reliably through failures, restarts, and deployments without manual retry logic. ## What it is Temporal is an open-source platform for building reliable distributed applications. It provides durable execution -- your application code runs to completion even through process crashes, server restarts, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eb6474e2) --- # AI Code Review Checklist for Developers in 2026 URL: https://tokrepo.com/en/workflows/asset-ec06a6a1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A structured checklist for reviewing AI-generated code covering correctness, security, performance, and AI-specific pitfalls like phantom APIs. ## What it is This is a structured checklist for reviewing code generated by AI assistants before merging it into production. It covers standard code review concerns (correctness, security, performance, maintainability) …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ec06a6a1) --- # SWE-agent: Automated Bug Fixing with AI in 2026 URL: https://tokrepo.com/en/workflows/asset-ec5f0e4b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SWE-agent autonomously navigates codebases and writes patches to fix GitHub issues. ## What it is SWE-agent is an AI agent system from Princeton NLP that autonomously fixes GitHub issues. Given a bug report or feature request, it navigates the codebase, understands the problem, writes a patch, and subm …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ec5f0e4b) --- # Novu: Open-Source Notification Infrastructure (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ecdca64c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Novu provides a unified API for email, SMS, push, and in-app notifications. ## What it is Novu is an open-source notification infrastructure platform that provides a unified API for sending notifications across email, SMS, push, in-app, and chat channels. It includes a visual workflow editor fo …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ecdca64c) --- # Sentry: Open Source Error Tracking Platform (2026) URL: https://tokrepo.com/en/workflows/asset-ece57add Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sentry captures exceptions, traces performance, and helps debug production errors across all major programming languages. ## What it is Sentry is a developer-first platform for error tracking and performance monitoring. It captures unhandled exceptions, logs stack traces with full context, and surfaces performance bottlenecks in production …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ece57add) --- # Dokku: The Smallest PaaS You Can Self-Host (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ed054bbe Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Dokku is a self-hosted, Docker-powered PaaS that lets you git push to deploy apps with automatic SSL and a plugin ecosystem. ## What it is Dokku is a Docker-powered Platform as a Service (PaaS) that runs on a single server. It provides Heroku-style `git push` deployments, automatic SSL certificates via Let's Encrypt, a plugin ecosystem for da …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed054bbe) --- # Grafana: Open Source Observability Platform Guide 2026 URL: https://tokrepo.com/en/workflows/asset-ed1a524f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Grafana connects to 100+ data sources and transforms metrics, logs, and traces into interactive dashboards. ## What it is Grafana is the leading open-source platform for monitoring, observability, and data visualization. It connects to virtually any data source -- Prometheus, InfluxDB, Elasticsearch, PostgreSQL, MySQL, Loki, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed1a524f) --- # Karakeep: AI-Powered Self-Hosted Bookmark Manager 2026 URL: https://tokrepo.com/en/workflows/asset-ed24c544 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Karakeep is a self-hosted bookmark manager with AI tagging, full-text search, and multi-platform apps. ## What it is Karakeep (formerly Hoarder) is a self-hostable bookmark management platform combining link saving, note-taking, and image storage with AI-powered automatic tagging and full-text search. It provides browser …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed24c544) --- # changedetection.io: Website Change Monitoring (2026) URL: https://tokrepo.com/en/workflows/asset-ed2533e6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Self-hosted tool that monitors websites for content changes and sends alerts for price drops, restocks, and page modifications. ## What it is changedetection.io is a self-hosted website change monitoring tool. It watches web pages for content changes and sends notifications when something changes. Use cases include tracking price drops on e-comm …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed2533e6) --- # Anthropic Prompt Caching: Cut API Costs 90% (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ed25d3cb Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Anthropic prompt caching lets you cache system prompts and long contexts to cut Claude API costs by up to 90%. ## What it is Anthropic prompt caching is an API feature that lets you cache frequently reused content (system prompts, tool definitions, long documents) across multiple Claude API requests. Cached tokens are read at a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed25d3cb) --- # Prometheus: Monitoring and Alerting Toolkit (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ed3a8de4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Prometheus scrapes metrics from targets, stores them as time series, and provides PromQL for querying and alerting on infrastructure health. ## What it is Prometheus is an open-source monitoring system and time series database, originally built at SoundCloud and now a CNCF-graduated project. It uses a pull-based model to scrape metrics from instrumented targ …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed3a8de4) --- # CapRover: Automated Docker Deployment PaaS (2026) URL: https://tokrepo.com/en/workflows/asset-ed45050b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source PaaS with web UI, one-click app deployment, automatic HTTPS, and Docker Swarm for self-hosted cloud. ## What it is CapRover is an open-source Platform-as-a-Service that simplifies Docker deployment. It provides a web dashboard for managing applications, automatic HTTPS via Let's Encrypt, one-click app installs (WordPre …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed45050b) --- # MinIO: High-Performance S3-Compatible Object Storage (2026) URL: https://tokrepo.com/en/workflows/asset-ed5af375 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MinIO provides S3-compatible object storage you can self-host with erasure coding and multi-site replication. ## What it is MinIO is an open-source, high-performance object storage server that implements the AWS S3 API. It is designed for cloud-native workloads including AI/ML data lakes, backup targets, and application storage …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed5af375) --- # CrowdSec: Collaborative Security Engine Guide 2026 URL: https://tokrepo.com/en/workflows/asset-ed64dcb7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CrowdSec detects attacks from server logs and shares threat intelligence across all users for crowd-sourced IP blocking. ## What it is CrowdSec is an open-source security engine that analyzes server logs, detects attack patterns, and takes automated remediation actions like blocking malicious IPs. Its distinguishing feature is crowd-sourc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed64dcb7) --- # Listmonk: Self-Hosted Newsletter and Mailing List (2026) URL: https://tokrepo.com/en/workflows/asset-ed7b1e03 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Listmonk is a self-hosted, Go-based newsletter manager that sends millions of emails without per-subscriber pricing. ## What it is Listmonk is a high-performance, self-hosted newsletter and mailing list manager built with Go and PostgreSQL. It handles subscriber management, campaign creation, templating, analytics, and delivery at sca …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed7b1e03) --- # Budibase: Open Source Low-Code App Builder (2026) URL: https://tokrepo.com/en/workflows/asset-ed9cefd6 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source low-code platform for building internal tools, admin panels, and workflow apps. ## What it is Budibase is an open-source low-code platform for building internal tools, admin panels, dashboards, and workflow applications. It provides a visual drag-and-drop builder to design user interfaces, connect …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ed9cefd6) --- # v0 by Vercel: AI UI Component Generator (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ee124425 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: v0 generates production-ready React components from natural language descriptions using shadcn/ui and Tailwind CSS. ## What it is v0 is an AI-powered tool by Vercel that generates production-ready React and Next.js UI components from text descriptions. You describe a UI in plain English -- 'a pricing page with 3 tiers and a monthly/a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee124425) --- # Calibre-Web: Self-Hosted eBook Library Setup (2026) URL: https://tokrepo.com/en/workflows/asset-ee491b17 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Calibre-Web turns your Calibre library into a browser-accessible eBook server with reading, metadata editing, and user management. ## What it is Calibre-Web is a self-hosted web application that wraps around your existing Calibre eBook database and exposes it through a clean browser-based UI. Instead of requiring the Calibre desktop app on every ma …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee491b17) --- # Remotion Timing: Interpolation and Animation 2026 URL: https://tokrepo.com/en/workflows/asset-ee8f13ea Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Master Remotion timing with interpolation, easing curves, and spring animations. ## What it is This Remotion skill rule covers interpolation and timing in Remotion videos. Remotion renders video frame-by-frame in React, and animations are driven by the current frame number rather than CSS transition …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee8f13ea) --- # D3.js Data Visualization Library: 2026 Developer Guide URL: https://tokrepo.com/en/workflows/asset-ee953940 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: D3.js is a low-level JavaScript library for building custom data visualizations with SVG, Canvas, and HTML. ## What it is D3 (Data-Driven Documents) is a JavaScript library for creating data visualizations using SVG, Canvas, and HTML. Created by Mike Bostock in 2011, D3 provides the building blocks for bindng data to DOM elem …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee953940) --- # Redux Toolkit: Predictable State for JS Apps (2026) URL: https://tokrepo.com/en/workflows/asset-ee9540a2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Redux Toolkit reduces Redux boilerplate by 80 percent with createSlice, configureStore, and RTK Query for server-state caching. ## What it is Redux is the original predictable state container for JavaScript applications. It enforces a unidirectional data flow: actions describe what happened, reducers specify how state changes, and the store hold …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee9540a2) --- # Expo: Build Universal Native Apps from One Codebase (2026) URL: https://tokrepo.com/en/workflows/asset-ee9542c4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Expo ships React Native apps to iOS, Android, and web from a single codebase with OTA updates. ## What it is Expo is an open-source framework and platform built on top of React Native. It lets you build native mobile apps for iOS and Android, plus web apps, all from a single JavaScript/TypeScript codebase. Expo p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee9542c4) --- # esbuild: Extremely Fast JavaScript Bundler in 2026 URL: https://tokrepo.com/en/workflows/asset-ee954487 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: esbuild bundles JavaScript and TypeScript 10-100x faster than webpack by leveraging Go parallelism. ## What it is esbuild is an extremely fast JavaScript and TypeScript bundler written in Go by Evan Wallace (Figma co-founder). It bundles, minifies, tree-shakes, and generates source maps for modern web projects at spee …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee954487) --- # Mantine: Fully Featured React Components Library (2026) URL: https://tokrepo.com/en/workflows/asset-ee95461f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mantine is a React components library with 120+ components, 70+ hooks, and zero-config dark mode. ## What it is Mantine is a fully featured React components library with 120+ customizable components and 70+ hooks. It is TypeScript-first, includes built-in form management, notifications, modals, and a rich text edito …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ee95461f) --- # Remotion: Measuring DOM Nodes in Video (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-eebf5616 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Use useCurrentScale() to get accurate DOM measurements in Remotion, compensating for the scale transform. ## What it is This is a Remotion skill rule that teaches AI coding assistants how to correctly measure DOM element dimensions inside Remotion video projects. Remotion applies a `scale()` CSS transform to the video conta …(content truncated, full version at https://tokrepo.com/en/workflows/asset-eebf5616) --- # Glama: MCP Server Discovery and Management in 2026 URL: https://tokrepo.com/en/workflows/asset-ef4bec91 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Glama provides a searchable directory of MCP servers with install instructions for Claude Code, Cline, and other AI tools. ## What it is Glama is a discovery and management platform for Model Context Protocol (MCP) servers. It maintains a curated directory of MCP servers that extend AI coding tools like Claude Code and Cline with capabiliti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ef4bec91) --- # DocETL: LLM-Powered Document Processing Pipelines in YAML URL: https://tokrepo.com/en/workflows/asset-ef81583e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: DocETL lets you build LLM-powered document processing pipelines using declarative YAML with map, reduce, and resolve operators. ## What it is DocETL is a Python framework for building LLM-powered document processing pipelines using declarative YAML configuration. Developed at UC Berkeley, it provides operators like map, reduce, resolve, filter, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ef81583e) --- # Puppeteer MCP: Headless Chrome for AI Agents in 2026 URL: https://tokrepo.com/en/workflows/asset-efa97531 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MCP server that gives AI agents headless Chrome control via Puppeteer for screenshots, scraping, PDFs, and web testing. ## What it is Puppeteer MCP is a Model Context Protocol server that wraps Google's Puppeteer library for headless Chrome automation. It gives AI agents the ability to navigate web pages, take screenshots, generate PDFs, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-efa97531) --- # Windmill: Open-Source Internal Tool Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-efb5a136 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Windmill lets you build internal tools, APIs, and scheduled workflows in Python, TypeScript, Go, or SQL with auto-generated UIs. ## What it is Windmill is an open-source platform for building internal tools, APIs, background jobs, and workflows. You write scripts in Python, TypeScript, Go, Bash, or SQL, and Windmill generates a UI, handles schedu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-efb5a136) --- # Typebot: Visual AI Chatbot Builder Self-Hosted 2026 URL: https://tokrepo.com/en/workflows/asset-f05a11a5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Typebot lets you build chatbots visually with drag-and-drop blocks and AI integration. ## What it is Typebot is an open-source visual chatbot builder that lets you create advanced conversational flows using a drag-and-drop interface. It offers 34+ block types for text input, buttons, conditions, API calls …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f05a11a5) --- # Twenty CRM: Open-Source Salesforce Alternative in 2026 URL: https://tokrepo.com/en/workflows/asset-f070d572 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source CRM with custom objects, kanban views, email sync, and workflow automation. Self-hostable Salesforce alternative. ## What it is Twenty is a modern open-source CRM built with NestJS, React, and PostgreSQL. It provides custom objects, kanban views, email synchronization, and workflow automation in a clean interface that prioritizes d …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f070d572) --- # Plane: Open-Source AI Project Management Tool in 2026 URL: https://tokrepo.com/en/workflows/asset-f0879ae4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source Jira/Linear alternative with AI pages, issues, sprints, modules, and roadmaps. Self-hostable. ## What it is Plane is an open-source project management platform that serves as an alternative to Jira and Linear. It includes issues, sprints, modules, roadmaps, and real-time analytics, all enhanced with AI-powered p …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f0879ae4) --- # Inngest: Durable AI Workflow Orchestration with Retries URL: https://tokrepo.com/en/workflows/asset-f09e8059 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Inngest provides durable step functions with automatic retries and state persistence for building reliable AI workflows in TypeScript, Python, or Go. ## What it is Inngest is a durable workflow orchestration platform for building reliable AI pipelines and event-driven applications. It provides step functions that persist state between steps, automatic retries on fail …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f09e8059) --- # STORM: AI Research Report Generator by Stanford (2026) URL: https://tokrepo.com/en/workflows/asset-f09e9348 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: STORM by Stanford uses LLMs to simulate multi-perspective expert conversations and produce cited, Wikipedia-style research reports. ## What it is STORM (Synthesis of Topic Outlines through Retrieval and Multi-perspective question asking) is a research system from Stanford that automates the creation of long-form, Wikipedia-style articles on any topi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f09e9348) --- # Latitude: AI Agent Engineering Platform in 2026 URL: https://tokrepo.com/en/workflows/asset-f0b521ab Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Latitude provides observability, prompt playground, and LLM-as-judge evals for AI agents. ## What it is Latitude is an open-source platform for building, evaluating, and monitoring AI agents in production. It provides observability dashboards, a prompt playground for iterating on prompts, LLM-as-judge evalua …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f0b521ab) --- # Tetragon: eBPF Security Observability for K8s (2026) URL: https://tokrepo.com/en/workflows/asset-f0c89b76 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tetragon uses eBPF to provide real-time security observability and runtime enforcement for process, file, and network activity in Kubernetes. ## What it is Tetragon is a security observability and runtime enforcement tool built on eBPF. Developed by the Cilium/Isovalent team, it hooks directly into the Linux kernel to monitor process execution, file access, a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f0c89b76) --- # Gemini CLI Extension: Google Workspace Docs Sheets (2026) URL: https://tokrepo.com/en/workflows/asset-f0db235b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: This Gemini CLI extension lets you read, create, and edit Google Docs, Sheets, and Slides from the terminal. ## What it is This is a Gemini CLI extension that integrates Google Workspace (Docs, Sheets, and Slides) into your terminal workflow. It allows you to read document content, create new documents, edit existing ones, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f0db235b) --- # Guardrails AI: Validate and Secure LLM Outputs in 2026 URL: https://tokrepo.com/en/workflows/asset-f10382e2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Python framework for validating LLM inputs/outputs with pre-built validators, Pydantic models, and risk detection. ## What it is Guardrails is a Python framework that wraps LLM calls with validation logic. It intercepts inputs and outputs, runs them through configurable validators, and ensures the LLM produces structured, safe, and …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f10382e2) --- # Hadolint: Dockerfile Best Practice Linter in 2026 URL: https://tokrepo.com/en/workflows/asset-f1376326 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hadolint catches Dockerfile anti-patterns by parsing them into an AST and applying ShellCheck. ## What it is Hadolint is a smart Dockerfile linter that parses Dockerfiles into an abstract syntax tree and validates them against proven best-practice rules. It integrates ShellCheck to analyze the shell commands insi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f1376326) --- # Cursor Rules for Python: Clean AI-Assisted Code 2026 URL: https://tokrepo.com/en/workflows/asset-f18133e8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cursor rules that enforce PEP 8, type hints, pytest patterns, and Python 3.12+ idioms in AI-assisted coding. ## What it is This is a set of Cursor rules tailored for Python development. It configures Cursor's AI assistant to enforce PEP 8 style, type hints, docstrings, pytest patterns, and modern Python 3.12+ idioms when gener …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f18133e8) --- # Cursor Rules for Next.js: AI Coding Best Practices (2026) URL: https://tokrepo.com/en/workflows/asset-f1f269b1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Cursor rules file that guides AI to follow Next.js App Router patterns, TypeScript, and Tailwind conventions. ## What it is This is a Cursor rules configuration file designed for Next.js projects. It instructs AI coding assistants to follow App Router patterns, use server components correctly, adhere to TypeScript conventions, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f1f269b1) --- # vCluster: Virtual Kubernetes Clusters in 2026 Guide URL: https://tokrepo.com/en/workflows/asset-f23363bd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: vCluster runs lightweight virtual Kubernetes clusters inside host cluster namespaces for team isolation without extra infrastructure costs. ## What it is vCluster creates lightweight virtual Kubernetes clusters that run inside namespaces of a host cluster. Each virtual cluster has its own API server, control plane, and resource isolation, but shares the und …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f23363bd) --- # n8n: AI Workflow Automation Platform Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-f256d674 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: n8n is a self-hostable visual workflow builder with 400+ integrations and built-in AI agents. ## What it is n8n is a visual workflow automation platform with 400+ integrations and native AI agent capabilities. It lets you connect apps, transform data, and build complex automation workflows through a drag-and-dro …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f256d674) --- # Linear MCP: Project Management for AI Agents 2026 URL: https://tokrepo.com/en/workflows/asset-f2764bfd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Linear MCP lets AI agents create issues, update status, and query projects in Linear. ## What it is Linear MCP is a Model Context Protocol server that connects AI agents to Linear, the project management tool. Through this MCP integration, an AI assistant like Claude Code or Cursor can create issues, upd …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f2764bfd) --- # Windsurf: AI IDE with Cascade Agentic Flows (2026) URL: https://tokrepo.com/en/workflows/asset-f2cfae6c Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Windsurf is a VS Code-based AI IDE where Cascade plans and executes multi-file refactors as agentic flows. ## What it is Windsurf is an AI-powered integrated development environment built by Codeium. It extends a VS Code-based editor with Cascade, a multi-step agentic editing system that plans changes across multiple files, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f2cfae6c) --- # llamafile: Single-File LLM With No Install in 2026 URL: https://tokrepo.com/en/workflows/asset-f30a667e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Run LLMs as single-file executables on any OS with zero installation, built on llama.cpp and Cosmopolitan. ## What it is llamafile packages a large language model and its inference engine into a single executable file that runs on Windows, macOS, Linux, and FreeBSD without any installation. The project combines llama.cpp (th …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f30a667e) --- # Lefthook: Fast Git Hooks Manager in Go for 2026 URL: https://tokrepo.com/en/workflows/asset-f32bbd7e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lefthook runs linters and formatters on git commit/push in parallel, zero dependencies. ## What it is Lefthook is a fast Git hooks manager written in Go. It runs linters, formatters, and tests on git commit and push events in parallel. It ships as a single binary with zero runtime dependencies, replacing t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f32bbd7e) --- # Awesome Cursor Rules MDC: Auto-Generated Rules (2026) URL: https://tokrepo.com/en/workflows/asset-f38ab5c1 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A CC0-licensed collection of 800+ auto-generated Cursor .mdc rule files for popular libraries. ## What it is Awesome Cursor Rules MDC is an open-source repository that auto-generates `.mdc` (Markdown Cursor) rule files for 800+ libraries using Exa search and LLM processing. Each `.mdc` file teaches Cursor AI the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f38ab5c1) --- # Stern: Multi-Pod Log Tailing for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-f3a966bd Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Stern tails logs from multiple Kubernetes pods and containers simultaneously with color-coded output. ## What it is Stern is a CLI tool that tails logs from multiple Kubernetes pods and containers simultaneously. It shows color-coded output with pod and container names, making it easy to follow distributed application l …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f3a966bd) --- # Teable: Open-Source Airtable Alternative on Postgres 2026 URL: https://tokrepo.com/en/workflows/asset-f3c74d7b Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Teable provides a spreadsheet UI on top of PostgreSQL with real-time collaboration and API access. ## What it is Teable is an open-source alternative to Airtable built on PostgreSQL. It combines a familiar spreadsheet interface with the power of a real relational database, offering real-time collaboration, REST API a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f3c74d7b) --- # Huly: Open Source Project Management Platform (2026) URL: https://tokrepo.com/en/workflows/asset-f3eabee0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Huly combines project tracking, documents, team chat, and HR tools in one open-source platform, replacing Linear, Jira, and Slack. ## What it is Huly is an open-source all-in-one project management platform that combines issue tracking, documents, team communication, and HR tools. It positions itself as an alternative to using Linear + Jira + Slack …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f3eabee0) --- # Payload CMS: Open Source Fullstack Next.js CMS (2026) URL: https://tokrepo.com/en/workflows/asset-f40e26c8 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Payload is a TypeScript-first headless CMS with auto-generated admin panel built on Next.js. ## What it is Payload is an open-source, fullstack Next.js framework that gives you an instant backend with a headless CMS, admin panel, authentication, file uploads, and more, all configured in TypeScript code. Unlike …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f40e26c8) --- # Directus: Open-Source Backend for Any SQL Database (2026) URL: https://tokrepo.com/en/workflows/asset-f431a500 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Directus wraps any SQL database with auto-generated REST/GraphQL APIs, an admin app, and workflow automation without schema migration. ## What it is Directus is an open-source data platform that wraps any SQL database with instant REST and GraphQL APIs, an intuitive admin application, authentication, file storage with transforms, and workflow automatio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f431a500) --- # Strapi: Open Source Headless CMS with REST and GraphQL URL: https://tokrepo.com/en/workflows/asset-f454ef61 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Strapi is an open-source headless CMS that auto-generates REST and GraphQL APIs from visual content-type definitions with RBAC and i18n built in. ## What it is Strapi is an open-source headless CMS built with Node.js. It provides a visual content-type builder that generates REST and GraphQL APIs automatically from your content models. Strapi includes role-based a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f454ef61) --- # Awesome Claude Code: Skills, Plugins, and Ecosystem Directory URL: https://tokrepo.com/en/workflows/asset-f49216f0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A curated directory of Claude Code skills, agents, plugins, hooks, slash commands, and CLAUDE.md templates for extending Claude Code capabilities. ## What it is Awesome Claude Code is a community-curated directory of the Claude Code ecosystem. It catalogs skills, agents, plugins, hooks, slash commands, and CLAUDE.md files that extend Claude Code's capabilities. Th …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f49216f0) --- # GPT4All: Run LLMs Privately on Your Desktop in 2026 URL: https://tokrepo.com/en/workflows/asset-f493abd9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: GPT4All runs large language models privately on desktops without GPUs or API calls. MIT licensed. ## What it is GPT4All is a desktop application and Python SDK that runs large language models locally on consumer hardware. It requires no GPU and makes no API calls, keeping all data private on your machine. The projec …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f493abd9) --- # Anthropic Official Claude Code Skills: All 17 Skills (2026) URL: https://tokrepo.com/en/workflows/asset-f4d7c800 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Anthropic maintains 17 official Claude Code skills covering PDF, DOCX, PPTX, XLSX, frontend design, API building, and more. ## What it is This collection contains all 17 official Agent Skills published by Anthropic for Claude Code. These are first-party skills maintained by the Claude Code team, covering document generation (PDF, DOCX, PPTX, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f4d7c800) --- # Exa: AI-Native Search API for Agent Pipelines in 2026 URL: https://tokrepo.com/en/workflows/asset-f550d644 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Search engine built for AI agents that returns clean content via neural search, ideal for RAG and research. ## What it is Exa is a search engine designed specifically for AI agents. Unlike traditional search engines that return a list of links, Exa uses neural search to understand queries semantically and returns clean, struc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f550d644) --- # Engram: Persistent Memory System for AI Agents in 2026 URL: https://tokrepo.com/en/workflows/asset-f5bac4b3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Agent-agnostic persistent memory with SQLite search, shipping as MCP server, HTTP API, CLI, and TUI. ## What it is Engram is a persistent memory system designed for AI coding agents. It stores memories in SQLite with full-text search and ships four interfaces: an MCP server, an HTTP API, a CLI, and a TUI (terminal UI). …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f5bac4b3) --- # Mesop: Build AI Apps Fast with Google's Python UI (2026) URL: https://tokrepo.com/en/workflows/asset-f5dff34f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Mesop is Google's Python UI for building AI demos and chat interfaces quickly. ## What it is Mesop is an open-source Python UI framework created by Google for building AI applications quickly. It provides pre-built components for common AI app patterns -- chat interfaces, text input/output flows, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f5dff34f) --- # Biome: Fast JS/TS Linter and Formatter in 2026 URL: https://tokrepo.com/en/workflows/asset-f6018b95 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Biome is a Rust-built linter and formatter for JavaScript/TypeScript that runs 25x faster than ESLint + Prettier combined. ## What it is Biome is a Rust-powered toolchain that replaces ESLint and Prettier with a single, fast tool. It formats and lints JavaScript, TypeScript, JSX, TSX, JSON, and CSS with 200+ lint rules and 97% Prettier comp …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f6018b95) --- # Cursor Rules Collection: Community .mdc Configs (2026) URL: https://tokrepo.com/en/workflows/asset-f6072bcc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A community-curated collection of .mdc rule files that configure Cursor AI for 40+ tech stacks with project-specific conventions. ## What it is The Cursor Rules Collection is a community-curated set of .mdc configuration files for Cursor AI, covering 40+ technology stacks. These rule files teach Cursor your project's coding conventions, architectu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f6072bcc) --- # Claude Code Agent: Cloud Architect Skill (2026) URL: https://tokrepo.com/en/workflows/asset-f6316926 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Claude Code agent skill for cloud architecture covering infrastructure design, cost optimization, and security across AWS, GCP, and Azure. ## What it is This is a Claude Code agent skill that adds cloud architecture capabilities. It provides structured guidance for infrastructure design, cost optimization, and security best practices across AWS, GCP, and A …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f6316926) --- # SQLite MCP Server for AI Agent Databases (2026) URL: https://tokrepo.com/en/workflows/asset-f67139b3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SQLite MCP gives AI agents direct access to query and modify local SQLite databases through the Model Context Protocol. ## What it is SQLite MCP is the official Model Context Protocol server for SQLite databases. It gives AI agents like Claude Code the ability to query, analyze, and modify SQLite databases through natural language. The s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f67139b3) --- # LangChain4j: LLM Integration for Java Apps (2026) URL: https://tokrepo.com/en/workflows/asset-f7069ed9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: LangChain4j provides a unified Java API across 20+ LLM providers with RAG, tool use, and Spring Boot support. ## What it is LangChain4j is an open-source Java framework that brings LLM integration patterns to the Java ecosystem. It provides a unified API across 20+ LLM providers (OpenAI, Anthropic, Google, Ollama, and others) a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f7069ed9) --- # Tavily: Search API Built for AI Agents and RAG (2026) URL: https://tokrepo.com/en/workflows/asset-f73611a0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tavily provides clean, LLM-ready search results with source attribution for AI agents and RAG. ## What it is Tavily is a search API built specifically for AI agents and RAG pipelines. Unlike Google or Bing APIs that return HTML snippets requiring parsing, Tavily returns clean, LLM-ready text with source attributi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f73611a0) --- # Agno: Production AI Agent Runtime Framework (2026) URL: https://tokrepo.com/en/workflows/asset-f73bc89d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Agno provides a production runtime for stateful AI agents with FastAPI serving and 100+ integrations. ## What it is Agno is a runtime for building and managing agentic software at scale. It provides stateful agents with memory, FastAPI-based serving for production deployment, 100+ tool integrations, and built-in tracing …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f73bc89d) --- # SGLang: Fast LLM Serving with RadixAttention (2026) URL: https://tokrepo.com/en/workflows/asset-f758afa2 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: SGLang serves LLMs and multimodal models with RadixAttention prefix caching, speculative decoding, and structured output support. ## What it is SGLang is a serving framework optimized for running large language models and multimodal models at high throughput. Its signature feature is RadixAttention, a prefix caching mechanism that reuses KV cache …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f758afa2) --- # Terragrunt: DRY Terraform Orchestration Guide 2026 URL: https://tokrepo.com/en/workflows/asset-f771ef08 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Terragrunt wraps Terraform/OpenTofu to eliminate repeated config, manage remote state, and run dependent modules in parallel. ## What it is Terragrunt is a thin orchestration layer built by Gruntwork that wraps Terraform and OpenTofu. It solves the DRY problem in infrastructure-as-code by letting you define shared configurations once and inher …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f771ef08) --- # Planka: Self-Hosted Kanban Board Alternative 2026 URL: https://tokrepo.com/en/workflows/asset-f7aef9df Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Planka is a free, open-source, self-hosted Trello alternative with real-time kanban boards and multi-user collaboration. ## What it is Planka is a self-hosted project management tool that provides real-time kanban boards inspired by Trello. It features drag-and-drop cards, file attachments, checklists, labels, due dates, and per-board acc …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f7aef9df) --- # React Native: Build Native Mobile Apps with React (2026) URL: https://tokrepo.com/en/workflows/asset-f7fe0477 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: React Native renders native iOS and Android UI from a single JavaScript/TypeScript codebase using React components. ## What it is React Native is a framework for building native mobile applications using React. Unlike hybrid frameworks that wrap web content in a webview, React Native translates React components into native iOS (UIKit …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f7fe0477) --- # Kubernetes: Container Orchestration Platform Guide (2026) URL: https://tokrepo.com/en/workflows/asset-f81cebbc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubernetes automates deployment, scaling, and management of containerized applications across clusters. ## What it is Kubernetes (K8s) is the open-source platform for automating deployment, scaling, and management of containerized applications. Originally designed by Google and now maintained by the Cloud Native Computing …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f81cebbc) --- # Node.js Runtime: Server-Side JavaScript Guide 2026 URL: https://tokrepo.com/en/workflows/asset-f83bce6e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Node.js runs JavaScript server-side with event-driven, non-blocking I/O for scalable backends. ## What it is Node.js is the open-source JavaScript runtime that enables server-side JavaScript execution. Built on Chrome's V8 engine, it uses an event-driven, non-blocking I/O model that makes it lightweight and effic …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f83bce6e) --- # Python CPython: The Language That Powers AI in 2026 URL: https://tokrepo.com/en/workflows/asset-f85aefba Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Python is the dominant language for AI, data science, and automation, with CPython as the reference interpreter running on hundreds of millions of machines. ## What it is Python is a high-level, general-purpose programming language known for readability and a vast ecosystem of libraries. CPython is the reference implementation written in C and is what most people mean when …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f85aefba) --- # Docker and Moby: Container Platform Guide for 2026 URL: https://tokrepo.com/en/workflows/asset-f87a33d7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Docker packages applications with dependencies into containers that run consistently everywhere. Moby is the open-source engine behind it. ## What it is Docker is the platform that popularized containerization. It packages applications with their dependencies into standardized containers that run consistently across development, testing, and production env …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f87a33d7) --- # Git: The Distributed Version Control System in 2026 URL: https://tokrepo.com/en/workflows/asset-f8991050 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Git tracks source code changes with distributed repositories, branching, merging, and staging for every developer. ## What it is Git is the most widely used version control system in the world. Created by Linus Torvalds for Linux kernel development, it tracks changes in source code with distributed repositories, branching, merging, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8991050) --- # jq Command-Line JSON Processor: 2026 Developer Guide URL: https://tokrepo.com/en/workflows/asset-f8b7c935 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: jq lets you slice, filter, transform, and format JSON data from the command line with a concise expression language. ## What it is jq is a lightweight command-line tool for processing JSON data. Think of it as sed for JSON -- it takes JSON input, applies filters and transformations using a concise expression language, and outputs the …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8b7c935) --- # Dolt: Version-Controlled SQL Database with Git (2026) URL: https://tokrepo.com/en/workflows/asset-f8c7831d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MySQL-compatible database with Git-style branching, diffing, and pull requests for data. ## What it is Dolt is a MySQL-compatible SQL database that adds Git-style version control to both schemas and data. You can branch, diff, merge, and create pull requests for your database the same way you do with code r …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8c7831d) --- # OpenFGA: Fine-Grained Authorization at Scale in 2026 URL: https://tokrepo.com/en/workflows/asset-f8c97401 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: OpenFGA models complex permissions as relationships using a Zanzibar-inspired DSL and evaluates them at scale. ## What it is OpenFGA is an open-source fine-grained authorization system backed by the CNCF. It is inspired by Google's Zanzibar paper and uses a relationship-based access control (ReBAC) model. You define authorizatio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8c97401) --- # age: Simple Modern File Encryption Tool in 2026 URL: https://tokrepo.com/en/workflows/asset-f8d6637f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: age encrypts files with X25519 keys and zero configuration, replacing GPG for everyday encryption tasks. ## What it is age (pronounced 'ah-geh', from Italian) is a modern file encryption tool designed as a simpler replacement for GPG. Created by Filippo Valsorda, formerly the Go security lead at Google, age focuses on doin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8d6637f) --- # Documenso: Open Source Document Signing Platform (2026) URL: https://tokrepo.com/en/workflows/asset-f8e25455 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Documenso is a self-hosted open-source alternative to DocuSign with PDF e-signatures and full audit trails. ## What it is Documenso is an open-source document signing platform built as an alternative to DocuSign. It supports PDF e-signatures with audit trails, multi-signer workflows, and a modern Next.js stack. You can self-h …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8e25455) --- # sops: Encrypt Secrets in YAML and JSON for Git (2026) URL: https://tokrepo.com/en/workflows/asset-f8f53103 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: sops encrypts secret values in config files while keeping keys readable for version-controlled secrets. ## What it is sops (Secrets OPerationS) is a CLI tool that encrypts values in YAML, JSON, ENV, and INI files while keeping keys in plaintext. This design lets you version-control encrypted secrets in Git because diffs s …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8f53103) --- # Claude Slack GIF Creator Skill (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-f8f6a690 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Claude Code skill that provides constraints, validation tools, and animation concepts for creating Slack-optimized GIFs. ## What it is The slack-gif-creator is an official Claude Code skill that equips Claude with the knowledge and utilities needed to create animated GIFs specifically optimized for Slack. It bundles size constraints, vali …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f8f6a690) --- # React Email: Build HTML Emails with React in 2026 URL: https://tokrepo.com/en/workflows/asset-f9027a32 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: React Email replaces messy HTML table layouts with clean JSX components for building cross-client email templates. ## What it is React Email is a collection of high-quality, unstyled components for building HTML emails using React and TypeScript. Created by the Resend team, it solves the notorious pain of email HTML compatibility by …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f9027a32) --- # PostgreSQL: Advanced Open Source Relational Database (2026) URL: https://tokrepo.com/en/workflows/asset-f913e7f4 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PostgreSQL combines SQL compliance, JSONB, full-text search, and vector embeddings in one database. ## What it is PostgreSQL is the most advanced open-source relational database system. It combines SQL standards compliance with extensibility and reliability. Beyond traditional SQL, PostgreSQL supports JSONB for docume …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f913e7f4) --- # Devika: Open Source AI Software Engineer in 2026 URL: https://tokrepo.com/en/workflows/asset-f921b39a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Devika autonomously plans, researches the web, and writes code using Claude, GPT, or local LLMs. ## What it is Devika is an open-source AI software engineer that takes high-level instructions and autonomously breaks them into steps, researches solutions on the web, plans an implementation, and writes code. It is po …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f921b39a) --- # Lago: Open Source Usage-Based Billing API in 2026 URL: https://tokrepo.com/en/workflows/asset-f9227c2e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Lago handles metering, subscriptions, invoicing, and payment orchestration for usage-based pricing models as an open-source billing API. ## What it is Lago is an open-source billing API designed for usage-based pricing models. It handles event ingestion, metering, subscription management, invoice generation, and payment orchestration. The project is lice …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f9227c2e) --- # Maybe: Open Source Personal Finance Manager in 2026 URL: https://tokrepo.com/en/workflows/asset-f9427ff9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Maybe tracks net worth, investments, spending, and budgets in a self-hosted app with bank syncing support. ## What it is Maybe is an open-source personal finance application that lets you track your net worth, investments, spending, and budgets. It supports bank account syncing, portfolio analysis, and multi-currency trackin …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f9427ff9) --- # Papermark: Open Source Document Sharing Analytics (2026) URL: https://tokrepo.com/en/workflows/asset-f96288dc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Papermark is an open-source DocSend alternative with page-by-page viewing analytics. ## What it is Papermark is an open-source alternative to DocSend for sharing pitch decks, proposals, and documents with detailed analytics. It provides page-by-page viewing data, custom branding, email capture, password …(content truncated, full version at https://tokrepo.com/en/workflows/asset-f96288dc) --- # MindsDB: Create AI Models as Virtual Tables in Your Database URL: https://tokrepo.com/en/workflows/asset-fa02026a Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: MindsDB brings machine learning into your database as virtual tables, letting you query AI predictions with standard SQL and no separate ML pipeline. ## What it is MindsDB brings machine learning directly into your database workflow. Instead of building separate ML pipelines, you create AI models as virtual tables and query predictions with standard SQL. MindsDB conn …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fa02026a) --- # AnythingLLM: All-in-One AI Desktop with MCP Support (2026) URL: https://tokrepo.com/en/workflows/asset-fa84339e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: AnythingLLM bundles RAG, agents, MCP tools, and multi-model chat in one private desktop app. ## What it is AnythingLLM is a full-stack AI desktop application that combines RAG (retrieval-augmented generation), AI agents, MCP server support, and multi-model chat in one interface. It manages documents, embeddings …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fa84339e) --- # PostgreSQL MCP: SQL Database Server for AI Agents (2026) URL: https://tokrepo.com/en/workflows/asset-faa28c56 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: PostgreSQL MCP lets AI agents like Claude run SQL queries, explore schemas, and manage tables through the Model Context Protocol. ## What it is PostgreSQL MCP is a Model Context Protocol server that gives AI agents like Claude direct access to PostgreSQL databases. It translates natural language requests into SQL queries, lets agents explore datab …(content truncated, full version at https://tokrepo.com/en/workflows/asset-faa28c56) --- # bpftrace: High-Level Linux eBPF Tracing Language (2026) URL: https://tokrepo.com/en/workflows/asset-fac5cfb3 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: bpftrace lets you write one-liner eBPF scripts to instrument the Linux kernel and user-space programs. ## What it is bpftrace is a high-level tracing language for Linux that uses eBPF to instrument the kernel and user-space programs. It provides an awk-like syntax for writing powerful one-liner performance analysis scrip …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fac5cfb3) --- # Continue: Open-Source AI Code Assistant for IDEs (2026) URL: https://tokrepo.com/en/workflows/asset-faed3b71 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source IDE extension connecting any LLM for autocomplete, chat, and inline edits with full customization. ## What it is Continue is an open-source AI code assistant that runs inside VS Code and JetBrains IDEs. Unlike closed-source alternatives, Continue lets you bring your own model — OpenAI, Anthropic, local Ollama, or any …(content truncated, full version at https://tokrepo.com/en/workflows/asset-faed3b71) --- # Apache Iceberg: Open Table Format for Data Lakes (2026) URL: https://tokrepo.com/en/workflows/asset-fba4cec0 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Iceberg is an open table format that adds ACID transactions and schema evolution to Parquet data lakes. ## What it is Apache Iceberg is a high-performance, engine-agnostic open table format designed for huge analytical datasets. It sits between your compute engine (Spark, Trino, Flink, Dremio) and your object storage (S3, …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fba4cec0) --- # Kubeshark: eBPF API Traffic Viewer for Kubernetes (2026) URL: https://tokrepo.com/en/workflows/asset-fbc1309f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Kubeshark captures and decodes L4/L7 traffic between Kubernetes pods in real time using eBPF, no sidecars required. ## What it is Kubeshark is an open-source real-time API traffic viewer for Kubernetes. Think of it as Wireshark for your cluster -- it captures pod-to-pod, pod-to-service, and external traffic at the node level using eB …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fbc1309f) --- # Sonobuoy: Kubernetes Cluster Diagnostics Tool (2026) URL: https://tokrepo.com/en/workflows/asset-fc123f30 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Sonobuoy validates Kubernetes clusters against the CIS specification using non-destructive conformance tests and custom plugins. ## What it is Sonobuoy is a diagnostic tool that runs Kubernetes conformance tests and custom plugins to validate cluster health. It provides a non-destructive way to certify that clusters meet the Kubernetes specificat …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc123f30) --- # Flipt: Git-Native Open Source Feature Flags (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-fc1b5cd9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Flipt stores feature flag configuration in Git with boolean flags, percentage rollouts, and multi-language SDKs. ## What it is Flipt is a self-hosted, open-source feature flag platform that stores flag configuration in Git. It supports boolean and multi-variate flags with percentage rollouts, segment targeting, and real-time evalu …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc1b5cd9) --- # Agenta: Open-Source LLMOps Platform for Teams (2026) URL: https://tokrepo.com/en/workflows/asset-fc2ccb05 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Agenta combines prompt playground, evaluation, and observability in one open-source LLMOps platform. ## What it is Agenta is an open-source LLMOps platform that combines prompt engineering, evaluation, and production observability in a single tool. It provides a visual playground for testing prompts across models, a fr …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc2ccb05) --- # Stirling PDF: Self-Hosted PDF Editor and Toolkit (2026) URL: https://tokrepo.com/en/workflows/asset-fc325975 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Stirling PDF provides a full-featured PDF editing suite that runs entirely on your own server, keeping all document data private. ## What it is Stirling PDF is an open-source, self-hosted web application for performing PDF operations. It handles merging, splitting, converting, compressing, OCR, signing, and editing PDFs through a browser-based int …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc325975) --- # Ente: End-to-End Encrypted Photo Storage and 2FA (2026) URL: https://tokrepo.com/en/workflows/asset-fc51cc31 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Ente provides end-to-end encrypted photo backup and 2FA token management where not even the server can access your data. ## What it is Ente is an end-to-end encrypted cloud platform with two core products: Ente Photos (a Google Photos alternative) and Ente Auth (a Google Authenticator alternative). The zero-knowledge architecture encrypts …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc51cc31) --- # Prompt Engineering Guide: Comprehensive Learning Hub (2026) URL: https://tokrepo.com/en/workflows/asset-fc6496bc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: The Prompt Engineering Guide is the most comprehensive open-source resource for learning prompt techniques: CoT, RAG, agents, and more. ## What it is The Prompt Engineering Guide is an open-source educational resource covering prompt engineering techniques for large language models. It includes written guides, research paper summaries, Jupyter notebooks …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc6496bc) --- # Linkwarden: Self-Hosted Bookmark Manager (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-fc714a8d Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Linkwarden captures full-page screenshots and PDFs of every bookmark you save, so links survive even if original pages vanish. ## What it is Linkwarden is a self-hosted, open-source bookmark manager built for teams and individuals who want to preserve web content permanently. Unlike browser bookmarks or cloud services like Pocket, Linkwarden ca …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc714a8d) --- # Portainer: Docker and Kubernetes Management UI (2026) URL: https://tokrepo.com/en/workflows/asset-fc90d052 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Portainer provides a web UI for deploying, monitoring, and managing Docker and Kubernetes containers. ## What it is Portainer is an open-source container management platform that provides a web UI for Docker, Docker Swarm, and Kubernetes environments. It lets you deploy, monitor, and manage containers through an intuiti …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fc90d052) --- # Glance: Self-Hosted Dashboard for All Feeds 2026 URL: https://tokrepo.com/en/workflows/asset-fcb05dd5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Glance aggregates RSS, Reddit, YouTube, weather, stocks, and GitHub releases into one self-hosted dashboard. ## What it is Glance is a self-hosted dashboard that aggregates RSS feeds, Reddit posts, YouTube channels, weather forecasts, stock prices, GitHub releases, and more into a single, beautiful page. It runs as a lightweig …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fcb05dd5) --- # Stagehand: AI Browser Automation SDK Guide 2026 URL: https://tokrepo.com/en/workflows/asset-fd07b08f Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Stagehand automates browsers using natural language instructions and visual page understanding, built on Playwright. ## What it is Stagehand is a TypeScript SDK that lets you automate browsers using natural language and visual understanding. Instead of writing CSS selectors or XPath queries, you describe what you want in plain English …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fd07b08f) --- # MetalLB: Bare-Metal Kubernetes Load Balancer in 2026 URL: https://tokrepo.com/en/workflows/asset-fd41c4ac Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Network load-balancer implementation for bare-metal Kubernetes using Layer 2 or BGP routing protocols. ## What it is MetalLB is a load-balancer implementation for bare-metal Kubernetes clusters. In cloud environments, Services of type LoadBalancer are automatically provisioned by the cloud provider. On bare-metal cluster …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fd41c4ac) --- # Astro: Content-First Web Framework for Speed (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-fd6048d5 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Astro builds blazing-fast content sites with zero JS by default and islands architecture. ## What it is Astro is a web framework designed for content-heavy websites that ships zero JavaScript to the browser by default. It uses an islands architecture where interactive components are hydrated selectively, kee …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fd6048d5) --- # Remotion Sequencing Patterns for Video in React (2026) URL: https://tokrepo.com/en/workflows/asset-fda3b2ce Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Remotion sequencing patterns handle delay, trim, and duration limits for composing video scenes in React code. ## What it is The Remotion Sequencing rule is part of the official Remotion Agent Skill. It provides patterns for controlling when video elements appear, how long they last, and how they overlap in time. Sequencing is t …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fda3b2ce) --- # build-validator: CI Validation Subagent for Claude Code URL: https://tokrepo.com/en/workflows/asset-fded195c Type: featured-workflow Updated: 2026-04-30T11:16:39.946799 > **TL;DR**: build-validator runs typecheck, lint, unit tests, and build locally before push. ## What build-validator Solves Before You git push **Direct answer:** `build-validator` is an open-source Claude Code subagent that runs your project's full local build pipeline — typecheck, lint, unit tests, and build …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fded195c) --- # Trae: Free AI IDE by ByteDance with Claude (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-fdfd6a94 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Trae provides free Claude Sonnet and GPT-4o access in a VS Code-based IDE with inline chat and agentic editing. ## What it is Trae is a free AI-powered IDE by ByteDance that includes built-in access to Claude Sonnet and GPT-4o at no cost. Built on VS Code, it offers two AI modes: Chat for quick questions and inline assistance, an …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fdfd6a94) --- # Cline: Autonomous AI Coding Agent for VS Code (2026) URL: https://tokrepo.com/en/workflows/asset-fe3f1223 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Cline is a VS Code extension that autonomously creates files, runs commands, and uses tools with human approval at each step. ## What it is Cline is an autonomous AI coding agent that runs inside VS Code. It can create and edit files, execute terminal commands, browse the web for research, and connect to MCP tools. Every action requires human …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fe3f1223) --- # Open-Sora: Open-Source Text-to-Video Generation 2026 URL: https://tokrepo.com/en/workflows/asset-ff30d766 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Open-source 11B parameter text-to-video framework. Fully trainable, Apache 2.0, supports text-to-video and image-to-video. ## What it is Open-Sora is an open-source video generation framework built by HPC-AI Tech. It features an 11B parameter model capable of generating videos from text prompts or animating static images. Unlike closed-sour …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ff30d766) --- # Outlines: Structured Output from Any LLM Provider (2026) URL: https://tokrepo.com/en/workflows/asset-ff70f132 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Outlines guarantees valid JSON and structured output from any LLM using guided generation. ## What it is Outlines is an open-source library that generates structured, validated output from any LLM. Unlike API-level structured outputs (which only work with specific providers), Outlines uses guided generation a …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ff70f132) --- # Hono: Ultrafast Web Framework for the Edge (2026 Guide) URL: https://tokrepo.com/en/workflows/asset-ff72c952 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Hono is a lightweight web framework running on Cloudflare Workers, Deno, and Bun. ## What it is Hono is an ultrafast, lightweight web framework designed for edge computing runtimes. It runs on Cloudflare Workers, Deno, Bun, AWS Lambda, Fastly, and Node.js with the same codebase. The framework weighs …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ff72c952) --- # Remotion AI Voiceover Skill with ElevenLabs TTS URL: https://tokrepo.com/en/workflows/asset-ff8cbccc Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: A Remotion skill that generates ElevenLabs TTS voiceover and auto-sizes video composition duration to match the audio length. ## What it is This is a Remotion skill for adding AI-generated voiceover to programmatic videos using ElevenLabs text-to-speech. The skill generates speech audio per scene and uses Remotion's `calculateMetadata` functio …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ff8cbccc) --- # Guardrails AI: Validate LLM Outputs in Production 2026 URL: https://tokrepo.com/en/workflows/asset-ffbad589 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Guardrails AI adds validation layers to any LLM output, checking for hallucination, PII, toxicity, and format errors. ## What it is Guardrails AI is a Python library that adds validation and safety checks to LLM outputs. It provides 50+ built-in validators that check for hallucination, toxicity, PII leakage, format compliance, and fact …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ffbad589) --- # Authelia: SSO and 2FA for Your Self-Hosted Apps (2026) URL: https://tokrepo.com/en/workflows/asset-ffbe9852 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Authelia is an SSO portal that adds TOTP, WebAuthn, and passkey authentication in front of your reverse proxy for self-hosted apps. ## What it is Authelia is a self-hosted authentication and authorization server that adds single sign-on (SSO) and two-factor authentication (2FA) to any web application behind a reverse proxy. It supports TOTP, WebAuth …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ffbe9852) --- # Tree-sitter: Incremental Parser for Code Editors (2026) URL: https://tokrepo.com/en/workflows/asset-ffd869e7 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Tree-sitter provides fast, incremental parsing for syntax highlighting and structural code edits. ## What it is Tree-sitter is a parser generator tool and an incremental parsing library. It builds concrete syntax trees for source code files and updates them efficiently as you edit. Tree-sitter powers syntax highligh …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ffd869e7) --- # Zep: Long-Term Memory for AI Agents in 2026 URL: https://tokrepo.com/en/workflows/asset-ffde39a9 Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: Zep stores conversations, extracts facts, builds knowledge graphs, and gives LLMs temporal-aware retrieval. ## What it is Zep is a production memory layer for AI assistants and agents. It goes beyond simple conversation logging by extracting structured facts from dialogue, building knowledge graphs of entities and relationshi …(content truncated, full version at https://tokrepo.com/en/workflows/asset-ffde39a9) --- # CasaOS: Simple Open-Source Personal Cloud System (2026) URL: https://tokrepo.com/en/workflows/asset-fff69b5e Type: featured-workflow Updated: 2026-04-15T00:00:00Z > **TL;DR**: CasaOS turns any hardware into a personal cloud with a Docker-based dashboard and one-click apps. ## What it is CasaOS is a community-driven personal cloud system built around Docker. It provides a clean dashboard for one-click application installation, file management, and device monitoring. CasaOS runs on any hard …(content truncated, full version at https://tokrepo.com/en/workflows/asset-fff69b5e) --- # Agent Deployment Templates — 10 Picks for Shipping an AI Agent to Production URL: https://tokrepo.com/en/packs/agent-deployment-templates Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks that take an AI agent from `python main.py` on your laptop to a serving HTTP endpoint that survives the first 1,000 real requests. Two FastAPI agent skeletons (Agno, PydanticAI), two serverless targets (Modal, Replicate Cog), two sandbox runtimes for untrusted tool calls (E2B, Daytona), a state store + queue (Upstash Redis/Kafka), a stateful-graph framework (LangGraph), and a Kubernetes deploy pattern (Agent Sandbox). Open-source-first; hosted SaaS only where it earns its bill. ## What's in this pack This is the stack a working engineer would assemble the *week before* shipping an AI agent to real users — not the heroic post-launch scramble when the first OOM kill takes the service down. Every …(content truncated, full version at https://tokrepo.com/en/packs/agent-deployment-templates) --- # Agent Evaluation + Benchmark Stack — 10 Picks to Measure Agent Quality URL: https://tokrepo.com/en/packs/agent-eval-benchmark Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks ordered by the actual eval pipeline an ML/LLM engineer builds for an agent: write a test set, run it offline, score against a published benchmark, instrument traces, judge them with an LLM, add safety checks, and gate every PR in CI. The lesson the hard way: agents that look great in a demo regress silently — only a measured loop catches it. ## What's in this pack This is the stack you build when the agent demo wowed the room, a few users started filing weird complaints, and you realized you have no idea whether last week's prompt edit helped or quietly reg …(content truncated, full version at https://tokrepo.com/en/packs/agent-eval-benchmark) --- # Agent Frameworks Across Languages: Java, Rust, TS, Python URL: https://tokrepo.com/en/packs/agent-frameworks-multilang Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six frameworks that make agentic apps a first-class citizen in Java, Rust, TypeScript and Python — pick the one that matches your existing stack instead of bolting Python alongside. Install via TokRepo CLI. ## What's in this pack This pack collects the **six agent frameworks** that let teams stay in their existing language ecosystem instead of bolting a Python service onto a Java or Rust backend just for LLM features. The …(content truncated, full version at https://tokrepo.com/en/packs/agent-frameworks-multilang) --- # Agent Memory Layer Comparison: Mem0 vs Letta vs Graphiti vs Zep (2026) URL: https://tokrepo.com/en/packs/agent-memory-comparison Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: There is no best memory layer — only the right one for your shape of problem. This pack lines up ten options from lightweight library to hosted service to graph engine, in install order, with a decision matrix that tells you which to pick by answering one question: how much state does a session actually need to survive? ## Why this pack exists Our earlier `agent-memory-layer` pack covered the three canonical libraries — Mem0, Zep, Cognee — and four design patterns. Useful, but every week someone on Twitter posts "which memory layer sho …(content truncated, full version at https://tokrepo.com/en/packs/agent-memory-comparison) --- # Agent Memory Layer: Mem0, Zep, Cognee patterns for 2026 URL: https://tokrepo.com/en/packs/agent-memory-layer Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Three production memory libraries (Mem0, Zep, Cognee) plus four patterns that stop you stuffing the prompt with everything you ever knew. One-command install via TokRepo. ## What's in this pack This pack collects the **seven memory-layer assets** that show up in every agent that needs to remember things between sessions without re-pasting them into the prompt every time. Three are the ca …(content truncated, full version at https://tokrepo.com/en/packs/agent-memory-layer) --- # Agent Observability + Tracing — Deep Traces for LLM Agents URL: https://tokrepo.com/en/packs/agent-observability-tracing Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Seven tracing assets for the ML/LLM engineer who needs to answer 'why did the agent do that?' — open-source (Langfuse, Phoenix, AgentOps) plus hosted (LangSmith, Helicone) plus the OpenTelemetry spec everyone else builds on. Span trees, tool-call replay, retry chains, and reflection-loop diffs — debugging primitives, not just cost dashboards. ## What's in this pack The day an agent silently loops between two tools for 47 turns and returns a confident wrong answer is the day you wish you had **span-level traces**, not a per-prompt cost chart. This pack is bui …(content truncated, full version at https://tokrepo.com/en/packs/agent-observability-tracing) --- # AI App Builders: 7 Generators for Full-Stack Apps & React URL: https://tokrepo.com/en/packs/ai-app-builders Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven AI builders that go from prompt to running app in minutes — Bolt for greenfield SaaS, Webstudio for design-first React, Budibase and ToolJet for internal tools, Onlook for live-design React, Sandpack for embedded sandboxes. ## What's in this pack | # | Builder | Best for | Output | |---|---|---|---| | 1 | bolt.diy | self-hosted Bolt-style generator | full-stack app in WebContainer | | 2 | Bolt.new | hosted prompt-to-SaaS | full-stack app + …(content truncated, full version at https://tokrepo.com/en/packs/ai-app-builders) --- # AI Beginner Zero-to-One — 8 Tools for Your First Week with AI URL: https://tokrepo.com/en/packs/ai-beginner-zero-to-one Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Eight low-barrier picks, one per job: chat, search, notes, image, video, slides, meeting notes, writing. Install in this order and by Sunday you have a real working setup — not a 30-tab tab graveyard. ## What's in this pack If you've never used AI before and the tutorials all assume you already know what an API key is, this pack is for you. We picked **one tool per job** across the eight jobs a normal person actually …(content truncated, full version at https://tokrepo.com/en/packs/ai-beginner-zero-to-one) --- # AI Code Editor Showdown: 5 Editors Challenging Cursor URL: https://tokrepo.com/en/packs/ai-code-editor-showdown Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five editors making a real run at Cursor's AI-first crown — open-source Zed, code-graph-aware Cody, BYOM Continue, terminal-native Morphic, and the AGENTS.md-driven OpenCode. Pick by latency, model freedom, or workflow shape. ## What's in this pack | # | Editor | Killer feature | Open-source | |---|---|---|---| | 1 | Zed | Rust-native rendering, multiplayer + AI | yes (GPL) | | 2 | Cody | code-graph context from Sourcegraph indexer | yes (Ap …(content truncated, full version at https://tokrepo.com/en/packs/ai-code-editor-showdown) --- # Claude Code vs Cursor vs Codex CLI vs Windsurf: 2026 Compared URL: https://tokrepo.com/en/packs/ai-coding-agents-compared Type: pack Updated: 2026-05-02T14:00:00Z > **TL;DR**: A side-by-side of Claude Code vs Cursor vs Codex CLI vs Windsurf, plus the leaked system-prompt collection of 30+ AI coding tools and a 2026 landscape map. ## What's in this pack The AI-coding-agent space had four real contenders by mid-2026: Claude Code, Cursor, Codex CLI, Windsurf. They all do "agent edits your code", but they make very different bets on UI surface, agen …(content truncated, full version at https://tokrepo.com/en/packs/ai-coding-agents-compared) --- # AI Cost Optimization — Token-Saving Engineering Stack URL: https://tokrepo.com/en/packs/ai-cost-optimization-stack Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten assets for the SaaS / agent team whose LLM invoice is now a real line on the P&L. Five layers in order: measure (TokenCost, LiteLLM cost dashboard), cache (Helicone, Cloudflare AI Gateway), route (LiteLLM, OpenRouter, Manifest, Portkey), compress (LLMLingua), fine-tune (Fireworks LoRA). Most teams that follow this order land between 10% and 50% savings without measurable quality loss; the upper end is reserved for high-cache-hit chat support and high-volume classification, not greenfield agent reasoning. ## What's in this pack When the monthly LLM invoice crosses five figures, every engineer suddenly has an opinion about caching. This pack is the boring, ordered playbook that actually moves the number: measure before yo …(content truncated, full version at https://tokrepo.com/en/packs/ai-cost-optimization-stack) --- # AI Customer Growth + Retention — Onboarding, Lifecycle, Churn Watch URL: https://tokrepo.com/en/packs/ai-customer-growth-retention Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in deliberate order: analytics → segments → in-app nudge → lifecycle email → NPS measurement. Self-hostable core, MCP-friendly so an agent can read the data and draft the next experiment instead of you exporting CSVs. ## What's in this pack This is the rig for the growth or PMM lead at a SaaS who has been told to lift activation, cut churn, and *prove it with numbers* — not vibes from a Slack thread. Every pick here is either open so …(content truncated, full version at https://tokrepo.com/en/packs/ai-customer-growth-retention) --- # AI Customer Support Stack — 10 Open-Source Picks for SaaS Tier-1 URL: https://tokrepo.com/en/packs/ai-customer-support-stack Type: pack Updated: 2026-05-22T13:00:00Z > **TL;DR**: Ten picks in deliberate order: pick an inbox (Chatwoot / Zammad / FreeScout), bolt on a CX OS, deflect with a chatbot + conversational AI, ground answers in a RAG knowledge base, let an AI agent draft replies, and route hard cases to humans with HumanLayer. ## What's in this pack This is the stack a SaaS team would stand up the week they decide tier-1 support has to scale without doubling headcount — not a feature checklist from a vendor blog. Every pick here is **open-sou …(content truncated, full version at https://tokrepo.com/en/packs/ai-customer-support-stack) --- # AI HR + Recruiting Stack — 10 Tools to Put AI in the Funnel URL: https://tokrepo.com/en/packs/ai-hr-recruiting-stack Type: pack Updated: 2026-05-22T14:30:00Z > **TL;DR**: Ten picks in funnel order: source → screen → interview → offer → onboard. Each step ends in a bias-audit pass before any decision reaches a candidate. ATS connectors via MCP, not a chatbot replacement. ## What's in this pack This is the stack a recruiter or HR lead would actually wire up to handle a hiring round end-to-end — not a 50-vendor demo day. Every pick here does one job in the funnel a real opening goes throu …(content truncated, full version at https://tokrepo.com/en/packs/ai-hr-recruiting-stack) --- # AI Image Generation Pack — 10 Open-Source Tools for Devs and Artists at Scale URL: https://tokrepo.com/en/packs/ai-image-generation-pack Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten open-source picks in a deliberate order: workflow engine first (ComfyUI), then a base UI (AUTOMATIC1111 or Fooocus), then production (InvokeAI), then spatial control (ControlNet), then the Python core (Diffusers), then LoRA training (Kohya), then motion (AnimateDiff), then batch cloud (Replicate), then MCP wiring. Each layer unlocks the next. ## What's in this pack This is the rig a working image-gen engineer would build over a weekend — not a Civitai bookmark dump. Every pick here is **open-source**, **actively maintained**, and earns the disk space it take …(content truncated, full version at https://tokrepo.com/en/packs/ai-image-generation-pack) --- # AI Legal + Compliance Audit — 10 Tools for SOC2, GDPR, and Enterprise Risk Programs URL: https://tokrepo.com/en/packs/ai-legal-compliance-audit Type: pack Updated: 2026-05-22T13:00:00Z > **TL;DR**: Ten picks in deliberate order built around an audit cycle, not a single contract review. Intake your policies and evidence, run a structured gap analysis against a chosen framework, generate a risk register the agent can update, map each control to the system that produces evidence, capture every AI decision in an immutable log, and finish with a draft report a human still signs off on. Engineering scaffolding for the compliance team — not legal advice and not a substitute for an auditor's professional judgment. ## What's in this pack This is the rig the in-house compliance officer, SOC2-prep lead, or privacy officer would assemble for an enterprise audit cycle — explicitly **not** the same problem a single lawyer faces when re …(content truncated, full version at https://tokrepo.com/en/packs/ai-legal-compliance-audit) --- # AI Marketing Content Studio — 10 Tools for SEO, Blog, Social, Ads, Analytics URL: https://tokrepo.com/en/packs/ai-marketing-content-studio Type: pack Updated: 2026-05-22T08:00:00Z > **TL;DR**: Ten picks in a deliberate marketing pipeline: keyword research and SEO audit first, then blog production, social scheduling, paid-ad creatives, attribution, and a privacy-first analytics layer that closes the loop. Built for the marketing team that runs SEO, social, and paid out of the same room. ## What's in this pack This is the stack a real marketing team puts together when they decide AI is going to do the rough draft of every blog post, every ad headline, every social caption — and a human will still own th …(content truncated, full version at https://tokrepo.com/en/packs/ai-marketing-content-studio) --- # AI Music & Audio Generation Pack — 10 Open Tools for Musicians & Creators URL: https://tokrepo.com/en/packs/ai-music-audio-generation Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten open and open-API picks arranged as a real pipeline: input (prompts, lyrics, MIDI) → generate (music, voice, SFX) → arrange (DAW, notation, web) → mix (source separation, repair) → master & export. Skip Suno/Udio's web UI — own the stack. ## What's in this pack This is the rig for a musician, podcaster, or game/web creator who wants to **generate audio with AI and finish it in tools they control** — not lock the master to a SaaS web app. Every pick is ei …(content truncated, full version at https://tokrepo.com/en/packs/ai-music-audio-generation) --- # AI MVP in 7 Days — 10 Tools to Ship a Paying SaaS in One Week URL: https://tokrepo.com/en/packs/ai-mvp-7-day-builder Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten picks across five layers (ideation, scaffold, payments, analytics, launch) sequenced over seven days. Cursor drives the editor, v0 + Bolt.new generate UI on Day 1-2, Supabase + the core feature land Day 3-4, Stripe MCP + Resend wire money on Day 5, PostHog + Sentry instrument Day 6, Vercel CLI ships Sunday. By Day 7 you have a deployed, monitored, payable product — not a perfect one. ## What's in this pack (the 7-day shipping toolchain) This is the toolchain for a solo builder who has *seven calendar days* to turn an idea into a product that can take money. Not a hackathon prototype, not a Friday-ni …(content truncated, full version at https://tokrepo.com/en/packs/ai-mvp-7-day-builder) --- # AI Personal Finance + Indie Bookkeeping — 10 Picks for Solo Founders URL: https://tokrepo.com/en/packs/ai-personal-finance-indie Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks in deliberate order: pull receipts and Stripe/Mercury statements into structured rows, categorize without a chart-of-accounts seminar, drop the data into a self-hosted P&L, watch your runway, send invoices in any currency, and stage your quarterly tax estimate on a dashboard. Lighter than the accountant pack — no audit trail ceremony, no Ledger syntax, no CPA-tier modeling. ## What's in this pack This is the stack for **the person who is the company** — a solo SaaS founder pulling Stripe payouts into a personal account, a freelance designer invoicing four clients across three currencies, a …(content truncated, full version at https://tokrepo.com/en/packs/ai-personal-finance-indie) --- # AI Personal Tutor + Self-Learning — 10 Tools for the Adult Learner URL: https://tokrepo.com/en/packs/ai-personal-tutor-learning Type: pack Updated: 2026-05-22T16:00:00Z > **TL;DR**: Ten picks in deliberate order for the adult learner who is the teacher *and* the student: a tutor prompt to talk to, a document-grounded tutor for the textbook you actually own, a Socratic agent and an active-recall agent to stop passive reading, a structured path so you don't wander, a reflection skill so lessons stick, plus Fabric / NotebookLM / Khoj / Mem0 as the supporting cast. Loop: pick topic → tutor prompt → flashcard / active recall → quiz → review. ## What's in this pack This is the stack for an adult who decided to learn something hard on their own — a new programming language, conversational Spanish, calculus they avoided in college, the AWS Solutions Architect …(content truncated, full version at https://tokrepo.com/en/packs/ai-personal-tutor-learning) --- # AI Safety + Red Team — 10 Tools to Pre-Flight LLM Apps Against Prompt Injection, Jailbreaks, and Agent Over-Privilege URL: https://tokrepo.com/en/packs/ai-safety-red-team Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten picks ordered around the only workflow that actually catches the bugs before users do: scan the agent spec statically, fuzz the deployed surface with red-team prompts, wrap the live request path with input/output guardrails, then audit the surrounding MCP and infrastructure for the obvious supply-chain gaps. Real CLIs, real coverage numbers, no vendor lock-in. The tools propose attacks and block outputs; a named human still decides what residual risk is acceptable to ship. ## What's in this pack This is the kit the AI security engineer would assemble the week before launch — explicitly *not* the kit a hobbyist needs to play with one chatbot. The audience here owns a recurring pre-flight: …(content truncated, full version at https://tokrepo.com/en/packs/ai-safety-red-team) --- # AI Sales + Outreach Pack — 10 Tools to Run Cold Outreach With Agents URL: https://tokrepo.com/en/packs/ai-sales-outreach-pack Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks in deliberate order: enrich the lead, research the account, draft the email that earned the reply, send and log without leaving the agent, then capture the meeting back into the CRM. Built around an auditable contact graph, not a chatbot. ## What's in this pack This is the stack for someone who actually has to **book the meeting** — a founder doing their own outbound at pre-seed, a single AE at a 20-person Series A, a solo consultant filling next quarter …(content truncated, full version at https://tokrepo.com/en/packs/ai-sales-outreach-pack) --- # AI Second Brain: Logseq, Khoj, Karakeep, AFFiNE Self-Host URL: https://tokrepo.com/en/packs/ai-second-brain Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six self-hosted tools that turn everything you read into one queryable knowledge graph: notes, AI search, bookmarks, workspace, and a markdown ingestor. ## What's in this pack This pack assembles the **six self-hosted tools** that together form a personal AI-queryable knowledge graph — the "second brain" pattern Tiago Forte popularized, but with the AI search layer that …(content truncated, full version at https://tokrepo.com/en/packs/ai-second-brain) --- # AI Side Hustle Kit — 10 Tools to Ship a Weekend Product URL: https://tokrepo.com/en/packs/ai-side-hustle-kit Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks in deliberate order: research first (so you know what to build), then sourcing, then content, then outreach, then the glue that runs it all on a cron while you're at your real job. ## What's in this pack This is the stack for someone with a full-time job and an idea that won't go away — not the 50-framework shopping list you get from Twitter. Every pick here does one job in a real side-business pi …(content truncated, full version at https://tokrepo.com/en/packs/ai-side-hustle-kit) --- # AI Test Generation + E2E Pack — 10 Picks to Get to Green CI URL: https://tokrepo.com/en/packs/ai-test-generation-e2e Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order: a Test Engineer agent to plan strategy, a fast unit runner (Vitest) plus a fallback (Jest) for JS/TS and pytest for Python, Hypothesis to generate property tests from a spec, MSW to mock the network layer, then Playwright as the E2E framework, Playwright MCP so an agent can drive a real browser, a Playwright Tester subagent that writes the actual specs, and finally verify-app that runs the whole thing in CI and triages failures. ## What's in this pack This is the pack for the engineer who finally accepted that **AI is faster than they are at writing the boring tests** — the ones for the validator that takes 6 string permutations, the integratio …(content truncated, full version at https://tokrepo.com/en/packs/ai-test-generation-e2e) --- # AI Video Generation Pack — 10 Tools for Text-to-Video and Image-to-Video Workflows URL: https://tokrepo.com/en/packs/ai-video-generation-pack Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks for the creator or developer who is generating video from text or image. Open-source models for local control, a commercial-API skill for when you need Sora / Veo / Runway quality, camera and motion control via ControlNet and Motion Canvas, Real-ESRGAN upscale, and an editor to assemble the clips. ## What this pack is for Generating AI video is no longer one model. It is a **pipeline**: pick a model, write a prompt, condition on a keyframe, control camera or motion, upscale, then cut. This pack assembles the ten …(content truncated, full version at https://tokrepo.com/en/packs/ai-video-generation-pack) --- # AI Web Scraping: 5 Engines That Output LLM-Ready Markdown URL: https://tokrepo.com/en/packs/ai-web-scraping Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five open-source scraping engines that skip BeautifulSoup hell and emit LLM-ready markdown directly. Install the whole pack via TokRepo, or pick the engine that fits your stack. ## What's in this pack | # | Engine | Strength | Language | |---|---|---|---| | 1 | Firecrawl | hosted API + self-host, JS-render, sitemap crawl | TypeScript | | 2 | Crawlee | full crawler framework with proxy rotation …(content truncated, full version at https://tokrepo.com/en/packs/ai-web-scraping) --- # Aider Pair Programming Essentials — 10 Picks for Terminal-Native AI Coding URL: https://tokrepo.com/en/packs/aider-pair-programming Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order: Aider itself, .aider.conf.yml, AGENTS.md/CONVENTIONS.md style project guidelines, LiteLLM proxy so you can swap models without rewriting calls, DeepSeek Coder for cheap turns, watch mode so any editor triggers Aider, Git MCP and Lazygit to actually use the commit-per-edit trail, tmux to run tests alongside, and the coding agent comparison so you know when Aider is wrong for the job. Skip the YouTube rabbit hole — these ten get you productive. ## What's in this pack Aider is the OG. Before Claude Code, before Codex CLI, before Cursor's agent mode — Paul Gauthier shipped `aider` and proved you could pair-program with an LLM from a terminal, with a real git com …(content truncated, full version at https://tokrepo.com/en/packs/aider-pair-programming) --- # Anthropic Builders: 17 skills + Agent SDK + MCP spec URL: https://tokrepo.com/en/packs/anthropic-builders Type: pack Updated: 2026-05-02T15:20:00Z > **TL;DR**: The official builder bundle: every Anthropic-authored skill, the Agent SDK with demos, the CLAUDE.md project template, five quickstarts, and a copy of the MCP spec. ## What's in this pack This is the **first-party Anthropic stack** — every asset here was authored or sanctioned by Anthropic itself. If you want to know "what does Anthropic actually ship to help me build with Claude?" …(content truncated, full version at https://tokrepo.com/en/packs/anthropic-builders) --- # API Design + Auto-Doc Pack — 9 Picks for Spec-First REST & GraphQL Builders URL: https://tokrepo.com/en/packs/api-design-autodoc Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: A working API engineer's rig for letting AI agents design, spec, validate, generate SDKs, render docs, and test — without the contract drifting from reality. Design agents first, then a typed source of truth, then breaking-change diff, then client gen, then reference docs, then a real API client. Opinionated install order, no fabricated stats. ## What's in this pack Audience: you design **REST or GraphQL APIs** for a living. The contract you ship today gets consumed by a dozen client teams, an SDK auto-generator, a doc site, and an LLM that's writing client c …(content truncated, full version at https://tokrepo.com/en/packs/api-design-autodoc) --- # API Testing Stack: Bruno, Hoppscotch, Hurl, k6, Artillery, Locust URL: https://tokrepo.com/en/packs/api-testing-stack Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six open-source tools that replace Postman + JMeter end-to-end: two interactive clients, one CI runner, three load generators. Install with one TokRepo command. ## What's in this pack This pack collects the **six open-source tools** that have replaced Postman and JMeter in modern engineering teams. Postman's pricing changes and forced cloud sync since 2023 pushed many teams off …(content truncated, full version at https://tokrepo.com/en/packs/api-testing-stack) --- # Backend Engineer's AI Toolkit — 9 Picks for Go/Rust/Python/Node Builders URL: https://tokrepo.com/en/packs/backend-engineer-ai-toolkit Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: A working backend engineer's rig for letting AI agents touch the database, the API contract, the service skeleton, and the prod incident — without making things worse. Data layer first, API layer next, scaffolding and language pros third, debugging and observability last. Opinionated install order, no fan-fiction stats. ## What's in this pack Audience: you write services for a living in **Go, Rust, Python, or Node**. You already have an LLM in your editor. The thing it's still bad at is anything that touches **production reality** — a …(content truncated, full version at https://tokrepo.com/en/packs/backend-engineer-ai-toolkit) --- # Book Author Self-Publishing — 10 Open-Source Picks from Outline to KDP URL: https://tokrepo.com/en/packs/book-author-self-publishing Type: pack Updated: 2026-05-23T22:00:00Z > **TL;DR**: Ten picks across the six layers a self-publishing author actually crosses: outline, AI co-draft, human edit, cover art, format/typeset, and publish (Amazon KDP + Substack-style serial). Install in this order, accept the tradeoffs in section three, and avoid the five pitfalls in section five — that's the entire job. ## What's in this pack You are one person writing one book. There is no agent, no publishing house, no production editor. You are also the cover designer, the EPUB technician, the audiobook narrator, the launch marketer …(content truncated, full version at https://tokrepo.com/en/packs/book-author-self-publishing) --- # Boris Cherny Files: 7 subagents the Claude Code creator uses URL: https://tokrepo.com/en/packs/boris-cherny-files Type: pack Updated: 2026-05-02T14:00:00Z > **TL;DR**: Seven Claude Code assets — two Anthropic-official, five community-built — that mirror the workflow Boris Cherny demos on howborisusesclaudecode.com. One-command install via TokRepo CLI. ## What's in this pack This pack collects the **seven Claude Code assets** that match the personal workflow Boris Cherny — the creator and tech lead of Claude Code at Anthropic — describes on his public setup page (howb …(content truncated, full version at https://tokrepo.com/en/packs/boris-cherny-files) --- # Browser Agent + Web Automation Pack — 10 Tools to Ship an Agent That Browses for You URL: https://tokrepo.com/en/packs/browser-agent-web-automation Type: pack Updated: 2026-05-22T09:00:00Z > **TL;DR**: Ten picks chained into one agent workflow: pick a browser framework (browser-use skill), wire an MCP entry (Playwright MCP), choose a headless runtime (Browserbase cloud or Obscura local stealth), defeat the bot wall (Pydoll without WebDriver, Scrapling adaptive), extract clean content (Firecrawl, Jina Reader), give the agent memory (Mem0), and orchestrate at scale (Apify MCP, 8,000+ ready-made scrapers). Different from the framework round-up pack — this is the end-to-end agent workflow. ## What's in this pack This is the stack you assemble when the goal is not "play with Browser-Use for an afternoon" but **ship an agent that browses the web on a user's behalf, in production, against sites that fight ba …(content truncated, full version at https://tokrepo.com/en/packs/browser-agent-web-automation) --- # Browser Automation: Browser-Use, Skyvern, Stagehand picks URL: https://tokrepo.com/en/packs/browser-automation Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven battle-tested browser automation assets — Browser-Use, Skyvern, Stagehand, plus the Chrome MCP popup fix and three scraping templates — that ship to production. Install in one TokRepo command. ## What's in this pack This pack collects the **seven browser automation assets** that come up over and over again when serious agent setups are reverse-engineered from public configs and Twitter screenshots. Three are …(content truncated, full version at https://tokrepo.com/en/packs/browser-automation) --- # Charts & Data Viz: D3, ECharts, Gradio, Redash and 2 more URL: https://tokrepo.com/en/packs/charts-data-viz Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six tools that cover the whole data-viz spectrum — from a one-off SVG chart to a hosted SQL dashboard to whiteboard sketches. Install in one command via TokRepo. ## What's in this pack This pack pairs the **six visualization tools** that handle every shape of data display you'll encounter on a real product team. Two are JS chart libraries; one is a Python ML demo builder; one is …(content truncated, full version at https://tokrepo.com/en/packs/charts-data-viz) --- # China AI API Alternatives — 10 OpenAI / Claude Replacements You Can Pay in RMB URL: https://tokrepo.com/en/packs/china-ai-api-alternatives Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten APIs and one routing layer for teams in mainland China who need GPT-4o / Claude / o1 quality without an outbound credit card or a VPN. DeepSeek-V3 as the cheap general-purpose workhorse, DeepSeek-R1 for o1-class reasoning, DeepSeek Coder for code, Qwen Code and ChatGLM as bilingual fallbacks, Kimi for long-context document work, MiniMax for voice and multi-modal. Then One API as the OpenAI-compatible domestic gateway, LiteLLM Proxy for multi-provider failover, and Cherry Studio as the desktop client that proves your keys work before you ship. Every entry billable in RMB, fapiao supported by the major vendors, drop-in for any OpenAI SDK call. ## What this pack actually solves A team in mainland China shipping an AI feature hits the same three walls. (1) The OpenAI / Anthropic billing flow needs a foreign card and a foreign-IP signup — practical for a side pr …(content truncated, full version at https://tokrepo.com/en/packs/china-ai-api-alternatives) --- # Chinese Programmer's China Stack — 10 AI Coding Tools That Work Behind the GFW URL: https://tokrepo.com/en/packs/china-programmer-ai-stack Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten picks for engineers in mainland China who can't reliably reach ChatGPT, Claude, or Cursor: pick a domestic model (DeepSeek / Qwen / Kimi) that takes RMB and needs no VPN, wrap it in Cherry Studio for chat and One API for gateway, drop in Tabby or Ollama if your network is fully air-gapped, and use Continue or a DeepSeek-native CLI for the IDE. Install order matters. ## What's in this pack This is the rig for a working engineer in **mainland China** who hits the same three walls every week: **Cursor and Codex sign-up requires a foreign phone**, **OpenAI / Anthropic APIs are intermit …(content truncated, full version at https://tokrepo.com/en/packs/china-programmer-ai-stack) --- # CI/CD Build Pipeline Pack — 10 Open-Source Picks from First Workflow to Deploy Gate URL: https://tokrepo.com/en/packs/ci-cd-build-pipeline Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten open-source picks in install order: first lint your workflow locally, then run it locally, then add a linter step, then cache layers with BuildKit, then make it portable with Dagger, then add a self-hosted alt with Concourse, then scan + manage secrets (Gitleaks + sops + Infisical), then gate the deploy with Kamal. Every step is a configuration an AI agent can generate or debug. ## What's in this pack Most CI/CD how-tos hand you a 200-line `.github/workflows/ci.yml` and call it done. That works for a hobby project — it does not work for a real pipeline that has to survive matrix builds, slow ca …(content truncated, full version at https://tokrepo.com/en/packs/ci-cd-build-pipeline) --- # Claude Code 30-Minute Onboarding — 10 Skills to Install First URL: https://tokrepo.com/en/packs/claude-code-onboarding-30min Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten assets in a deliberate order: project memory first, then a catalog so you stop searching blindly, then the GitHub plug, then automation guardrails, then two subagents, a reviewer, the most-used slash command, and finally the skill factory so you can build your own. Skip the 700-skill browse — install these and start working. ## What's in this pack You just ran `npm i -g @anthropic-ai/claude-code`, hit `/init`, and now you're staring at an empty session wondering what to install. Skill marketplaces show 700+ entries. Reddit threads disagree. …(content truncated, full version at https://tokrepo.com/en/packs/claude-code-onboarding-30min) --- # Claude Code Subagents: 130 collection + 8 production specialists URL: https://tokrepo.com/en/packs/claude-code-subagents Type: pack Updated: 2026-05-02T14:00:00Z > **TL;DR**: The 130-subagent collection that ships with most Claude Code setups, plus 8 specialists hand-picked from it for production work — K8s, SEO, Security, Smart Contract, GraphQL, API Architect, Search, Prompt Engineer. ## What's in this pack Claude Code subagents are markdown files in `.claude/agents/` that define a focused expert. The host invokes one when the task matches its description — letting you compose a long workflow out of …(content truncated, full version at https://tokrepo.com/en/packs/claude-code-subagents) --- # Cline + Roo Code — Agentic VS Code Setup (Without Switching IDEs) URL: https://tokrepo.com/en/packs/cline-roo-vscode-setup Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Two extensions, one comparison guide, four MCP servers, and the rule files that steer both. Start with Cline if you want stability and the larger community; switch (or run both) when you need Roo's per-mode prompts and tool whitelists. Wire MCPs the same way for either — they share the protocol. ## What's in this pack You already use VS Code. You don't want to switch to Cursor, Windsurf, or a terminal-only CLI. You just want the agentic coding loop — read the repo, edit files, run commands, browse docs — to hap …(content truncated, full version at https://tokrepo.com/en/packs/cline-roo-vscode-setup) --- # Specialized Code Generation Pack — 10 Tools for Niche Codegen URL: https://tokrepo.com/en/packs/code-generation-specialized Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order: scaffold first, then your API spec generators, then your schema-to-types layer, then the long-tail tools (regex from examples, parser generators). Each one trades a few hours of setup for years of not writing the same translation by hand. ## What's in this pack LLM-powered editors are great at one-off code completion, but they are not the right tool when you need the same translation a thousand times — every PR, every API change, every new migration. For …(content truncated, full version at https://tokrepo.com/en/packs/code-generation-specialized) --- # Codex CLI Quick Start — 10 Picks to Ship in the First Hour URL: https://tokrepo.com/en/packs/codex-cli-quick-start Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in deliberate order: install Codex, drop an AGENTS.md, bookmark the OpenAI Cookbook, wire MCP reference servers, decide your sandbox story, browse the plugin marketplace, run zcf for zero-config, layer in QA skills, install the Claude Code cross-review plugin, and read the Cursor/Claude Code/Codex comparison so you know when to reach for which. By the end you have a Codex CLI that knows your repo, runs in a real sandbox, talks to MCP servers, and pairs with Claude Code when you want a second opinion. ## What's in this pack You just ran `npm install -g @openai/codex`, typed `codex`, and now you're staring at a Rust-fast prompt wondering what to do next. Codex CLI feels obviously powerful out of the box — but the firs …(content truncated, full version at https://tokrepo.com/en/packs/codex-cli-quick-start) --- # Container Security Pack: Harbor, Grype, Checkov, Cilium URL: https://tokrepo.com/en/packs/container-security Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six open-source tools that cover the four layers of container supply-chain risk: registry, image scan, IaC config, and runtime. One-command install via TokRepo CLI. ## What's in this pack This pack assembles the **six open-source tools** most teams converge on after dropping commercial container-security platforms. Together they cover registry storage, image scanning, infra-as-code …(content truncated, full version at https://tokrepo.com/en/packs/container-security) --- # Content Creator's AI Studio — 10 Tools for YouTube, Podcast, Newsletter URL: https://tokrepo.com/en/packs/content-creator-ai-studio Type: pack Updated: 2026-05-22T07:30:00Z > **TL;DR**: Ten picks in a deliberate pipeline: ideation and script first, then voiceover (cloud + open-source backup), captions, B-roll generation, thumbnails, and a publishing platform that doubles as your newsletter. Built for the YouTuber/podcaster/newsletter writer who can't hire an editor. ## What's in this pack This is the stack a solo creator builds when they realise the part-time editor isn't coming back. Ten picks chosen to cover **every step of the content pipeline** — from "what should I make this w …(content truncated, full version at https://tokrepo.com/en/packs/content-creator-ai-studio) --- # Content Moderation Stack — 10 Open Tools for UGC Platforms, Forums, and Short Video URL: https://tokrepo.com/en/packs/content-moderation-stack Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten picks in deliberate layers — text, image, video, audio, human-in-loop appeal — for the team running a real community or short-video product. Open infrastructure over vendor lock-in. Multilingual by default. The classifier proposes a label and a confidence; a human still decides everything in the gray zone; every decision and every appeal is logged so the next quarter's model is trained on your own mistakes, not a generic dataset. ## What's in this pack This is the rig the trust & safety lead at a UGC platform — community, forum, short-video app, marketplace, comments system, anywhere users post — would actually assemble in 2026. It is **explicit …(content truncated, full version at https://tokrepo.com/en/packs/content-moderation-stack) --- # Crypto + DeFi Trading AI — 10-Tool Stack for On-Chain Analysis + Automation URL: https://tokrepo.com/en/packs/crypto-defi-trading-ai Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten picks in deliberate order across five layers: data (exchange API + on-chain), trading (automation framework + algo strategy), risk (smart-contract audit + Web3 integration review), portfolio (local-first cold-wallet view), and tax (plain-text ledger). The pack is built around one rule: AI proposes, you sign the transaction, and every fill lands in an auditable file. Editorial — not financial advice, not a license to ape into degen plays. ## What's in this pack This is the stack for the **crypto and DeFi trader** who runs their own mix of CEX accounts, on-chain wallets, and the occasional LP position — and is tired of stitching together a TradingView cha …(content truncated, full version at https://tokrepo.com/en/packs/crypto-defi-trading-ai) --- # Cursor 30-Minute Power-User Setup — 10 Configs to Install First URL: https://tokrepo.com/en/packs/cursor-power-user-30min Type: pack Updated: 2026-05-22T01:00:00Z > **TL;DR**: Ten picks in install order: rules library first (Cursor stops guessing your stack), then the directory + two generators (close the gaps), then advanced prompting and Composer mastery, then GitHub and Linear MCPs (Cursor talks to your real work), and finally an autonomous-engineer rules pack so Cursor stops asking you what to do every two minutes. ## What's in this pack You installed Cursor, used tab-complete for a week, opened a chat panel twice, and now you're using it as a slightly smarter VS Code. The 10x productivity videos look like a different product. The …(content truncated, full version at https://tokrepo.com/en/packs/cursor-power-user-30min) --- # Cursor Rules Library: Python, React, Devin mode .mdc packs URL: https://tokrepo.com/en/packs/cursor-rules-library Type: pack Updated: 2026-05-02T15:40:00Z > **TL;DR**: Nine ready-to-paste `.mdc` rule packs for Cursor — Python, React, the Devin-style engineer operating manual, plus an MDC generator that synthesizes new rules from your project docs. Install in one command. ## What's in this pack Cursor's Project Rules (`.mdc` files in `.cursor/rules/`) are the highest-leverage way to lock in style, architecture, and process expectations for a codebase. The default Cursor setup ships with …(content truncated, full version at https://tokrepo.com/en/packs/cursor-rules-library) --- # Data Engineer's Agent Toolbox — 10 Assets for SQL, dbt, Warehouses & Orchestration URL: https://tokrepo.com/en/packs/data-engineer-agent-toolbox Type: pack Updated: 2026-05-22T13:00:00Z > **TL;DR**: Ten picks in the order a real data team adopts them: warehouse + Postgres MCPs first (so the agent reads real schemas), then dbt-mcp on top of dbt or SQLMesh (so it understands your models), then Airflow + DataHub for orchestration and lineage, with SQLGlot to translate dialects when the agent guesses Snowflake syntax against BigQuery. ## What's in this pack This is the stack a working data engineer wires up so an AI agent can actually help — not the parade of "text-to-SQL demos" that fall over the moment they meet a real warehouse with 800 tables, th …(content truncated, full version at https://tokrepo.com/en/packs/data-engineer-agent-toolbox) --- # Database Schema Design + Migration Pack — 10 Tools for the Engineer Who Owns the DB URL: https://tokrepo.com/en/packs/db-schema-migration Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: A working DB engineer's rig for designing schemas an agent can actually read, generating migrations that don't lock a 50M-row table, and seeding the result with data that resembles production. Visualize → declare → migrate → ORM → seed. Stack-agnostic: one pick per language family, one declarative layer that spans them all. ## What's in this pack Audience: you're the one who gets paged when a migration locks the `orders` table for nine minutes. You design schemas, write `ALTER TABLE` migrations, reverse-engineer a Postgres that someone els …(content truncated, full version at https://tokrepo.com/en/packs/db-schema-migration) --- # Deploy + Monitor + Observability Stack — 10 Picks for Shipping to Prod URL: https://tokrepo.com/en/packs/deploy-monitor-observability Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks that take you from `git push` to a pager that actually fires when prod breaks. Three deploy targets (PaaS, container, self-hosted), Sentry for errors, OpenTelemetry for traces, Prometheus + Loki for metrics and logs, Grafana for the wall display, Uptime Kuma for the heartbeat, and Alertmanager for the page. Open-source-first; mention hosted equivalents where they earn their price. ## What's in this pack This is the stack a working backend engineer would assemble the *week before* their app gets real users — not the heroic post-outage scramble. Every pick here is **open-source-first**, **runs on a …(content truncated, full version at https://tokrepo.com/en/packs/deploy-monitor-observability) --- # Designer's AI Workflow — 10 Picks for Mockup, Asset, and Brand QA URL: https://tokrepo.com/en/packs/designer-ai-workflow Type: pack Updated: 2026-05-22T13:30:00Z > **TL;DR**: Ten picks in a deliberate order — designer agent first, then AI mockup gen, then your editor, then image assets, then handoff to engineering, then brand consistency check. The visual designer's pipeline, not the engineer's. ## What's in this pack This is the rig a working visual, product, or brand designer would assemble when *AI has to live inside the design day* — not the engineer-facing toolkit where the agent ships React code. Every pi …(content truncated, full version at https://tokrepo.com/en/packs/designer-ai-workflow) --- # Document AI Pipeline: 7 Parsers for PDF, Scan, Office to LLM URL: https://tokrepo.com/en/packs/document-ai-pipeline Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven open-source parsers covering OCR, layout extraction, table reconstruction, and Office-to-Markdown conversion. Together they turn any document a human ever made into clean LLM input. ## What's in this pack | # | Parser | Best at | Output | |---|---|---|---| | 1 | Surya | multilingual OCR + layout, 90+ languages | text + bounding boxes | | 2 | Zerox | vision-LLM driven page-by-page parse | markdown | …(content truncated, full version at https://tokrepo.com/en/packs/document-ai-pipeline) --- # E-commerce AI Stack — 10 Tools for Shopify, Amazon, Etsy & DTC Sellers URL: https://tokrepo.com/en/packs/ecommerce-ai-stack Type: pack Updated: 2026-05-23T08:00:00Z > **TL;DR**: Ten picks in the order a Shopify / Amazon / Etsy / DTC ops team actually installs them: product and competitor research first, then listing copy, then hero images and background cleanup, then multi-language translation for cross-border, then paid-ad creatives, then live-chat customer support, with a review-and-competitor mining loop closing the cycle. Built for the seller running storefront + ads + support out of a 2-3 person team. ## What's in this pack This is the AI stack a working cross-border seller assembles after the first six months — the period where you've stopped pretending one ChatGPT subscription does it all and started asking which s …(content truncated, full version at https://tokrepo.com/en/packs/ecommerce-ai-stack) --- # Email Inbox Triage AI — 9 Agent-Era Picks to Run Your Inbox Like an EA URL: https://tokrepo.com/en/packs/email-inbox-triage-ai Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Nine picks in five layers: classify what landed, draft the reply, schedule the follow-up, sync the calendar invite, and watch the deliverability/spam side. The MCP that actually owns Gmail and Calendar is non-negotiable — everything else plugs into it. ## What's in this pack This is the stack for someone whose **inbox decides the day**: an exec with 200 unread by 9am, a founder doing sales + hiring + investor updates from one address, a single AE running a real pipeli …(content truncated, full version at https://tokrepo.com/en/packs/email-inbox-triage-ai) --- # Filesystem Agent + Local Ops — 9 Picks for Agents That Actually Touch Your Files URL: https://tokrepo.com/en/packs/filesystem-agent-local-ops Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Nine picks in install order for the developer who wants agents to do real filesystem work — organize, dedupe, batch rename, search by content, archive — without becoming a foot-gun. Start with Desktop Commander MCP (the safe local-files API every modern agent can plug into), layer the human-side tools you'll use to verify (ripgrep for content search, fzf for fuzzy find, Yazi for the visual file manager), write an AGENTS.md so every agent knows your file conventions, lock automation under Claude Code Hooks, then add gptme as the script-friendly autonomous agent and Jina Reader for the rare case you need to feed a remote URL into local indexing. Everything runs inside tmux so you can watch the agent work without alt-tabbing. ## What's in this pack Most "AI on your filesystem" demos look great until you realize the agent is one bad rename away from clobbering a folder you actually cared about. This pack is the **safe, opinionated stack** for …(content truncated, full version at https://tokrepo.com/en/packs/filesystem-agent-local-ops) --- # Finance + Accountant AI Pack — 10 Tools to Close the Books With AI URL: https://tokrepo.com/en/packs/finance-accountant-ai-pack Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks in deliberate order: get paper into structured data first (OCR + parsing), put it into a sheet or ledger you can audit, let an agent do the modeling and forecasting, then ship a dashboard the CFO actually opens. Built around an audit trail, not a chatbot. ## What's in this pack This is the stack for someone who actually has to **close the month** — a small-business accountant, a one-person FP&A team at a Series A startup, a CFO who still has to touch the books between bo …(content truncated, full version at https://tokrepo.com/en/packs/finance-accountant-ai-pack) --- # Framework + Language Migration Toolkit — 10 AI-Era Tools for Real Migrations URL: https://tokrepo.com/en/packs/framework-language-migration Type: pack Updated: 2026-05-22T09:30:00Z > **TL;DR**: Ten picks that turn a scary multi-month migration into a series of small, reversible PRs. Codemods do the boring 80%, the typecheck loop catches what they miss, agents handle the legacy archaeology. Baseline → codemod → typecheck → test → ship — repeat per slice. ## What this pack solves Real migrations — JavaScript to TypeScript, CommonJS to ESM, React class components to hooks, Express to Hono, Python 2 to Python 3, Vue 2 to Vue 3 — fail for the same reason: someone tries to d …(content truncated, full version at https://tokrepo.com/en/packs/framework-language-migration) --- # Frontend Engineer's AI Toolkit — 10 Picks to Actually Ship UI URL: https://tokrepo.com/en/packs/frontend-engineer-ai-toolkit Type: pack Updated: 2026-05-22T13:00:00Z > **TL;DR**: Ten picks in a deliberate order — design hand-off, component scaffold, styling, browser test, accessibility. Skip the framework debate, wire the pipeline, ship the screen. ## What's in this pack This is the stack a React, Vue, or Svelte engineer reaches for when *AI actually has to ship the UI* — not the 40-tab "AI tools for frontend" listicle. Every pick here covers one rung of the same …(content truncated, full version at https://tokrepo.com/en/packs/frontend-engineer-ai-toolkit) --- # Full-Stack Indie Hacker Stack — 10 Tools to Ship a SaaS in Weeks URL: https://tokrepo.com/en/packs/fullstack-indie-hacker Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks in deliberate order: scaffold → UI → DB → auth → payments → email → deploy. Two parallel paths through the middle (Supabase fast lane vs Drizzle+Auth.js custom lane). By Friday you have a signup form; by next Sunday you have your first $9 charge. ## What's in this pack (vs the side-hustle pack) This is the stack for **shipping the product itself**. If `ai-side-hustle-kit` is about delegating *marketing and research* to agents (so a day-job founder can find custo …(content truncated, full version at https://tokrepo.com/en/packs/fullstack-indie-hacker) --- # Gemini CLI Extensions Starter Pack — 10 Picks for a Multimodal Google-Native Setup URL: https://tokrepo.com/en/packs/gemini-cli-extensions-starter Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks for the developer who installed Gemini CLI and wants the Google-native angle that Claude Code and Cursor can't touch: the CLI itself, five official extensions that don't usually make the highlight reel (BigQuery, gcloud, Genkit, Firebase, Flutter), and four MCPs that turn Gemini into a Stitch designer, Workspace operator, NotebookLM analyst, and Cloud Assist co-pilot. Skip the polished but redundant ones; install these. ## What's in this pack Gemini CLI hit GA, the official extension list grew to ~10 entries, and most tutorials walk you through the same four (Stitch, Workspace, Code Review, Postgres). Fine for a demo. Useless if you ac …(content truncated, full version at https://tokrepo.com/en/packs/gemini-cli-extensions-starter) --- # Gemini CLI Extensions: 10 Google-Official Add-ons URL: https://tokrepo.com/en/packs/gemini-cli-extensions Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: The full set of ten Google-official Gemini CLI extensions — design-to-code (Stitch), Workspace, Code Review, Postgres, Vertex AI routing — installable in one TokRepo command without touching ~/.gemini/extensions.json by hand. ## What's in this pack This pack mirrors the **ten official extensions** Google publishes for Gemini CLI on the `google-gemini/gemini-cli` GitHub repo. Every entry is a first-party Google release — no community forks, n …(content truncated, full version at https://tokrepo.com/en/packs/gemini-cli-extensions) --- # GitHub Copilot Beyond Autocomplete — The 2026 Power-User Pack URL: https://tokrepo.com/en/packs/github-copilot-power Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Most teams pay for Copilot and use 10% of it. This pack covers the other 90%: the official customization collection, the awesome-copilot list, ai-prompts rule library, lnai unified config, RuleForge / Caliber to keep rules fresh, the official GitHub MCP server, an agent-mode security investigator, and a Copilot-driven LaunchDarkly cleanup agent. Install in order; finish with a Copilot setup that pulls its weight in PRs, not just inside the editor. ## What's in this pack GitHub Copilot in 2026 is not the 2021 product. The ghost-text completion you signed up for is now one tab in a larger surface: **Copilot Chat** (ask questions about the file or repo), **Copilot E …(content truncated, full version at https://tokrepo.com/en/packs/github-copilot-power) --- # Headless CMS for AI: Strapi, Medusa, Vendure, Directus, Hasura URL: https://tokrepo.com/en/packs/headless-cms-for-ai Type: pack Updated: 2026-05-02T15:40:00Z > **TL;DR**: Five open-source content and commerce backends that ship REST + GraphQL endpoints by default — the cleanest surface to plug an AI agent into a real business. ## What's in this pack This pack collects the **five headless backends** worth installing when you need an AI agent to read or mutate real business data — content, products, orders, users — without writing custom CRUD e …(content truncated, full version at https://tokrepo.com/en/packs/headless-cms-for-ai) --- # Health & Wellness Coach AI — 10 Open-Source Tools to Run Your Own Personal Trainer Stack URL: https://tokrepo.com/en/packs/health-wellness-coach-ai Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten open-source picks across five layers — logging, analysis, training, nutrition, and mental decompression — so you can use AI as a personal coach without handing every weigh-in, meal photo, and 3am journal entry to a SaaS vendor. **This is not medical advice; pair with a real clinician for anything that matters.** ## Read this first Nothing in this pack is medical, psychological, or nutritional advice. AI tools — even good ones, even running locally — are decision-support, not a doctor. Use them to **observe yourself more honestl …(content truncated, full version at https://tokrepo.com/en/packs/health-wellness-coach-ai) --- # i18n Translation Pipeline at Scale — 10 Tools for an Automated CI-Driven Localization Stack URL: https://tokrepo.com/en/packs/i18n-translation-pipeline-scale Type: pack Updated: 2026-05-22T15:00:00Z > **TL;DR**: Ten picks for the dev team that has to ship in 10+ languages without staffing a localization vendor. The pipeline runs in CI: pre-commit gates each PR, Weblate or Tolgee extracts keys, the OpenAI SDK or a self-hosted Transformers/LibreTranslate model produces translations, then Vale + LanguageTool + typos + markdownlint enforce glossary, grammar, spelling, and markdown shape before anything reinjects. Different from a translator's stack — this is for the team automating the human out of the bulk path. ## What's in this pack This is the stack for the **app team shipping in 10+ languages without a dedicated localization vendor** — a backend engineer, a frontend engineer, and a part-time PM who all share the on-call rot …(content truncated, full version at https://tokrepo.com/en/packs/i18n-translation-pipeline-scale) --- # Indie Game Dev AI Pack — 10 Tools Covering Art, Audio, NPCs, Level Design, Localization URL: https://tokrepo.com/en/packs/indie-game-dev-ai Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten picks for the solo or small-team indie shipping on Unity / Godot / Unreal. Art layer first (Aseprite + Blender MCP), then audio (AudioCraft + Chatterbox + Cartesia for NPC voices), then the engine bridge (Unity / Unreal / Godot), then mechanics (Game Designer agent), then localization (LibreTranslate). The order matters because audio is cheap to redo and art isn't; engine integration constrains the asset pipeline, not the other way around. ## What's in this pack Five layers. Two picks per layer except where one tool already owns the layer: - **Art (concept → 2D sprites → 3D models)** — Aseprite for pixel art and frame animation; Blender MCP to drive Blen …(content truncated, full version at https://tokrepo.com/en/packs/indie-game-dev-ai) --- # Job Hunt & Career Pivot — 10 AI Picks for the Whole Funnel URL: https://tokrepo.com/en/packs/job-hunt-career-pivot Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten picks across five layers — resume, LinkedIn / profile, algorithm prep, mock interview, and cold outreach. Brand first, then build the resume and LinkedIn, then drill algorithms, then rehearse interviews, then send cold email. Each tool earns its place; nothing here is a generic GPT wrapper. ## What's in this pack This is the rig you'd actually build if you were leaving a job in two weeks and wanted to land somewhere better — not a directory of every job-search SaaS. Ten picks, organized into five layers: …(content truncated, full version at https://tokrepo.com/en/packs/job-hunt-career-pivot) --- # Lark / Feishu Skills: 5-skill bundle for Claude Code agents URL: https://tokrepo.com/en/packs/lark-feishu-skills Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five Anthropic-format skills that turn Lark / Feishu (Messenger, Wiki, Bitable, Approvals) into a first-class surface for Claude Code agents — install with one TokRepo command. ## What's in this pack This pack groups the five Lark / Feishu skills that together cover the full surface a Claude Code agent needs to read and write inside the Lark Suite — chat, wiki, base, approvals, and the daily s …(content truncated, full version at https://tokrepo.com/en/packs/lark-feishu-skills) --- # Lawyer's AI Contract Review Kit — 10 Privacy-Aware Tools for Redlining and Clause Libraries URL: https://tokrepo.com/en/packs/lawyer-ai-contract-kit Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks in deliberate order: intake and archive your contracts, OCR scans into clean text, run the redline on a local LLM so confidential drafts never leave the laptop, retrieve precedent clauses from your own library, only call cloud models through a privacy proxy, and finish with an open-source e-sign you control. Engineering-flavoured, not legal advice. ## What's in this pack This is a stack for the lawyer who has reluctantly admitted that AI can shave hours off a contract review — and is then horrified by the privacy implications of pasting a draft MSA into a public c …(content truncated, full version at https://tokrepo.com/en/packs/lawyer-ai-contract-kit) --- # Legacy Code Onboarding Kit — Land Fast in a 10-Year-Old Codebase URL: https://tokrepo.com/en/packs/legacy-code-onboarding Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in deliberate order: index the repo, explore architecture, find recurring patterns, build a structural call graph, summarize each module, mark dead code, then write the CLAUDE.md/AGENTS.md your team should have had. By Friday you can describe the system to a stranger and open a credible first PR. ## Who this is for You just joined a team. The repo is **8 to 12 years old**, hundreds of thousands of lines, three half-dead microservices, conflicting naming conventions, and the one engineer who knew it all left two …(content truncated, full version at https://tokrepo.com/en/packs/legacy-code-onboarding) --- # Linux Desktop AI Power User — 9 Open-Source Picks for a Tiled, AI-Augmented Rig URL: https://tokrepo.com/en/packs/linux-desktop-ai-power Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Nine open-source picks in deliberate order: pick one compositor (Hyprland on Wayland or Sway as i3 successor), keep bspwm as the X11 fallback, run tmux for stability and Zellij for the discoverable UX, drop Neovim under LazyVim, host a local model with Ollama, then glue everything together with systemd user units. The counterpart to Mac Weekend Essentials, but for the Linux desktop. ## What's in this pack This is the rig a working Linux developer would build on a fresh Ubuntu, Arch, Fedora, or NixOS install in a weekend — not a 50-package shopping list. Every pick here is **open-source**, **activel …(content truncated, full version at https://tokrepo.com/en/packs/linux-desktop-ai-power) --- # LLM Eval & Guardrails: DeepEval, Promptfoo, Ragas, Opik URL: https://tokrepo.com/en/packs/llm-eval-guardrails Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five open-source tools that turn prompt iteration from vibes into measured engineering: offline eval, RAG-specific scoring, observability, and runtime output constraints. ## What's in this pack This pack assembles the **five open-source tools** every team converges on once their LLM features ship to real users and "the model got worse this week" stops being a tolerable answer. The tools …(content truncated, full version at https://tokrepo.com/en/packs/llm-eval-guardrails) --- # LLM Observability: Langfuse, AgentOps, LangSmith, Phoenix URL: https://tokrepo.com/en/packs/llm-observability Type: pack Updated: 2026-05-02T15:10:00Z > **TL;DR**: Seven LLM observability assets — open-source (Langfuse, Phoenix, AgentOps) plus hosted (LangSmith) — to trace prompts, score outputs, and alert on cost spikes before they hit your billing dashboard. ## What's in this pack You can't fix what you can't see. The day a prompt regression silently 3x's your token bill is the day you wish you'd installed an observability layer last quarter. This pack collects the **seven …(content truncated, full version at https://tokrepo.com/en/packs/llm-observability) --- # Local-First AI — 9 Open-Source Tools That Keep Your Data on Your Laptop URL: https://tokrepo.com/en/packs/local-first-ai Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Nine open-source tools to run chat, code, RAG over your own documents, transcription, and image generation entirely on your own machine. Model runner first, then chat UI, then specialized layers — every byte stays local. ## What's in this pack This is the rig you build when you've decided your journal, your client recordings, and your half-written code are not going into someone else's training set. Every tool here is **open-source**, * …(content truncated, full version at https://tokrepo.com/en/packs/local-first-ai) --- # Run LLMs Locally: 7 Open-Source Runners (Ollama, TGI, Jan) URL: https://tokrepo.com/en/packs/local-llm-runners Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven battle-tested open-source runtimes covering every flavor of local inference — laptop chat, GPU server, mobile, web UI, production endpoint. One TokRepo command installs the whole pack. ## What's in this pack | # | Runner | Sweet spot | Backend | |---|---|---|---| | 1 | Ollama | one-line CLI on Mac/Linux/Windows | llama.cpp | | 2 | GPT4All | desktop app, no GPU required | llama.cpp + GGUF | | 3 | MLC-L …(content truncated, full version at https://tokrepo.com/en/packs/local-llm-runners) --- # Log Analysis + Search Pack — 10 Open-Source Tools for 3 a.m. Debugging URL: https://tokrepo.com/en/packs/log-analysis-search Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order: structured loggers first (winston, Loguru), then ship-and-store (Fluent Bit → Loki / Elasticsearch / ClickHouse), then read tools (lnav for local, Sentry for grouping), then MCP servers so an AI agent can answer 'what broke at 02:47?' without you grepping anything. ## What this pack solves It's 3 a.m. The pager says 5xx rate jumped. You SSH in, `tail -f` a file that's already rotated, grep for an exception that's actually three exceptions sharing a substring, and 40 minutes later …(content truncated, full version at https://tokrepo.com/en/packs/log-analysis-search) --- # Mac Weekend Essentials — 9 Open-Source Tools for Engineers URL: https://tokrepo.com/en/packs/mac-weekend-essentials Type: pack Updated: 2026-05-21T22:30:00Z > **TL;DR**: Nine open-source picks in a deliberate order: launcher first, then window-snap, then auto-tile, then keyboard remap, then global automation. By Sunday morning your hands never leave home row. ## What's in this pack This is the rig a working engineer would build on a fresh macOS in one Saturday afternoon — not a 50-app shopping list. Every pick here is **open-source**, **actively maintained**, and earns its k …(content truncated, full version at https://tokrepo.com/en/packs/mac-weekend-essentials) --- # MCP Auth + Identity Stack — 9 Open-Source Picks for OAuth / SAML / SSO URL: https://tokrepo.com/en/packs/mcp-auth-identity-stack Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Nine open-source picks in deliberate order: store secrets first, get the OAuth flow right second, then plug in an identity provider, then bolt fine-grained scopes on top, and finally turn on audit. Skip any layer and a real auditor will find it before your users do. ## What's in this pack This is the stack for the engineer who has decided their MCP server can't ship with `OPENAI_API_KEY` in `.env.example` anymore. Every pick is **open-source**, **production-grade**, and slots into …(content truncated, full version at https://tokrepo.com/en/packs/mcp-auth-identity-stack) --- # MCP Browser Automation Stack — 10 Servers to Wire a Real Browser into Claude / Cursor / Gemini URL: https://tokrepo.com/en/packs/mcp-browser-automation-stack Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten MCP servers in deliberate install order. Playwright MCP for deterministic snapshot-driven actions, Chrome DevTools MCP for live network and console debugging, Chrome MCP / Puppeteer MCP / Browserbase MCP for different runtime tradeoffs, multi-browser proxies for iframe and Arc / Beta variants, Chrome Fleet for cookie sharing across agents, a popup-focus fix, and BrowserToolsMCP for log auditing. End state: your agent drives a browser the way a senior QA does. ## What this pack actually solves The MCP browser servers all promise the same thing — let your AI assistant click, type, and read a webpage. In practice they make different tradeoffs around determinism, cookie scope, i …(content truncated, full version at https://tokrepo.com/en/packs/mcp-browser-automation-stack) --- # MCP Database Connectors: 10 servers for Postgres, MySQL, Mongo, Redis, SQLite URL: https://tokrepo.com/en/packs/mcp-database-connectors Type: pack Updated: 2026-05-22T13:00:00Z > **TL;DR**: Ten MCP servers — one per database, plus two universal routers and one offline dry-run — that give an AI agent safe query access. Read-only by default, schema-aware, and audit-logged. Install once, point at any DSN, watch the agent stop guessing column names. ## What's in this pack This is the **broader database MCP pack**. Where [Postgres for AI Agents](/en/packs/postgres-for-agents) goes deep on one engine, this one cuts across all five databases an average backend touches …(content truncated, full version at https://tokrepo.com/en/packs/mcp-database-connectors) --- # MCP File-System Adapters: 10 picks for local, S3, R2, GCS, SFTP & multi-cloud agents URL: https://tokrepo.com/en/packs/mcp-filesystem-adapters Type: pack Updated: 2026-05-22T13:00:00Z > **TL;DR**: Ten adapters covering every filesystem an agent will plausibly touch — local disk, AWS S3, Cloudflare R2, Google Drive, SFTP servers, multi-cloud gateways — each picked because it ships scoped roots, capability flags, and an audit trail. Install in order: local fs first, cloud buckets next, transit protocols third, policy layer last. The pack is the cross-protocol companion to [Filesystem Agent + Local Ops](/en/packs/filesystem-agent-local-ops) — that one goes deep on local file work, this one goes wide across protocols. ## What this pack covers Most developers wire an agent to one filesystem — usually local disk through the official MCP server — and stop there. Then the next ticket arrives: "download last night's exports from S3", "syn …(content truncated, full version at https://tokrepo.com/en/packs/mcp-filesystem-adapters) --- # MCP Monitoring + Logs — 9 Agent-Facing MCPs for Prometheus, Grafana, Sentry & Datadog URL: https://tokrepo.com/en/packs/mcp-monitoring-logs Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Nine MCPs in deliberate install order: log query MCP first (SigNoz, Axiom), then metrics + dashboard MCPs (Grafana, Datadog), then error / alert MCPs (Sentry + sentry-errors triage subagent), then CLI companion (Pup), then LLM trace MCPs (langfuse-mcp, Monoscope). The goal: an agent reads Sentry, pulls the SigNoz trace, queries Loki via MCP, and writes a one-paragraph incident summary — without you opening Grafana. ## What this pack is — and isn't This pack is not a monitoring stack. **You already have one.** Prometheus is scraping, Grafana is rendering, Sentry is grouping exceptions, maybe Loki or SigNoz is eating logs. The pack …(content truncated, full version at https://tokrepo.com/en/packs/mcp-monitoring-logs) --- # MCP Productivity Suite — 10 Servers to Connect AI to Your Work Tools URL: https://tokrepo.com/en/packs/mcp-productivity-suite Type: pack Updated: 2026-05-22T09:00:00Z > **TL;DR**: Ten MCP servers for the knowledge worker. Start with one official SaaS connector, get the OAuth dance right, lock scopes down, then add a second tool. Multi-tool aggregators come last — they're a power move, not a starting point. ## What's in this pack This is the suite for the person whose week is half Notion docs, a quarter Linear tickets, and the rest scattered across Slack threads, GitHub PRs, Gmail, and a calendar that lies to them. The goa …(content truncated, full version at https://tokrepo.com/en/packs/mcp-productivity-suite) --- # MCP Search + RAG Tools — 10 Servers for Web Search, Citations, and Private-Doc Retrieval URL: https://tokrepo.com/en/packs/mcp-search-rag-tools Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten servers and APIs in deliberate install order. Tavily MCP for AI-shaped web search, Exa MCP and Firecrawl MCP as alternate backends with different scrape behavior, mcp-omnisearch to multiplex providers behind one tool call, Perplexity Sonar for search-grounded answers plus the Citations endpoint to render real source footnotes, Qdrant MCP and haiku.rag for vector-backed retrieval over your own docs, lnav for local log search the agent can sink into, and Ragas to score whether the whole pipeline is actually grounded. End state: your agent searches the live web, retrieves from your private corpus, and you can prove every claim. ## What this pack actually solves A developer wiring search and RAG into an AI agent runs into the same wall every time. Each web-search API has its own response shape. Each vector store has its own embedding contract. …(content truncated, full version at https://tokrepo.com/en/packs/mcp-search-rag-tools) --- # MCP Server Developer Starter — Build & Ship Your First MCP Server URL: https://tokrepo.com/en/packs/mcp-server-dev-starter Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in install order for the developer building, not just installing, MCP servers. Pick a language SDK (TS / Python / Go), scaffold with a framework, debug live in MCP Inspector, then submit to Smithery and awesome-mcp-servers so agents can find you. Producer-side companion to the consumer-side MCP Server Stack pack. ## Who this pack is for You've used MCP servers in Claude Code, Cursor, or Codex CLI for a while. Now you want to **build** one — wrap your internal API, your private CRM, your custom tool — so any MCP-speaking agent ca …(content truncated, full version at https://tokrepo.com/en/packs/mcp-server-dev-starter) --- # MCP Server Stack: 8 Model Context Protocol servers agents need URL: https://tokrepo.com/en/packs/mcp-server-stack Type: pack Updated: 2026-05-02T14:00:00Z > **TL;DR**: Eight Model Context Protocol servers that show up in every serious AI agent setup — browser, database, filesystem, source control, design. One-command install via TokRepo CLI. ## What's in this pack The Model Context Protocol (MCP) is the open standard Anthropic shipped in late 2024 for connecting AI agents to external tools. A year later, the same eight MCP servers appear in nearly every ser …(content truncated, full version at https://tokrepo.com/en/packs/mcp-server-stack) --- # ML Engineer's RAG + Eval Stack — 10 Production Picks for Real LLM Apps URL: https://tokrepo.com/en/packs/ml-engineer-rag-eval Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten production-tested picks ordered by the actual pipeline an ML engineer builds: chunking and ingestion, embedding server, embedding model, vector store (pgvector or Qdrant), retrieval framework, reranker, eval harness, drift monitoring, tracing. The lesson the hard way: no eval, no progress. ## What's in this pack This is the stack you build when the demo RAG worked, the stakeholders got excited, and now you have to put it in front of real users without it hallucinating into a lawsuit. Every pick here is ** …(content truncated, full version at https://tokrepo.com/en/packs/ml-engineer-rag-eval) --- # Mobile App Dev AI Stack — iOS + Android Tools for Swift, Kotlin, RN & Flutter URL: https://tokrepo.com/en/packs/mobile-app-dev-ai-stack Type: pack Updated: 2026-05-23T14:00:00Z > **TL;DR**: Ten picks in a deliberate order — pick framework, wire AI UI generation, get an agent that drives the simulator, test on real devices, then ship the build with Fastlane. Skip the React-Native-vs-Flutter holy war, wire the pipeline, file the app. ## What's in this pack This is the stack a mobile engineer reaches for when *AI actually has to ship to App Store and Play* — not the listicle of every IDE on Earth. Every pick covers one rung of the same ladder: pick t …(content truncated, full version at https://tokrepo.com/en/packs/mobile-app-dev-ai-stack) --- # Modern CLI Toolbelt: 10 Rust + AI replacements for Unix tools URL: https://tokrepo.com/en/packs/modern-cli-toolbelt Type: pack Updated: 2026-05-02T14:00:00Z > **TL;DR**: Ten Rust-and-AI rewrites of the Unix tools you use every day — fzf, ripgrep, lazygit, eza, Yazi, btop, delta, hyperfine, glow, ShellGPT. Install all ten in one command. ## What's in this pack The Unix toolchain (grep, find, ls, top, diff, cat, time) was designed when terabyte disks were exotic. The modern replacements — most written in Rust — are typically 5–20× faster, smarter about r …(content truncated, full version at https://tokrepo.com/en/packs/modern-cli-toolbelt) --- # Multi-Agent Frameworks: CAMEL, LangGraph, DeepAgents picks URL: https://tokrepo.com/en/packs/multi-agent-frameworks Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven multi-agent orchestration frameworks — CAMEL, LangGraph, DeepAgents, GPT Researcher, plus three role-play and research starters — that survive production. One-command install via TokRepo. ## What's in this pack This pack collects the **seven multi-agent frameworks** that teams actually ship to production in 2026, not the demos that look good on Twitter and explode under load. Four are headline frameworks …(content truncated, full version at https://tokrepo.com/en/packs/multi-agent-frameworks) --- # Multimodal Vision Pipeline — 10 Production Picks for Devs Shipping Vision Apps URL: https://tokrepo.com/en/packs/multimodal-vision-pipeline Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten production-tested picks ordered by the actual pipeline a vision dev builds: augmentation (Albumentations), pretrained backbones (timm), real-time detection (YOLO), open-set detection with text prompts (Grounding DINO), promptable segmentation across images and video (SAM 2), prose OCR (PaddleOCR), document OCR (Surya), screenshot understanding for agents (OmniParser), postprocessing and tracking (Supervision), and dataset + model evaluation (FiftyOne). The lesson the hard way: ship the eval loop before you ship the model. ## What's in this pack This is the stack you wire together when a generic vision-language API isn't enough — when you need to classify your own images, detect domain-specific objects, OCR your own document layouts, pars …(content truncated, full version at https://tokrepo.com/en/packs/multimodal-vision-pipeline) --- # Newsletter Writer's AI Full Stack — 10 Picks for Substack, Beehiiv, ConvertKit, Ghost URL: https://tokrepo.com/en/packs/newsletter-writer-ai-pack Type: pack Updated: 2026-05-23T13:30:00Z > **TL;DR**: Ten picks wired in order: idea pipeline first (RSS + prompt patterns), then a research agent that goes deep, then draft in a markdown editor, lint the prose, generate one cover image, and send through a platform that gives you the subscriber list as a file you can export. Built for the Substack / Beehiiv / ConvertKit / Ghost writer who sends every week and refuses to hand the audience to a platform that can change the deal. ## What's in this pack (six layers: idea / research / draft / edit / image / send) This is the stack a serious solo newsletter writer assembles once the weekly send stops being a hobby and starts being a job. Ten picks …(content truncated, full version at https://tokrepo.com/en/packs/newsletter-writer-ai-pack) --- # OCR + Document Parsing Pack — 10 Tools to Turn PDFs and Scans into Clean JSON URL: https://tokrepo.com/en/packs/ocr-document-parsing Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in install order: detect page layout first, then OCR the text, then extract tables, then assemble structure, then output JSON your LLM or pipeline can actually consume. Modern doc-AI on top, classic OCR as fallback for what the new stuff still misses. ## What's in this pack This is the pipeline a working engineer would assemble in one afternoon to convert messy documents — scanned invoices, academic PDFs, screenshots, mixed-language contracts — into clean structured …(content truncated, full version at https://tokrepo.com/en/packs/ocr-document-parsing) --- # Open Source Maintainer AI Pack — 10 Tools to Run a GitHub Repo End-to-End URL: https://tokrepo.com/en/packs/open-source-maintainer-ai Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten picks in install order across five layers — issue/PR access (GitHub MCP, actionlint), PR review (PR-Agent + reviewdog + Claude Code Security Review), dependencies + secrets (Renovate, Gitleaks), release + changelog (Release Please), and docs + community translation (Docusaurus, Weblate). AI takes the first pass on every layer; you keep the merge button, the release decision, and the tone of voice. ## What's in this pack You maintain an open-source repo. Maybe alone, maybe with one or two others. Issues pile up faster than you can triage. Every dependency update is a possible 2am page. Releases drift because chang …(content truncated, full version at https://tokrepo.com/en/packs/open-source-maintainer-ai) --- # PDF + Research Paper RAG Pack — 10 Tools for Chatting With a Stack of Papers URL: https://tokrepo.com/en/packs/pdf-research-paper-rag Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Ten picks arranged as a real RAG pipeline for PDF-heavy work. Parse first (Zerox / OpenDataLoader / Surya), then index (Cherry Studio KB / Pinecone Assistant / PageIndex), then chat (RAGFlow / Kotaemon), then rerank (Cohere Rerank), with PDFMathTranslate for non-English papers. Drop 200 PDFs in tonight and have a conversation with them by morning. ## What's in this pack If you are a researcher, analyst, or lawyer, the bottleneck is not search — it is the **PDF**. Papers, contracts, filings, white papers, regulator memos. Most arrive as 1990s-era PDFs with two-col …(content truncated, full version at https://tokrepo.com/en/packs/pdf-research-paper-rag) --- # Performance Profiling + Optimization Pack — 10 Tools to Fix Slow Code, Queries, and UI URL: https://tokrepo.com/en/packs/performance-profiling-optimization Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks that turn 'this feels slow' into a measured before/after. Start with a baseline (Lighthouse, k6, Size Limit), capture a flamegraph (async-profiler, FlameGraph, BCC, Pyroscope), let an AI agent read the profile (Performance Profiler, GraphQL Optimizer, Postgres MCP Pro), fix one hot path, then re-run the baseline. No tool here is speculative; every one earns a step in the loop. ## What's in this pack This is the rig for the engineer who just got pinged: *"the /search endpoint is taking 8 seconds, can you look?"* — or *"the dashboard freezes for 2 seconds when I open it."* Ten picks, each with …(content truncated, full version at https://tokrepo.com/en/packs/performance-profiling-optimization) --- # Personal Finance Stack: Firefly III + Actual + Invoice Ninja URL: https://tokrepo.com/en/packs/personal-finance-stack Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six self-hostable money tools — Firefly III for accounting, Actual Budget for envelopes, Maybe for net-worth tracking, Lago for usage billing, Invoice Ninja for invoicing, plus an AI receipt parser — installable as one TokRepo bundle so you stop renting your financial data to SaaS. ## What's in this pack This pack collects the **six self-hostable finance applications** that, together, replace YNAB, Mint, QuickBooks Self-Employed, Stripe Billing, and your shoebox of receipts. Every entry is open so …(content truncated, full version at https://tokrepo.com/en/packs/personal-finance-stack) --- # Personal Investing AI — 10-Tool Stack for the Self-Directed Investor URL: https://tokrepo.com/en/packs/personal-investing-ai Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten picks in deliberate order: build a market-data pipeline first (OpenBB + a stock MCP), then aim AI agents at filings and earnings, then track positions in a local-first portfolio app, then backtest before you trade, then keep a plain-text trade ledger for tax season. Editorial guidance, not financial advice — every signal in here gets human review before it touches an order ticket. ## What's in this pack This is the stack for the **self-directed investor** — the person who runs their own brokerage account in stocks, ETFs, crypto, and the occasional options trade, and is tired of pasting earnings r …(content truncated, full version at https://tokrepo.com/en/packs/personal-investing-ai) --- # Personal Knowledge Base — 10 Open-Source Tools to RAG Your Own Notes, Journal & PDFs URL: https://tokrepo.com/en/packs/personal-knowledge-base-rag Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten open-source picks to do RAG over your own life: a notes app that stores plain Markdown, an MCP or agent bridge that lets an AI read the vault, a local indexer for PDFs and paper docs, plus a citation manager for research. The 'second brain' you actually own. ## What's in this pack This is the stack you build when you want an AI to read **your** notes — daily journal, meeting notes, half-finished essays, the PDFs you've been hoarding since grad school — and answer questions …(content truncated, full version at https://tokrepo.com/en/packs/personal-knowledge-base-rag) --- # PhD Researcher's Literature + Code Pack — 10 Tools for Lit Review and Reproducing Paper Code URL: https://tokrepo.com/en/packs/phd-researcher-lit-code Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten open-source tools in install order for the working PhD: lit search → reference manager → PDF-to-clean-markdown → reading + summarization → notebook environment for reproducing code → LaTeX for writing. AI assists, it doesn't replace reading the methodology. ## What's in this pack This is the rig for the PhD student or postdoc who is past the "chat with ChatGPT about my topic" phase and into the much harder work of (a) reading 200 papers properly, (b) tracking what cites wh …(content truncated, full version at https://tokrepo.com/en/packs/phd-researcher-lit-code) --- # Planning Agent Stack — 10 Picks for Plan-then-Execute Agents (ReAct, ReWOO, Plan-and-Solve) URL: https://tokrepo.com/en/packs/planning-agent-stack Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks ordered by the actual build order of a planning agent: read the patterns (ReAct / ReWOO / Plan-and-Solve), pick a planning framework (LangGraph plan-execute or AutoGen GroupChat), wire a task-decomposition agent, persist the plan to disk, run the plan-execute loop on a real codebase, review the diff, model the world, and prove the plan was better with an eval harness. The lesson the hard way: an agent without a plan eval is just hope with a chat box. ## What's in this pack This is the stack you build when the single-shot ReAct loop hits its first 30-step trajectory, drifts off goal at step 14, and you realize the agent never had a plan — it had momentum. Every pick …(content truncated, full version at https://tokrepo.com/en/packs/planning-agent-stack) --- # Product Manager's AI Research Kit — 10 Tools for Discovery, Interviews, PRDs, Roadmap URL: https://tokrepo.com/en/packs/pm-ai-research-kit Type: pack Updated: 2026-05-22T14:00:00Z > **TL;DR**: Ten picks in PM workflow order: discovery agents first (so you know what's worth building), then interview capture, then competitor scan, then PRD writers, then a roadmap tool, then analytics so you can tell what actually shipped value. AI does the grunt work — synthesis, transcription, formatting, comparison tables. You still decide what gets built. ## What's in this pack This is the stack for a PM who already has too many tabs open — not a thought-leader's "AI for product" reading list. Every pick here does one job in a real product week: open a discovery topic, c …(content truncated, full version at https://tokrepo.com/en/packs/pm-ai-research-kit) --- # Postgres for AI Agents: 5 MCP servers + serverless Postgres URL: https://tokrepo.com/en/packs/postgres-for-agents Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five battle-tested ways to give an agent SQL access to Postgres — two stdio MCP servers, one universal multi-DB router, and two managed cloud backends. Install in one command via TokRepo. ## What's in this pack This pack collects the **five SQL surfaces** an agent realistically needs to read, write, and reason about a Postgres database. Two are stdio MCP servers you point at your own DSN. One is a univer …(content truncated, full version at https://tokrepo.com/en/packs/postgres-for-agents) --- # PR Review Automation Pack — 9 Tools to Let AI Take the First Pass URL: https://tokrepo.com/en/packs/pr-review-automation Type: pack Updated: 2026-05-22T12:00:00Z > **TL;DR**: Nine picks in install order: start with a human checklist so you know what "good" looks like, connect Claude to GitHub, add multi-language lint in CI, pipe lint into PR-inline comments, lock in branch and commit policy, then layer the AI reviewer, security audit, and an adversarial bug hunter that ships fix patches. Close with a one-shot commit-push-PR slash command so the loop tightens to a single keystroke. ## What's in this pack You're an engineer or tech lead who's tired of skimming 400-line diffs at 5pm to catch typos a linter could have flagged. You want the **boring stuff** — formatting nits, missing tests, leaked sec …(content truncated, full version at https://tokrepo.com/en/packs/pr-review-automation) --- # Privacy-First Local AI — 10 Open-Source Tools for a 100% On-Device AI Stack URL: https://tokrepo.com/en/packs/privacy-first-local-ai Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten open-source picks organized by layer — runtime (Ollama, LM Studio, MLC-LLM), UI (Open WebUI, Jan, GPT4All, LibreChat, Text Generation WebUI), RAG (Khoj), and speech (Faster Whisper). Stand up a complete AI workflow where nothing — model weights, prompts, retrieved chunks, transcripts — ever crosses the network boundary you control. ## What's in this pack This pack is for the buyer who reads "we may use your data to improve our service" in a vendor contract and walks away. Law firms working privileged matters. Hospitals handling PHI. Government age …(content truncated, full version at https://tokrepo.com/en/packs/privacy-first-local-ai) --- # Privacy-First Web: SearXNG + FreshRSS + Invidious Stack URL: https://tokrepo.com/en/packs/privacy-first-web Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six self-hostable privacy frontends — SearXNG search, FreshRSS and Miniflux readers, Invidious, Nitter, and Piped — that let you read the open web without sending click data to Google, Twitter, or YouTube. One TokRepo command spins up the whole stack behind your reverse proxy. ## What's in this pack This pack collects the **six self-hostable privacy frontends** that, together, replace Google search, the Twitter web, the YouTube web, and the dying RSS-reader market — without ever sending click …(content truncated, full version at https://tokrepo.com/en/packs/privacy-first-web) --- # Production Incident Response Pack — 10 AI Tools for the Engineer Mid-Fire URL: https://tokrepo.com/en/packs/production-incident-response Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in deliberate order: paging skill first, triage agent second, then log+trace search via MCP, then alert routing + runbook automation, then customer comms via status page, then a postmortem agent. By the next outage your on-call rotation has scaffolding instead of adrenaline. ## What's in this pack It's 2:47 AM. PagerDuty just woke you. The error budget is gone in fourteen minutes. This pack is the rig you wish you'd installed last quarter — not a 50-tool observability shopping list, but the …(content truncated, full version at https://tokrepo.com/en/packs/production-incident-response) --- # Prompt Engineering Toolkit: 6 references and a subagent URL: https://tokrepo.com/en/packs/prompt-engineering-toolkit Type: pack Updated: 2026-05-02T15:10:00Z > **TL;DR**: A curated bundle of three reference repos, two framework collections, and one Claude Code subagent that turns prompt-writing from guesswork into a checklist-driven craft. ## What's in this pack This pack assembles **six high-signal prompt-engineering assets** and pairs them with a Claude Code subagent that actually applies them. The mix is deliberate: two encyclopedic references, two opi …(content truncated, full version at https://tokrepo.com/en/packs/prompt-engineering-toolkit) --- # Python Agent Frameworks: 5 alternatives to LangGraph URL: https://tokrepo.com/en/packs/python-agent-frameworks Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five Python-native frameworks for building multi-agent systems — covering role-based crews, autonomous loops, hand-off routing, and full agent platforms. Install in one command via TokRepo. ## What's in this pack This pack collects the **five Python-first agent frameworks** that ship enough production code to use today, ranked by GitHub stars and active commit cadence. Each one represents a different desig …(content truncated, full version at https://tokrepo.com/en/packs/python-agent-frameworks) --- # RAG Pipelines: Quivr, RAGFlow, GraphRAG production patterns URL: https://tokrepo.com/en/packs/rag-pipelines Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Eight retrieval-augmented generation assets — open-source engines (Quivr, RAGFlow, GraphRAG) plus the chunking, reranking, and evaluation patterns that separate a demo from a production RAG system. ## What's in this pack Most teams ship their first RAG demo in a weekend and then spend six months untangling why it gives subtly wrong answers. This pack collects the **eight assets** that get you past that wall: three …(content truncated, full version at https://tokrepo.com/en/packs/rag-pipelines) --- # Refactor a Heavy Codebase — 10 AI Tools for Safe, Large-Scale Refactors URL: https://tokrepo.com/en/packs/refactor-heavy-codebase Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in a deliberate pipeline: write tests around the blast radius, run an AST codemod for the mechanical changes, hand the leftover surgery to a refactoring agent, then gate the merge with a structural diff review. Don't let an LLM rewrite a 4k-line file from scratch. ## What this pack solves You inherited the file. It's 4,300 lines, named `OrderService.ts`, and nobody on the team will touch it. You need to split it, type it, or kill it — and the existing test suite covers 18%. Letti …(content truncated, full version at https://tokrepo.com/en/packs/refactor-heavy-codebase) --- # Self-Hosted AI: Tabby, Onyx, LibreChat, n8n Starter Kit URL: https://tokrepo.com/en/packs/self-hosted-ai Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Six battle-tested self-hosted AI assets — Tabby (Copilot replacement), Onyx (enterprise search), LibreChat (ChatGPT clone), and an n8n AI starter kit. Keep your data on your own metal. ## What's in this pack This pack collects the **six self-hosted AI assets** that consistently show up when teams move off SaaS for compliance, cost, or sovereignty reasons. Three are coding/chat replacements (Tabby, Lib …(content truncated, full version at https://tokrepo.com/en/packs/self-hosted-ai) --- # Self-Hosted Productivity Suite: Nextcloud + AFFiNE + Outline URL: https://tokrepo.com/en/packs/self-hosted-productivity Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven self-hosted productivity tools — Nextcloud, BookStack, AFFiNE, Outline, Stirling PDF, plus two utilities — that together replace Notion, Google Docs, and Acrobat without sending anything to a SaaS vendor. One TokRepo command spins up the whole suite via Docker Compose. ## What's in this pack This pack collects the **seven self-hostable productivity apps** that, run together, cover the same ground as Notion + Google Docs + Acrobat — but on hardware you control. Every entry is open sour …(content truncated, full version at https://tokrepo.com/en/packs/self-hosted-productivity) --- # Short-Form Video Creator AI — 10 Tools for TikTok / Reels / Shorts Pipelines URL: https://tokrepo.com/en/packs/short-form-video-creator-ai Type: pack Updated: 2026-05-23T12:00:00Z > **TL;DR**: Ten picks for the creator who ships vertical video on TikTok, Instagram Reels, YouTube Shorts and Douyin. One-click pipelines for the daily grind, a commercial-API bridge for hero shots, the Remotion programmatic path for editorial control, captions and voiceover so every platform's auto-play silent viewer still gets the hook, and FFmpeg + OpenCut for the final cut. ## What this pack is for Short-form video is no longer a single tool. It is a **five-layer pipeline**: pick a topic that is currently trending, write a hook-first script, generate or shoot the footage, burn in captions …(content truncated, full version at https://tokrepo.com/en/packs/short-form-video-creator-ai) --- # Skills Ecosystem: Anthropic standard + Vercel + 14 targets URL: https://tokrepo.com/en/packs/skills-ecosystem Type: pack Updated: 2026-05-02T15:30:00Z > **TL;DR**: Seven skill-ecosystem assets — Anthropic's official skill format, Vercel's cross-platform Skills implementation, and the conversion tools that turn one canonical skill into rules for Cursor, Codex CLI, Cline, and the rest. ## What's in this pack Skills are the format Anthropic standardized in late 2025 for distributing reusable agent capabilities — a folder containing a `SKILL.md` plus optional scripts, references, and templates. Vercel a …(content truncated, full version at https://tokrepo.com/en/packs/skills-ecosystem) --- # Spec-Driven AI Dev: 5 tools for spec-first agent workflows URL: https://tokrepo.com/en/packs/spec-driven-ai-dev Type: pack Updated: 2026-05-02T15:30:00Z > **TL;DR**: Five tools for the spec-driven workflow: write a falsifiable spec, let the AI agent execute against it, and use the spec as the audit trail. Replaces vibe-coding with reviewable artifacts. ## What's in this pack This pack collects the **five spec-driven tools** that make AI coding auditable. Each one tackles a different part of the spec → agent → review loop, and they compose well in a single project. | …(content truncated, full version at https://tokrepo.com/en/packs/spec-driven-ai-dev) --- # Startup VC Research Toolkit — 10 AI Tools for Sourcing, Diligence, Filings, and IC Memos URL: https://tokrepo.com/en/packs/startup-vc-research-toolkit Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten picks in investor workflow order: deep-research agents first (so you have a defensible sourcing thesis), then company-intel scrapers, then founder background, then filings readers, then a memo synthesizer. AI does the slog — broad search, OSINT pulls, 10-K skim, draft memo paragraphs. You still own the conviction call and the price. ## What's in this pack This is the stack for an early-stage investor who already has 40 emails, 12 decks in the inbox, and one IC slot left on Friday — not a thought-leader's "AI for VCs" essay. Every pick here does one …(content truncated, full version at https://tokrepo.com/en/packs/startup-vc-research-toolkit) --- # Static Site & Docs Builders: VitePress, Astro, Docusaurus +2 URL: https://tokrepo.com/en/packs/static-site-docs Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Five frameworks that cover everything from API docs to marketing landings to engineer slide decks — all markdown-first, all zero-runtime by default. Install in one command via TokRepo. ## What's in this pack This pack collects the **five static-site frameworks** that have outlasted the JS framework churn and ship enough features to be a default choice in 2026. The list is opinionated: nothing here is …(content truncated, full version at https://tokrepo.com/en/packs/static-site-docs) --- # Teacher / Educator's AI Lesson Kit — 10 Tools from Plan to Tutor URL: https://tokrepo.com/en/packs/teacher-educator-ai-lesson-kit Type: pack Updated: 2026-05-22T15:30:00Z > **TL;DR**: Ten picks in deliberate order for the teacher who already has a syllabus and 130 students: prompt patterns for planning, slide and study-pack builders for delivery, quizzes and an LMS for assessment, and a guided-discovery tutor with persistent memory so the agent doesn't ask each student the same intake question twice. ## What's in this pack This is the stack for a working teacher — not the 30-tab "AI for Education" Pinterest board. Every pick here earns a slot in a real week: Monday you plan, Tuesday-Thursday you teach, Friday you gr …(content truncated, full version at https://tokrepo.com/en/packs/teacher-educator-ai-lesson-kit) --- # Team Documentation RAG Pack — 10 Open-Source Tools to Replace Glean URL: https://tokrepo.com/en/packs/team-documentation-rag Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order: connectors first (Onyx, Airweave, MCPs for Notion / Atlassian / Slack), then a destination wiki (Docmost or PandaWiki), then the shared vector store (Qdrant), then access control (Casbin), and Haystack underneath if you outgrow Onyx and need to roll your own retrieval pipeline. ## What this pack solves Your team's institutional memory lives in five places: Confluence pages no one updated since the last reorg, Notion docs three PMs each maintain a fork of, Slack threads where the real answer is …(content truncated, full version at https://tokrepo.com/en/packs/team-documentation-rag) --- # Technical Writer's AI Pipeline — 9 Picks for API Docs, Tutorials & Code Samples URL: https://tokrepo.com/en/packs/tech-writer-ai-pipeline Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Nine picks in install order: turn your existing docs into agent skills, draft prose with a technical-writer agent, generate API reference from your OpenAPI spec, render it beautifully, enforce prose + Markdown style on every commit, ship a docs site, and finally make the whole thing discoverable to AI editors. Pipeline, not a shopping list. ## What's in this pack You're a technical writer or dev rel. Your job is API references, getting-started guides, tutorials, code samples in three languages, and a style guide that nobody else reads. AI can finally help …(content truncated, full version at https://tokrepo.com/en/packs/tech-writer-ai-pipeline) --- # Terminal-First Workflow with AI — 10 Picks for Devs Who Live in vim, tmux, and zsh URL: https://tokrepo.com/en/packs/terminal-first-workflow-ai Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order for the developer who refuses to open VS Code. Start with the workspace (tmux), put a real editor in it (Neovim + kickstart.nvim), upgrade the shell loop (Atuin for history, fish-ai or AI Shell for natural-language commands), then layer AI so every CLI agent reads the same brief (AGENTS.md), event-driven automation runs on its own (Claude Code Hooks), agents get safe local tools (Desktop Commander MCP), and you have a terminal-native autonomous agent to fall back to (gptme). The IDE never opens. ## What's in this pack There are two ways to use AI for coding in 2026. One is to open Cursor (or VS Code with a fistful of extensions) and let the IDE be the surface. The other is to stay in the terminal you've been in …(content truncated, full version at https://tokrepo.com/en/packs/terminal-first-workflow-ai) --- # Tool-Use Agent Bootcamp — 10 Picks From First Function Call to Production URL: https://tokrepo.com/en/packs/tool-use-agent-bootcamp Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in a deliberate order: first see a raw JSON-mode call work, then bolt on a structured-output library, then a pre-built tool catalog, then a real agent framework, then evals. Each step earns the next. ## What's in this pack This is the bootcamp a working dev would walk if they'd never wired a function call before and wanted to land on a **production agent that picks the right tool, returns valid JSON, and is covered …(content truncated, full version at https://tokrepo.com/en/packs/tool-use-agent-bootcamp) --- # Translator's Multi-Lingual Stack — 10 Tools for a Real Localization Pipeline URL: https://tokrepo.com/en/packs/translator-multilingual-stack Type: pack Updated: 2026-05-22T14:00:00Z > **TL;DR**: Ten picks in the order a localization pipeline actually runs: a TMS to extract and reinject strings, a glossary owner, two translation engines (LLM-class and NMT) so you can fall back, two QA passes (terminology + grammar), plus format-aware helpers for PDFs and video. Self-hostable end to end. ## What's in this pack This is the stack for the working **localization engineer, translator, or i18n PM** — the person who has to ship a po/xliff/json file that doesn't break the build, doesn't lose the placeholder `{u …(content truncated, full version at https://tokrepo.com/en/packs/translator-multilingual-stack) --- # Travel Planning AI — 10 Open-Source Tools for End-to-End Smart Trips URL: https://tokrepo.com/en/packs/travel-planning-ai Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten open-source picks across five layers — research, itinerary, booking, offline kit, on-the-road backup. STORM for destination deep dives, TREK for the plan, Nominatim + MapLibre for the map you carry, LibreTranslate + Handy for the language barrier, ezBookkeeping for multi-currency spend. The OTA's AI chat is a slide; this is the rig. ## What's in this pack AI-flavored travel apps in 2026 mostly sell you the same five hotels with a chat box bolted on top. This pack is for the traveler who books their own trip and wants the actual plumbing: an AI that …(content truncated, full version at https://tokrepo.com/en/packs/travel-planning-ai) --- # TTS + STT Voice Stack — Whisper, ElevenLabs, Coqui, Bark, StyleTTS URL: https://tokrepo.com/en/packs/tts-stt-voice-stack Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten components for the cascade architecture — pick a Whisper variant for STT, an LLM in the middle, and a TTS engine sized to your latency budget. Bark for expressive audio, Kokoro for laptop-CPU narrators, ElevenLabs when quality wins, Coqui/StyleTTS for self-hosted, OpenVoice for cloning. ## What's in this pack This is the **components catalog** for voice apps. Where the [Voice AI Stack pack](/en/packs/voice-ai-stack) gives you the realtime substrate (LiveKit, Moshi, OpenAI Realtime, Zonos) for speech-to …(content truncated, full version at https://tokrepo.com/en/packs/tts-stt-voice-stack) --- # Vector DB Showdown: Chroma vs Weaviate vs Pinecone vs Qdrant URL: https://tokrepo.com/en/packs/vector-db-showdown Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Side-by-side of seven vector DB options across self-hosted, managed, and embedding API tiers — pick by latency, cost, or RAG accuracy. Install via TokRepo. ## What's in this pack This pack puts the **seven dominant vector database options** side by side so the decision becomes a 10-minute exercise instead of a week of evaluation. The choice space splits cleanly into three …(content truncated, full version at https://tokrepo.com/en/packs/vector-db-showdown) --- # Video Production AI: Remotion, MoviePy, OpenMontage stack URL: https://tokrepo.com/en/packs/video-production-ai Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Seven battle-tested assets for AI video production — Remotion (React-as-video), OpenMontage, MoviePy, and headless pipeline templates. Ship daily TikTok/Shorts/Reels content from one repo. ## What's in this pack This pack collects the **seven video production assets** that show up in every team shipping daily AI-generated short-form content (TikTok / YouTube Shorts / Instagram Reels). Three are headline f …(content truncated, full version at https://tokrepo.com/en/packs/video-production-ai) --- # Video Transcript + Search Pack — 10 Tools to Index YouTube, Podcasts, Meetings URL: https://tokrepo.com/en/packs/video-transcript-search Type: pack Updated: 2026-05-22T08:00:00Z > **TL;DR**: Ten picks chained into one pipeline: pull the source (yt-dlp), transcribe it (whisper.cpp / Faster Whisper / Groq Whisper), get word-level timestamps and speaker labels (WhisperX, AssemblyAI Diarization), chunk on natural turn boundaries, run keyword search (yt-fts) and LLM Q&A (LeMUR) over the transcript, and render captions back to video (Remotion). Built for researchers, journalists, and devs who want a searchable archive of spoken content. ## What's in this pack This is the stack you build when you realise the most valuable text on the internet is locked inside YouTube videos, podcast feeds, and Zoom recordings — and the search box on each platform is use …(content truncated, full version at https://tokrepo.com/en/packs/video-transcript-search) --- # Voice AI Stack: Zonos, Moshi, OpenAI Realtime, LiveKit URL: https://tokrepo.com/en/packs/voice-ai-stack Type: pack Updated: 2026-05-02T15:20:00Z > **TL;DR**: Six voice AI assets — open-source TTS (Zonos), full-duplex dialogue (Moshi), hosted speech-to-speech (OpenAI Realtime), and the WebRTC infrastructure (LiveKit Agents) that lets all of them hit production latency targets. ## What's in this pack Voice AI is the area where the gap between "demo on a laptop" and "shipping to users" is widest. Latency, turn-taking, interruptions, and barge-in have to all work — and they don't, by default. Th …(content truncated, full version at https://tokrepo.com/en/packs/voice-ai-stack) --- # Voice Clone + Podcast Studio — 10 Tools to Run a Show Solo URL: https://tokrepo.com/en/packs/voice-clone-podcast-studio Type: pack Updated: 2026-05-23T10:00:00Z > **TL;DR**: Five layers, ten picks, one workflow: capture and clean (Audacity) → transcribe (Whisper family) → clone your voice (ElevenLabs, OpenVoice, GPT-SoVITS) → dub into 100 languages (KrillinAI, Fish Speech, Coqui TTS) → bake captions for social cuts (VideoCaptioner). Get consent before you clone anyone. ## What's in this pack This is the rig an indie podcaster, voice actor, or YouTuber would build to run a whole show **without a producer, sound engineer, or translation agency**. Ten picks, opinionated order, every one …(content truncated, full version at https://tokrepo.com/en/packs/voice-clone-podcast-studio) --- # Windows Engineer's AI Stack — 10 Tools for an AI-Powered Win10/11 Setup URL: https://tokrepo.com/en/packs/windows-engineer-ai-stack Type: pack Updated: 2026-05-22T10:00:00Z > **TL;DR**: Ten picks in deliberate order: package managers first, then terminal, then WSL, then window control, then automation, then an MCP server so AI agents can drive the desktop. By the second evening your shell, your windows, and your AI assistant all speak the same keyboard. ## What's in this pack This is the rig a working engineer on **Windows 10 or 11** would build on a fresh box in one evening — not a Reddit thread of 40 random utilities. Every pick is **actively maintained**, **scriptab …(content truncated, full version at https://tokrepo.com/en/packs/windows-engineer-ai-stack) --- # Windsurf First-Day Kit — 10 Picks to Get Cascade Flowing Day One URL: https://tokrepo.com/en/packs/windsurf-first-day Type: pack Updated: 2026-05-22T00:00:00Z > **TL;DR**: Ten picks in install order: the Windsurf IDE, a multi-tool rules generator so your AGENTS.md/.windsurfrules/.cursorrules stay in sync, the AGENTS.md spec itself, four MCP servers you'll actually use (official reference, Git, Playwright, Desktop Commander), the leaked Cascade system prompt so you know what the agent thinks, and a 2026 landscape map so you stop second-guessing your tool choice. Honest disclaimer: the catalog is thin on Windsurf-specific assets — most picks here are editor-agnostic skills that work because Windsurf is a VS Code fork. ## What's in this pack You installed Codeium Windsurf, opened Cascade for the first time, and now you're hunting for the equivalent of a `.cursorrules` file, a sensible MCP starter set, and someone honest enough to say …(content truncated, full version at https://tokrepo.com/en/packs/windsurf-first-day) --- # WordPress + No-Code AI Stack — 10 Picks for the Non-Coder Shipping a Real Site URL: https://tokrepo.com/en/packs/wordpress-nocode-ai-stack Type: pack Updated: 2026-05-23T00:00:00Z > **TL;DR**: Ten picks in install order for the non-coder: WordPress as the CMS spine, Webstudio for visual page design, WooCommerce for taking money, a WordPress MCP adapter so an AI agent can actually edit your site, Content Marketer + SEO Specialist for the writing, Together AI for hero images, Activepieces / n8n for the boring automations, and Plausible to see what's working. Domain to dashboard, no JavaScript required. ## What's in this pack This is the stack a non-programmer actually needs in 2026 to ship a real website that earns money — not a landing page, not a Notion site, not a Linktree. Ten picks chosen so a small-business owne …(content truncated, full version at https://tokrepo.com/en/packs/wordpress-nocode-ai-stack) --- # Workflow Orchestration: n8n, Prefect, Inngest, Kestra Compared URL: https://tokrepo.com/en/packs/workflow-orchestration Type: pack Updated: 2026-05-02T15:00:00Z > **TL;DR**: Eight durable workflow engines that wrap AI agents in cron schedules, automatic retries, and observability — n8n, Prefect, Inngest, Kestra, Activepieces. One TokRepo command installs the whole stack so you stop running prompts from a Jupyter notebook in tmux. ## What's in this pack This pack collects the **eight production-grade workflow engines** that AI teams reach for when a prompt-in-a-loop stops being enough. Each one solves the same trio of problems — schedule, retry, …(content truncated, full version at https://tokrepo.com/en/packs/workflow-orchestration) --- # Claude Code: Anthropic's CLI agent that codes in your terminal URL: https://tokrepo.com/en/tools/claude-code Type: tool Updated: 2026-05-02T14:00:00Z > **TL;DR**: Claude Code is Anthropic's official CLI coding agent. Runs in any terminal, supports MCP servers, subagents, slash commands, hooks, and headless CI. The tool Boris Cherny built and uses daily. ## What it is Claude Code is the official Anthropic CLI agent for coding. It runs inside your terminal — any shell, any project — and gives Claude full access to read files, run commands, edit code, and orchestrate long …(content truncated, full version at https://tokrepo.com/en/tools/claude-code) --- # Cline: open-source VS Code autonomous coding agent (BYOK) URL: https://tokrepo.com/en/tools/cline Type: tool Updated: 2026-05-02T15:00:00Z > **TL;DR**: Cline is the open-source VS Code coding agent by Saoud Rizwan. Bring-your-own-key (Claude, OpenAI, Gemini, OpenRouter), .clinerules instructions, granular auto-approve. The community alternative to Copilot agent mode. ## What it is Cline is an open-source autonomous coding agent that lives inside VS Code, originally built by Saoud Rizwan in 2024. It started as the project "claude-dev" and grew into one of the most popular community V …(content truncated, full version at https://tokrepo.com/en/tools/cline) --- # Codex CLI: OpenAI's terminal agent that ships AGENTS.md URL: https://tokrepo.com/en/tools/codex-cli Type: tool Updated: 2026-05-02T15:00:00Z > **TL;DR**: Codex CLI is OpenAI's official terminal coding agent. Apache-2.0 source, runs against ChatGPT Pro/Plus or API, popularized the AGENTS.md convention, now MCP-ready. ## What it is Codex CLI is OpenAI's official command-line agent for coding, released in 2025 and maintained on the `openai/codex` GitHub repo under Apache-2.0. It runs locally in your terminal, hooks into ChatGPT Pro/Pl …(content truncated, full version at https://tokrepo.com/en/tools/codex-cli) --- # Cursor: the AI-first code editor forked from VS Code (Anysphere) URL: https://tokrepo.com/en/tools/cursor Type: tool Updated: 2026-05-02T14:00:00Z > **TL;DR**: Cursor is Anysphere's AI-first IDE — a VS Code fork with built-in agent (Composer), MCP support, and the `.mdc` rules format. Configure with TokRepo's drop-in rule packs. ## What it is Cursor is the AI-first code editor that took the AI-coding race in 2025–2026. It's a fork of VS Code with the agent built into the editor surface itself: side-by-side diffs, inline edits, and a "Composer" …(content truncated, full version at https://tokrepo.com/en/tools/cursor) --- # Gemini CLI: Google's terminal agent for Gemini 2.5 / 3 models URL: https://tokrepo.com/en/tools/gemini-cli Type: tool Updated: 2026-05-02T15:00:00Z > **TL;DR**: Gemini CLI is Google's open-source terminal agent for Gemini 2.5 and 3 models. Generous free tier, ten official extensions (Stitch, Workspace, Code Review, Vertex AI, Postgres), MCP-compatible. ## What it is Gemini CLI is Google's official command-line agent for the Gemini model family. Released open source under Apache-2.0 in 2025, it gives you a terminal-resident agent that can read files, run shell commands …(content truncated, full version at https://tokrepo.com/en/tools/gemini-cli) --- # GitHub Copilot: the IDE assistant from GitHub with agent mode URL: https://tokrepo.com/en/tools/github-copilot Type: tool Updated: 2026-05-02T15:00:00Z > **TL;DR**: GitHub Copilot is GitHub's IDE-resident coding assistant. Inline completions plus a chat panel plus a 2025 agent mode. Subscription starts at $10/mo. Tightest integration with VS Code and the GitHub PR flow. ## What it is GitHub Copilot is the original mainstream AI coding assistant — launched by GitHub and Microsoft in 2021, it brought inline completions to mainstream developers and now ships three modes: ghost-text comple …(content truncated, full version at https://tokrepo.com/en/tools/github-copilot) --- # Roo Code: VS Code agent with modes and Boomerang delegation URL: https://tokrepo.com/en/tools/roo-code Type: tool Updated: 2026-05-02T15:00:00Z > **TL;DR**: Roo Code is a community fork of Cline for VS Code that adds explicit modes (architect, code, ask, debug) and Boomerang task delegation between them. BYOK, MCP-ready, custom modes via `.roomodes`. ## What it is Roo Code is a community fork of Cline maintained by the RooVet team, born from the observation that one prompt + one model is not enough for serious work — sometimes you want a planner, sometimes an execut …(content truncated, full version at https://tokrepo.com/en/tools/roo-code) --- # Windsurf: Codeium's IDE with Cascade autonomous coding mode URL: https://tokrepo.com/en/tools/windsurf Type: tool Updated: 2026-05-02T15:00:00Z > **TL;DR**: Windsurf is Codeium's AI-native IDE — a VS Code fork built around Cascade, an autonomous coding mode that plans and executes multi-file edits. Free tier plus Pro. Acquired by OpenAI mid-2025; trajectory still shifting. ## What it is Windsurf is Codeium's flagship AI-native IDE — a VS Code fork released in 2024 that bet hard on **Cascade**, an autonomous coding mode that watches your work, runs commands, edits across files, and proacti …(content truncated, full version at https://tokrepo.com/en/tools/windsurf) --- _Aggregated 1577 pages, 1577 truncated at 220 chars._