mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-30 07:10:49 +02:00
Server-side foundation for Phase 1 of the quick-create roadmap (see
docs/agent-quick-create-plan.md). Adds:
- server/internal/agenttmpl/ — embed-loaded catalog of curated agent
templates. Each template ships pre-written instructions plus a list
of skill URLs that get materialised into the workspace at create
time. Validation runs at startup (init() panics on a malformed
template) so a bad JSON ships as a deploy-time defect, not a
runtime 500. Slug must equal the filename basename so the URL
router is mirror-symmetric with the file layout.
- 11 starter templates covering Engineering / Writing / Building /
Testing (code-reviewer, frontend-builder, planner, docs-writer,
one-pager, html-slides, full-stack-engineer, …).
- Three new endpoints, all behind RequireWorkspaceMember:
GET /api/agent-templates — picker list (no instructions)
GET /api/agent-templates/:slug — detail with instructions
POST /api/agents/from-template — materialise + create
Create flow:
1. Auth + runtime authorization happen BEFORE the GitHub fan-out
so a 403 never wastes 20s of upstream fetches.
2. Pre-flight dedupe by cached_name reuses workspace skills
without an HTTP fetch — second create-from-the-same-template
drops from 20s to <100ms.
3. Parallel fetch (30s per-URL timeout) for the remaining skills.
4. Single transaction: every skill insert, the agent insert, and
the agent_skill bindings. On any upstream fetch failure the TX
rolls back and the API returns 422 with `failed_urls` so the
UI can name the bad source(s).
5. extra_skill_ids (user-supplied additions) are verified through
GetSkillInWorkspace per id before attach, so a malicious client
can't graft a skill from another workspace via UUID guessing.
- multica agent create --from-template <slug> CLI flag dispatches to
the new endpoint with a 60s ceiling, matching `multica skill import`.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
148 lines
4.2 KiB
Go
148 lines
4.2 KiB
Go
package agenttmpl
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
"testing/fstest"
|
|
)
|
|
|
|
func TestLoad_RealTemplates(t *testing.T) {
|
|
// Exercises the production go:embed path. If a real template file is
|
|
// malformed in main, this test fails — the same failure server boot would
|
|
// hit, but in CI before merge.
|
|
reg, err := Load()
|
|
if err != nil {
|
|
t.Fatalf("Load(): %v", err)
|
|
}
|
|
if len(reg.List()) == 0 {
|
|
t.Fatal("expected at least one bundled template, got none")
|
|
}
|
|
}
|
|
|
|
func TestLoadFromFS_Valid(t *testing.T) {
|
|
fsys := fstest.MapFS{
|
|
"templates/alpha.json": &fstest.MapFile{Data: []byte(`{
|
|
"slug": "alpha",
|
|
"name": "Alpha",
|
|
"description": "first",
|
|
"instructions": "do alpha",
|
|
"skills": [{"source_url": "https://github.com/x/y/tree/main/skills/z"}]
|
|
}`)},
|
|
"templates/beta.json": &fstest.MapFile{Data: []byte(`{
|
|
"slug": "beta",
|
|
"name": "Beta",
|
|
"description": "second",
|
|
"instructions": "do beta",
|
|
"skills": [{"source_url": "https://github.com/x/y/tree/main/skills/q"}]
|
|
}`)},
|
|
}
|
|
|
|
reg, err := loadFromFS(fsys, "templates")
|
|
if err != nil {
|
|
t.Fatalf("loadFromFS: %v", err)
|
|
}
|
|
if got, want := len(reg.List()), 2; got != want {
|
|
t.Fatalf("List() len = %d, want %d", got, want)
|
|
}
|
|
// List() must be deterministic (sorted by filename).
|
|
if reg.List()[0].Slug != "alpha" {
|
|
t.Errorf("List()[0].Slug = %q, want alpha", reg.List()[0].Slug)
|
|
}
|
|
if _, ok := reg.Get("alpha"); !ok {
|
|
t.Errorf("Get(alpha) = false, want true")
|
|
}
|
|
if _, ok := reg.Get("nope"); ok {
|
|
t.Errorf("Get(nope) = true, want false")
|
|
}
|
|
}
|
|
|
|
func TestLoadFromFS_Invalid(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
content string
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "bad json",
|
|
content: `{not json`,
|
|
wantErr: "parse",
|
|
},
|
|
{
|
|
name: "missing slug",
|
|
content: `{"name": "X", "instructions": "do", "skills": [{"source_url":"u"}]}`,
|
|
wantErr: "missing slug",
|
|
},
|
|
{
|
|
name: "slug mismatches filename",
|
|
content: `{"slug":"other","name":"X","instructions":"do","skills":[{"source_url":"u"}]}`,
|
|
wantErr: "does not match filename",
|
|
},
|
|
{
|
|
name: "bad slug",
|
|
content: `{"slug":"Bad_Slug","name":"X","instructions":"do","skills":[{"source_url":"u"}]}`,
|
|
wantErr: "kebab-case",
|
|
},
|
|
{
|
|
name: "missing name",
|
|
content: `{"slug":"x","instructions":"do","skills":[{"source_url":"u"}]}`,
|
|
wantErr: "missing name",
|
|
},
|
|
{
|
|
name: "missing instructions",
|
|
content: `{"slug":"x","name":"X","skills":[{"source_url":"u"}]}`,
|
|
wantErr: "missing instructions",
|
|
},
|
|
{
|
|
name: "no skills",
|
|
content: `{"slug":"x","name":"X","instructions":"do","skills":[]}`,
|
|
wantErr: "at least one skill",
|
|
},
|
|
{
|
|
name: "skill missing url",
|
|
content: `{"slug":"x","name":"X","instructions":"do","skills":[{}]}`,
|
|
wantErr: "missing source_url",
|
|
},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
filename := "x.json"
|
|
if tc.name == "slug mismatches filename" {
|
|
filename = "x.json" // slug is "other", file is "x.json" → mismatch
|
|
}
|
|
fsys := fstest.MapFS{
|
|
"templates/" + filename: &fstest.MapFile{Data: []byte(tc.content)},
|
|
}
|
|
_, err := loadFromFS(fsys, "templates")
|
|
if err == nil {
|
|
t.Fatalf("expected error containing %q, got nil", tc.wantErr)
|
|
}
|
|
if !strings.Contains(err.Error(), tc.wantErr) {
|
|
t.Errorf("error = %v, want substring %q", err, tc.wantErr)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadFromFS_DuplicateSlug(t *testing.T) {
|
|
// Two valid files declaring the same slug — caught by the registry, not
|
|
// by validate(). Slugs are unique within the registry.
|
|
fsys := fstest.MapFS{
|
|
"templates/a.json": &fstest.MapFile{Data: []byte(`{
|
|
"slug":"a","name":"A","instructions":"do","skills":[{"source_url":"u"}]
|
|
}`)},
|
|
"templates/b.json": &fstest.MapFile{Data: []byte(`{
|
|
"slug":"a","name":"A2","instructions":"do","skills":[{"source_url":"u"}]
|
|
}`)},
|
|
}
|
|
_, err := loadFromFS(fsys, "templates")
|
|
if err == nil || !strings.Contains(err.Error(), "duplicate slug") {
|
|
// Note: this test will fail validation first (slug "a" vs filename
|
|
// "b.json") because we check filename-slug match before duplicate.
|
|
// That's fine — both are errors. Adjust expectation:
|
|
if err == nil || !strings.Contains(err.Error(), "does not match filename") {
|
|
t.Errorf("expected duplicate slug or filename mismatch, got %v", err)
|
|
}
|
|
}
|
|
}
|