glimmer-delegation
Delegates tasks to a locally served Muse Glimmer via ollama. Use when delegation-core selects glimmer or the prompt must not leave the machine.
它会碰到什么
逐条看命中(1 条严重或高危)
- 严重
SKILL.md:66exec-pipe-to-shellcurl -fsSL https://ollama.com/install.sh | sh
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Table of Contents
- [Overview](#overview)
- [When To Use](#when-to-use)
- [When NOT To Use](#when-not-to-use)
- [Prerequisites](#prerequisites)
- [Quick Start](#quick-start)
- [Smart Delegation](#smart-delegation)
- [Glimmer-Specific Details](#glimmer-specific-details)
- [Exit Criteria](#exit-criteria)
Glimmer Delegation
Overview
Glimmer is Meta's Muse Glimmer served locally through ollama, so a
delegation to it spends no quota and sends no prompt off the machine.
It is the last entry in the candidate order for the same reason it is
the safe one: a local 30B model is slower and weaker than any of the
network providers ahead of it.
When To Use
delegation-coreselectedglimmerfor the task- Every network provider is exhausted and the work still has to happen
- The prompt must not leave the machine, whatever the cost in quality
When NOT To Use
- The task needs the strongest available model. Glimmer is the floor,
not a peer of the network providers
ollama listshows nomuse-glimmer:30b. A registered provider
whose model was never pulled fails at the first delegation, not at
registration
Prerequisites
Installation
curl -fsSL https://ollama.com/install.sh | sh
ollama pull muse-glimmer:30b
Both steps are required. Installing ollama registers the binary and
pulls nothing, so ollama --version answering is not evidence that a
delegation will succeed.
Authentication
None. auth_method is "none" and the auth probe is empty, because a
local server has no credential to check.
Quick Start
Using the shared delegation executor
uv run python scripts/delegation_executor.py glimmer "Summarize" \
--files src/
Through the Makefile
make -C plugins/conjure delegate-glimmer PROMPT='Summarize' FILES='src/'
Direct CLI usage
ollama run muse-glimmer:30b "Explain this module"
Smart Delegation
glimmer carries priority=80, the highest number in the registry,
which places it last in the candidate order. It declares no model ids,
because the model is fixed by the subcommand rather than chosen per
call.
Glimmer-Specific Details
| Property | Value |
|----------|-------|
| Binary | ollama |
| Headless form | ollama run muse-glimmer:30b |
| Prompt delivery | stdin |
| File context | inlined into the prompt |
| Version probe | ollama --version |
| Auth probe | none |
| Output format flag | --format |
| Model flag | none |
Read off ollama run --help at 0.13.1: the usage line is `ollama run
MODEL [PROMPT] [flags]`, so the model is positional and is carried by
the subcommand. The flag list has no --model, which is why this
service declares model_flag=None; passing one exits 1 on an unknown
flag. --format string is documented there and is the reason
output_format_flag is --format rather than the registry default
--output-format, which the same CLI rejects.
No temperature flag is declared. ollama run --help documents none,
and inventing one is the error class install_hint and login_hint
already guard against.
Exit Criteria
- [ ]
ollamaresolves on PATH and answersollama --version - [ ]
ollama listincludesmuse-glimmer:30bbefore a task is
delegated; an absent model stops execution with the pull command
rather than failing inside the delegation
- [ ] The built command is
ollama run muse-glimmer:30bwith the
prompt on stdin and no prompt flag
- [ ] No
--modelflag appears in the built command - [ ] Output saved to
delegations/glimmer/YYYYMMDD_HHMMSS.md - [ ] This skill ran because
delegation-coreselectedglimmer, or
because the prompt was required to stay local
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/conjure/skills/glimmer-delegation/SKILL.md同一个仓库里的其他技能
- claude-code-plugin-reference
- night-market-architecture-contract
- night-market-build-and-env
- night-market-change-control
- night-market-collective-memory
- night-market-completion-integrity-campaign
- night-market-config-catalog
- night-market-debugging-playbook
- night-market-diagnostics-toolkit
- night-market-docs-and-writing
- night-market-failure-archaeology
- night-market-model-and-harness-updates