Drop the three-layer Claude subprocess orchestration (local model →
Claude verifier → cloud escalation). Skills now call LiteLLM directly
and return plain text to Claude Code, which decides what to do with it.
- Delete executor, orchestrator, verifier, result, attempts packages
- Simplify LiteLLMExecutor: Run(Request)→Result becomes Complete(model,sys,user)→(string,int64,error)
- Replace ExecutorFn with CompleteFunc in all 6 skill configs
- Rewrite all skill handlers to call Complete and return {"text","model","duration_ms"}
- Simplify config/models: remove Verifier/LlamaSwapURL, add ModelFor
- Bump version to v0.5.0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
// internal/skills/retrospective/handlers_test.go
|
|
package retrospective_test
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/mathiasbq/supervisor/internal/skills/retrospective"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestHandle_Retrospective_RequiresSessionID(t *testing.T) {
|
|
s := retrospective.New(retrospective.Config{})
|
|
_, err := s.Handle(context.Background(), "retrospective", json.RawMessage(`{}`))
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "session_id")
|
|
}
|
|
|
|
func TestHandle_Retrospective_BuildsPromptWithSessionLog(t *testing.T) {
|
|
var capturedTask string
|
|
s := retrospective.New(retrospective.Config{
|
|
SkillPrompt: "retrospective discipline",
|
|
DefaultModel: "ollama/test",
|
|
SessionsDir: t.TempDir(),
|
|
CompleteFunc: func(_ context.Context, _, _, user string) (string, int64, error) {
|
|
capturedTask = user
|
|
return "Key insight: the team resolved a tricky nil pointer issue via careful logging.", 75, nil
|
|
},
|
|
})
|
|
|
|
args, _ := json.Marshal(map[string]string{"session_id": "empty-session"})
|
|
out, err := s.Handle(context.Background(), "retrospective", args)
|
|
require.NoError(t, err)
|
|
|
|
var result map[string]any
|
|
require.NoError(t, json.Unmarshal(out, &result))
|
|
assert.Contains(t, result["text"], "nil pointer")
|
|
assert.Contains(t, capturedTask, "empty-session")
|
|
}
|