You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
obol-stack-dev skill — comprehensive developer skill for LLM smart-routing through llmspy, covering architecture, CLI wrappers, overlay generation, integration testing, and troubleshooting
Integration tests — full-cluster tests (//go:build integration) that deploy 3 OpenClaw instances and validate inference through all 3 provider paths (Ollama, Anthropic, OpenAI) via llmspy
README — expanded Model Providers section documenting obol model setup/status, added OpenClaw commands section
Skill structure
.agents/skills/obol-stack-dev/
├── SKILL.md # Entry point
└── references/
├── dev-environment.md # Setup, building, env vars
├── llmspy-routing.md # 2-tier architecture, 3 provider paths
├── obol-cli.md # Command map, flag quirks, programmatic usage
├── overlay-generation.md # values-obol.yaml generation
├── integration-testing.md # Test matrix, helpers, writing new tests
└── troubleshooting.md # Every gotcha (auth, EOF, labels, flags)
Integration test results (all passing)
Test
Provider
Model
Route
Status
TestIntegration_OllamaInference
Ollama
ollama/gpt-oss:120b-cloud
OpenClaw → llmspy → Ollama
PASS
TestIntegration_AnthropicInference
Anthropic
ollama/claude-sonnet-4-5-20250929
OpenClaw → llmspy → Anthropic
PASS
TestIntegration_OpenAIInference
OpenAI
ollama/gpt-4o-mini
OpenClaw → llmspy → OpenAI
PASS
TestIntegration_MultiInstance
Ollama (x3)
First available
3 instances side-by-side
PASS
All tests go through obol CLI verbs: obol openclaw sync, obol model setup, obol openclaw token, obol openclaw delete --force.
Test plan
Unit tests pass: go test ./internal/openclaw/
Integration tests pass: go test -tags integration -v -timeout 15m ./internal/openclaw/
Cleanup works: test namespaces deleted after each test
Verify skill is discoverable by agents via .claude/skills/ symlink
- Add `obol-stack-dev` skill with full reference docs for LLM
smart-routing through llmspy (architecture, CLI wrappers, overlay
generation, integration testing, troubleshooting)
- Add integration tests (`//go:build integration`) that deploy 3
OpenClaw instances through obol CLI verbs and validate inference
through Ollama, Anthropic, and OpenAI via llmspy
- Expand README model providers section and add OpenClaw commands
Add the standard Claude Code header, a Build/Test/Run Commands section
with unit test, integration test, and cluster management instructions,
and expand the References section with test files, CI/CD workflows,
and the developer skill directory. Fix Go version from 1.21 to 1.25.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
//go:build integration) that deploy 3 OpenClaw instances and validate inference through all 3 provider paths (Ollama, Anthropic, OpenAI) via llmspyobol model setup/status, added OpenClaw commands sectionSkill structure
Integration test results (all passing)
TestIntegration_OllamaInferenceollama/gpt-oss:120b-cloudTestIntegration_AnthropicInferenceollama/claude-sonnet-4-5-20250929TestIntegration_OpenAIInferenceollama/gpt-4o-miniTestIntegration_MultiInstanceAll tests go through
obolCLI verbs:obol openclaw sync,obol model setup,obol openclaw token,obol openclaw delete --force.Test plan
go test ./internal/openclaw/go test -tags integration -v -timeout 15m ./internal/openclaw/.claude/skills/symlink