LEAP
LEAP builds skills through two pipelines: Branch A distills a skill from raw data, while Branch B combines multiple skills into one. It is called by the main…
Project-kickoff rubric for the self-host vs managed-cloud decision — when is running your own inference engine / LLM platform worth the ops cost vs paying per-token for a managed API? Decide on two axes — VOLUME (a cost-crossover slider) and COMPLIANCE (a hard gate). Use at
$ npx -y skills add agentsope/SkillAlchemy --skill agentsop-selfhost-decision --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agentsop-selfhost-decisionContext preview
The summary Claude sees to decide when to auto-load this skill.
Project-kickoff rubric for the self-host vs managed-cloud decision — when is running your own inference engine / LLM platform worth the ops cost vs paying per-token for a managed API? Decide on two axes — VOLUME (a cost-crossover slider) and COMPLIANCE (a hard gate). Use at
name: agentsop-selfhost-decision version: 0.1.0 description: >- Project-kickoff rubric for the self-host vs managed-cloud decision — when is running your own inference engine / LLM platform worth the ops cost vs paying per-token for a managed API? Decide on two axes — VOLUME (a cost-crossover slider) and COMPLIANCE (a hard gate). Use at kickoff when choosing where to run inference, or when cost / data-residency pressure forces a re-evaluation. domain: deployment-decision / infrastructure-economics kind: enhancement-overlay (project-kickoff rubric) phase: D-enhance (D6) cross_links: - llm-engine-selection - dify-sop trigger_keywords: - "self-host vs cloud" - "self-host vs API" - "managed API vs run our own" - "is it cheaper to self-host the model" - "data residency LLM" - "air-gapped LLM" - "on-prem inference" - "GPU cost vs API cost" - "Dify cloud vs self-host" - "when to self-host inference" when_to_use: - "at project kickoff, deciding where an LLM / platform runs: managed API/cloud vs self-hosted GPU" - "cost pressure: monthly API spend is climbing and someone asks 'should we just run our own?'" - "compliance pressure: data-residency / air-gap / regulated-data requirement appears mid-project" - "evaluating a self-hostable platform's paid tiers (Dify Cloud vs Docker; managed vLLM vs your own GPUs)" - "designing a hybrid (self-host baseline + managed burst) topology" when_not_to_use: - "WHICH inference engine to run once you've decided to self-host — that's [[agentsop-llm-engine-selection]]" - "HOW to build the Dify app once you've decided to self-host it — that's [[agentsop-dify]]" - "single-call / hobby / one-user workloads where the answer is trivially 'just call the API'" - "training / fine-tuning siting (different cost structure: burst GPU, not steady serving)"
> **Overlay, not a deep dive.** This skill answers *where to run* (self-host vs managed), not *which engine* ([[agentsop-llm-engine-selection]]) or *how to build the app* ([[agentsop-dify]]). It fires first, at kickoff, and hands off to those once the side is chosen.
---
> This rubric exists because the loud reflex — *"running our own is cheaper / more serious"* — is **true only above a volume crossover, and only if you have the ops capacity, and only if compliance hasn't already forced your hand.** The job is to evaluate the **gate before the slider**, and to cost the **ops burden**, not just the GPU.
判断公式:
---
> **Self-host trades ops burden for control + unit-cost-at-scale. Managed trades $/token for zero ops. The crossover is a function of two axes: volume and compliance.**
COMPLIANCE (a GATE — binary, evaluated FIRST)
│
managed FORBIDDEN │ self-host (or in-region managed) MANDATORY
──────────────────┼──────────────────────────────────────────► VOLUME
│ (a SLIDER —
managed allowed │ below V*: managed cheaper continuous
│ above V*: self-host cheaper crossover)
│ (IF utilization high + ops capacity exists)managed_cost(V) = V × $/token_managed selfhost_cost(V) = (GPU + ops_labor + infra_fixed) + V × $/token_marginal V* = (GPU + ops_labor + infra_fixed) / ($/token_managed − $/token_marginal)
Turn people, methods, and experience into installable, reusable agent skills. SkillAlchemy is an open-world agent skill creation system that turns underspecified skill briefs and open-world sources into installable, reusable agent skills.
LEAP builds skills through two pipelines: Branch A distills a skill from raw data, while Branch B combines multiple skills into one. It is called by the main…
Lens — Add a cognitive lens to any problem. It accepts a task description and produces an enhanced description that surfaces hidden dimensions, prerequisites,…
Cross-framework enhancement overlay for choosing a multi-agent topology BEFORE writing any agent. A binary-question rubric — is single-agent + tools enough? do…
SOP for terminal-based, git-native AI pair programming with Aider (git work-tree + tree-sitter repo-map + edit-format + human-in-loop REPL). Use when editing…
Screens biomedical / life-science papers for signs of data fabrication, image manipulation, and statistical anomalies, using the detection techniques distilled…
Universal discipline for any LM-driven loop — agent retries, plan-act-observe, multi-agent handoffs, optimiser passes, test-fix cycles. Encodes the one rule…