| name | web-search |
|---|---|
| description | Search the web using DuckDuckGo (ddgs), then fetch each result's full page content using the built-in web fetch tool before answering. |
| allowed-tools | Bash, WebFetch |
Search the web for: $ARGUMENTS
| import os | |
| import modal | |
| import subprocess | |
| app = modal.App("llama-logits-kld") | |
| LLAMA_CUDA_URL = "https://github.com/ai-dock/llama.cpp-cuda/releases/download/b9279/llama.cpp-b9279-cuda-12.8-amd64.tar.gz" | |
| vol = modal.Volume.from_name("qwen3-6-kld-vol", create_if_missing=True) |
| # Deploy: modal deploy server.py | |
| import subprocess | |
| import time | |
| import urllib.request | |
| import modal | |
| # ── Config ─────────────────────────────────────────────────────────────────── | |
| APP_NAME = "your-top-secret-server" |
| ❯ let's implement the plan in @docs/plans/ | |
| ⎿ Listed directory docs/plans/ | |
| ∴ Thinking… | |
| User wants to implement a plan from docs/plans, so I should invoke the brainstorming skill first per the superpowers protocol to explore | |
| requirements before implementation. | |
| ⏺ Skill(superpowers:brainstorming) | |
| ⎿ Successfully loaded skill |
| #!/usr/bin/env bash | |
| # Usage: ./mdview filename.md OR cat file.md | ./mdview | |
| # --- Configuration --- | |
| MAX_CELL_WIDTH=${MAX_CELL_WIDTH:-50} | |
| # --- ANSI Colors --- | |
| ESC=$'\033' | |
| RESET="${ESC}[0m" | |
| BOLD="${ESC}[1m" |
Hardware:
Model: unsloth/Qwen3-Coder-Next-GGUF Q3_K_M
Llama.cpp version: llama.cpp@b7940
The command
| #!/bin/bash | |
| screencapture -i ~/clipboard.png | |
| IMAGE_BASE64=$(base64 -i ~/clipboard.png | tr -d '\n') | |
| rm ~/clipboard.png | |
| API_KEY="GEMINI_API_KEY_HERE" | |
| MODEL="gemini-2.0-flash" |