Orkas is a desktop application for commanding a team of AI agents through one chat, with a commander model assigning work to specialist agents in parallel or in sequence. People use it to coordinate research, writing, presentations, and software tasks while keeping files on their computer. The catalogue includes skills for extending the agents available to Orkas.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Orkas-AI/Orkas --skill stage-decidegit clone --depth 1 https://github.com/Orkas-AI/OrkasWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/orkas-ai/orkas/stage-decide)<a href="https://agentmods.dev/skills/orkas-ai/orkas/stage-decide"><img src="https://agentmods.dev/badge/skills/orkas-ai/orkas/stage-decide/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/orkas-ai/orkas/stage-decide"><img src="https://agentmods.dev/badge/skills/orkas-ai/orkas/stage-decide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00003 | $0.01380 |
| Opus 5 | $0.00002 | $0.00690 |
| Sonnet 5 | $0.00001 | $0.00276 |
| Haiku 4.5 | $0.00000 | $0.00138 |
Grade A, and why
stage-decide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
stage-decide
The hard, valuable part of editing real footage is not executing a cut you already chose — it is
figuring out WHAT to cut: understanding opaque raw material, removing its intrinsic defects
(dead air, fillers, weak takes), and reducing it without losing the point. This skill is the
"understand → decide" layer; stage-edit executes the cuts you land on.
Host-neutral: describe what to produce; the host provides the operations. In Orkas, use skill scripts:
stage-edit edit_video --op trim_silence / --op remove_fillers (deterministic auto-cuts that return evidence),
stage-edit analyze_media --op scenes (cut candidates), --op quality (blur/exposure/black/freeze flags),
video_studio op: "speech.transcribe" for transcription, and stage-edit analyze_media --op silence.
Use this when
The user supplies real footage AND the work is to select or clean, not to run a known edit:
"cut this 40-min recording to a 2-min highlight", "remove the ums and dead air", "make 3 clips from
this podcast", "tighten this talking-head". If they already gave you timecodes ("trim 0:10–0:35"),
skip this — that is plain stage-edit.
Method
- Understand the material first (never decide against footage you have not measured):
probefor duration/resolution.- Spoken footage → use
video_studioop: "speech.transcribe"so you cut on sentence/word boundaries, never mid-word. - Visual reduction →
scenesfor shot boundaries; bound the moments you keep on these candidates. - Dead air →
silenceto see the gaps.
- Decide — deterministic first, judgment second:
- Cleaning is mechanical — use the auto-cuts:
trim_silence(drop dead air),remove_fillers(transcribe → drop um/uh). They are reliable and return the spans they removed. - Build a candidate pool first — turn the signals into a structured list of selectable pieces: each transcript sentence (spoken footage) or scene segment (visual footage), annotated with its timecode, duration, and quality flags/score. Select FROM this list — do not eyeball raw footage.
- Selection is judgment — when picking highlights / reducing length, ground EACH kept span on a measured signal (a scene boundary, a transcript sentence, a scored moment). Keep whole sentences; pad cuts so they are not jarring; for a talking-head the jump-cut keeps audio and video in sync — do not desync the lips.
- Best take among repeats — when the same line was recorded several times, do NOT guess: write a
takes.json([{id, text=the take's transcript, quality_score from "quality", duration_sec}]) and call"$ORKAS_NODE" "$ORKAS_PC_DIR/bin/run-skill.cjs" stage-plan video_plan -- --op rank_takes --takes project/takes.json. It groups the repeats and tells you which to KEEP (best quality) and which to drop. Choosing what to keep across DIFFERENT moments is still your judgment; this only resolves "which of these identical takes". - Quality triage —
qualityflags bad shots (blurry / too dark / over-exposed / black / frozen). Drop or avoid flagged spans; blur is content-relative (compare, do not threshold blindly), dark / black / freeze are absolute defects. - Visual / silent footage (no speech) — the content is in the PICTURE, so transcript is empty.
Sample frames at candidate moments with
stage-edit edit_video --op extract_frameand JUDGE THEM YOURSELF if you can see images (you are the vision — no separate vision model). If you CANNOT see images, ground onscenes+qualityonly and mark every visual judgment UNVERIFIED, or ask the user which moments matter — NEVER invent what is on screen, and never escalate to a separate billable vision model.
- Cleaning is mechanical — use the auto-cuts:
- Record the edit strategy and references. Write
plan.json::edit_strategywith deterministic/mixed mode, concrete objectives, only the transcript/OCR/scene/silence/quality/vision signals actually used, and non-overlapping preserve/may-change boundaries. Record every source or guiding image/video in top-levelreferences; video timing or motion guidance needs temporal anchors. - Record evidence — make every cut auditable. For each kept/cut segment in
plan.json, setreason(why this moment),confidence, andevidence(the auto-cut tools return removed/kept spans; for your own selections, cite the signal). This is the whole point — not a black box. - Produce the tightened clip (the auto-cut tools output it directly; for selection, trim the kept
spans and concat per
stage-edit).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 73 lines · 3 tokens per session scan A 3bf7fb913942
stage-decide is a skill published in the GitHub repository Orkas-AI/Orkas (1,808 stars, last pushed yesterday), licensed MIT. It adds 3 tokens to every session and 1,380 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
video-editing-planner
Suggests editing structure, scene cuts, transitions, and pacing for improved video content quality and engagement.
video-script-generator
Generates video scripts with hooks, structured sections, pacing, and call-to-actions optimized for engagement and retention.
caption-subtitle-formatter
Formats captions and subtitles for readability, timing, and accessibility across videos.
infographic-builder
Turns textual content into structured infographic formats suitable for reports, presentations, and educational materials.
recording
Capture screen recordings and screenshots on any registered computer (macOS, Windows, Linux, HarmonyOS) and manage the recording library.
deepchat-cli
Use DeepChat's bundled CLI control plane for model inference, image/video/speech generation, transcription, OCR, artifact inspection, public configuration, Skills, and MCP operations. Activate when a user asks to invoke DeepChat capabilities that are not already exposed as a more specific tool, compare models, run a…