Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

volcanicviper

يحتوي volcanicviper على 28 من skills المجمعة من gkwa، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
28
Stars
0
محدث
2026-07-15
Forks
0
التغطية المهنية
5 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

research-note
موظفو المكاتب العامون

Create a research note from a rough question. Cleans the question, splits into separate files if multiple questions, adds an answer and Google search links. Use when the user has a question they want documented as a note.

2026-07-15
shell-history
مطوّرو البرمجيات

Search shell history using atuin. Use when the user mentions searching shell history, finding a past command, or recalling a URL or tool invocation from the terminal.

2026-07-11
recipe-cleanup
موظفو المكاتب العامون

Reformat a recipe file using consistent style rules. Use when the user wants to clean up or standardize a recipe note in the vault, or create a new recipe note from a URL.

2026-07-10
youtube-transcript-note
موظفو المكاتب العامون

Create a structured Obsidian vault note from a YouTube video transcript — fetches captions with timestamps, cleans the text, divides into sections, adds a TOC and per-section video links, uploads the thumbnail to Imgur, and commits. Use when the user shares a YouTube URL and wants a full transcript note in the vault.

2026-07-09
grouchygiraffe-ingest
موظفو المكاتب العامون

Full grouchygiraffe ingestion workflow — given either a grouchygiraffe media file path or a recipe URL (YouTube, Instagram, or any recipe page), identify the recipe, upload the thumbnail to Imgur where applicable, and write a cleaned recipe note to the vault.

2026-07-08
digikam-search
مطوّرو البرمجيات

Find digikam notes and digikam setup information. Use when asked to search my digikam, find digikam media, or look up anything about the digikam configuration or database.

2026-07-02
youtube-ingest
فنيو النشر المكتبي

Full YouTube video ingestion workflow — given a YouTube URL, fetch the video title, upload the thumbnail to Imgur, create a note in the Obsidian vault with a hero image, and commit it. Use when the user shares a YouTube URL and wants a permanent note in the vault.

2026-06-25
resolve-recipe-ingredient-link
مطوّرو البرمجيات

Find the correct note to resolve an unresolved ingredient wikilink in a recipe note. Use when an ingredient wikilink like [[leeks]] in a recipe does not resolve to an existing note and you need to find the best matching product note to point it at. Uses islandiguana to enumerate product-tagged candidate notes, then semantically ranks the full list against the link text and its surrounding recipe ingredient line.

2026-06-24
zephyr
مطوّرو البرمجيات

Understand the Zephyr sourdough bake tagging scheme. Use when working with Zephyr bake logs, finding which bake log corresponds to a Zephyr key, reading Zephyr voice memo entries to extract bake events, or routing Zephyr entries from any document to their bake logs.

2026-06-15
moonlitlynx-food-run
مطوّرو البرمجيات

Tag untagged/undated food-related media in the digikam grouchygiraffe and shamblingshark collections. Use when asked to tag untagged food files, run a moonlitlynx food tagging pass, or process the digikam untagged or undated queue.

2026-06-13
social-to-imgur
مطوّرو البرمجيات

Download the thumbnail/cover image from a social media post (Instagram, Facebook, or any yt-dlp-supported platform) and upload it to Imgur, returning a permanent URL. Use when the user shares a social media URL and wants a permanent image link.

2026-06-13
grouchygiraffe-recipe-lookup
مطوّرو البرمجيات

Given a grouchygiraffe media file path, find the associated YAML, identify the recipe from the thumbnail, locate the author's home base, and return the recipe URL. Use when the user provides a path to a grouchygiraffe .mp4 or .jpg file and wants to know what recipe it is and where to find it.

2026-06-12
islandiguana
مطوّرو البرمجيات

Use islandiguana to search the Obsidian vault by YAML front matter using yq expressions. Use when asked to find notes by tag, status, or any front matter field, or when asked to peruse or search the Obsidian vault. Obsidian inline #tags are backed by YAML front matter, so islandiguana is the correct tool for finding notes by Obsidian tag.

2026-06-08
transcript-cleanup
مطوّرو البرمجيات

Clean up raw transcripts from output/ and write to a timestamped file in cleaned/. Use when the user wants to process, clean, or tidy transcript files from the output/ directory.

2026-06-06
grafana-bake-annotation
مطوّرو البرمجيات

Annotate a sourdough bake log in Grafana. Use when asked to add Grafana annotations from a Zephyr bake log, build the annotation CLI, or update the bake log grafana section.

2026-06-02
thesourdoughjourney-method-check
طهاة آخرون

Evaluate whether Tom Cucuzza's two-factor bulk fermentation method (dough temperature plus percentage rise) applies cleanly to a given sourdough recipe, and if it does not, which direction the error swings (over- or under-fermentation) and what target to use instead. Use when given a sourdough recipe and asked whether Tom's method, the percentage-rise method, or the two-factor bulk fermentation method applies, or whether following it would over- or under-ferment.

2026-05-23
tsconfig
مطوّرو البرمجيات

Add a tsconfig.json for TypeScript projects using Vite and/or Chrome extensions. Use when setting up TypeScript in a frontend or Chrome extension project.

2026-04-08
chrome-extension-multiple-entry-points
مطوّرو الويب

Build Chrome extensions with multiple entry points using separate Vite configs per script to avoid code-splitting issues. Use when building a Chrome extension with background, content, and popup scripts.

2026-04-08
justfile
مطوّرو البرمجيات

Create a justfile to orchestrate project tasks. Use when setting up task running for a project.

2026-04-08
logging-to-stderr
مطوّرو البرمجيات

Set up logging with verbosity levels via --verbose flags, sending log output to stderr. Use when adding logging to a CLI tool or script.

2026-04-08
pnpm
مطوّرو البرمجيات

Use pnpm instead of npm for package management. Use when setting up or working on a JavaScript or TypeScript project.

2026-04-08
return-early-pattern
مطوّرو البرمجيات

Apply the return early pattern with guard clauses to reduce nesting and improve readability. Use when refactoring conditional logic or writing new functions with precondition checks.

2026-04-08
silence-is-golden
مطوّرو البرمجيات

Follow the Unix rule of silence — output nothing on the happy path. Use when designing CLI tools, scripts, or any program that runs unattended.

2026-04-08
solid-principles
مطوّرو البرمجيات

Write code following SOLID design principles with good information hiding. Use when writing or reviewing code for architecture, class design, or module organization.

2026-04-08
use-vite
مطوّرو الويب

Set up Vite and Vitest as the build and test tools, with vite-plugin-checker for TypeScript checking and ESM configuration. Use when starting or configuring a frontend project.

2026-04-08
python-package
مطوّرو البرمجيات

Scaffold a new Python package with pyproject.toml, hatchling build system, ruff linting, and --version support via importlib.metadata. Use when creating a new Python package, Python CLI tool, or Python project from scratch.

2026-03-18
view-imgur
مطوّرو البرمجيات

View an imgur image by downloading it with curl and reading the local file. Use whenever an i.imgur.com URL is shared, because WebFetch cannot load imgur URLs directly.

2026-03-18
write-readme
مطوّرو البرمجيات

Write a brief README with a CLI cheatsheet. Use when creating or writing a README.md file.

2026-03-18