claude-code-plugin-ref…
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
Delegates tasks to a locally served Muse Glimmer via ollama. Use when delegation-core selects glimmer or the prompt must not leave the machine.
$ npx -y skills add athola/claude-night-market --skill glimmer-delegation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/glimmer-delegationContext preview
The summary Claude sees to decide when to auto-load this skill.
Delegates tasks to a locally served Muse Glimmer via ollama. Use when delegation-core selects glimmer or the prompt must not leave the machine.
name: glimmer-delegation description: Delegates tasks to a locally served Muse Glimmer via ollama. Use when delegation-core selects glimmer or the prompt must not leave the machine. alwaysApply: false category: delegation-implementation tags: - glimmer - ollama - local - delegation dependencies: - delegation-core tools: - ollama - delegation_executor.py usage_patterns: - local-model-delegation - offline-fallback complexity: intermediate model_hint: standard estimated_tokens: 550 references: - delegation-core/shared-shell-execution.md
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.
not a peer of the network providers
whose model was never pulled fails at the first delegation, not at registration
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.
None. `auth_method` is `"none"` and the auth probe is empty, because a local server has no credential to check.
uv run python scripts/delegation_executor.py glimmer "Summarize" \ --files src/
make -C plugins/conjure delegate-glimmer PROMPT='Summarize' FILES='src/'
ollama run muse-glimmer:30b "Explain this module"
`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.
| 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.
delegated; an absent model stops execution with the pull command rather than failing inside the delegation
prompt on stdin and no prompt flag
because the prompt was required to stay local
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
States load-bearing decisions, invariants, and weak points. Use when judging a design change. Do not use for gating; use night-market-change-control.
Rebuild the dev environment: uv, Python tiers, pins, traps. Use when onboarding or toolchain breaks. Do not use for daily commands; use night-market-operations.
Classify, gate, and review changes. Use when landing a PR, releasing, or amending rules. Do not use for failure triage; use night-market-debugging-playbook.
Search and record project memory (Discussions, journal, ADRs). Use before re-investigating anything. Do not use for settled battles; see failure-archaeology.
Bind loop 'done' to unfakeable gates. Use to harden egregore/herald loops or promote completion_integrity. Not for QA gates; use night-market-validation-and-qa.