+21

![opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)



![opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)



James Long
Brendan Allan
Kit Langton
opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Affan Ali
affanali2k3
Frank
opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>
𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴
Aiden Cline
Jay V
Dax Raad
Aarav Sareen
OpeOginni
Luke Parker
Ben Guthrie
Dax
Filip
Max Anderson
Brendan Allan
Jack
Shoubhit Dash
Dustin Deus
starptech
Aiden Cline
usrnk1
Jay
runvip
opencode
Julian Coy
Vladimir Glafirov
8c94e9005f
Co-authored-by: Brendan Allan <14191578+Brendonovich@users.noreply.github.com> Co-authored-by: Kit Langton <kit.langton@gmail.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Affan Ali <93028901+affanali2k3@users.noreply.github.com> Co-authored-by: affanali2k3 <affanalikhanxx@gmail.com> Co-authored-by: Frank <frank@anoma.ly> Co-authored-by: opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com> Co-authored-by: 𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴 <little-frank@opencord.local> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Jay V <air@live.ca> Co-authored-by: Dax Raad <d@ironbay.co> Co-authored-by: Aarav Sareen <96787824+arvsrn@users.noreply.github.com> Co-authored-by: OpeOginni <107570612+OpeOginni@users.noreply.github.com> Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com> Co-authored-by: Ben Guthrie <benjee.012@gmail.com> Co-authored-by: Dax <mail@thdxr.com> Co-authored-by: Filip <34747899+neriousy@users.noreply.github.com> Co-authored-by: Max Anderson <max.a.anderson95@gmail.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: Jack <jack@anoma.ly> Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com> Co-authored-by: Dustin Deus <deusdustin@gmail.com> Co-authored-by: starptech <starptech@starptechs-MBP.fritz.box> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> Co-authored-by: usrnk1 <7547651+usrnk1@users.noreply.github.com> Co-authored-by: Jay <53023+jayair@users.noreply.github.com> Co-authored-by: runvip <164729189+runvip@users.noreply.github.com> Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: Julian Coy <julian@ex-machina.co> Co-authored-by: Vladimir Glafirov <vglafirov@gitlab.com>
586 lines
17 KiB
TypeScript
586 lines
17 KiB
TypeScript
import { describe, expect } from "bun:test"
|
|
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
|
|
import { Effect, Layer } from "effect"
|
|
import { Skill } from "../../src/skill"
|
|
import { Discovery } from "../../src/skill/discovery"
|
|
import { RuntimeFlags } from "../../src/effect/runtime-flags"
|
|
import { EventV2Bridge } from "../../src/event-v2-bridge"
|
|
import { Config } from "../../src/config/config"
|
|
import { CrossSpawnSpawner } from "@opencode-ai/core/cross-spawn-spawner"
|
|
import { FSUtil } from "@opencode-ai/core/fs-util"
|
|
import { Global } from "@opencode-ai/core/global"
|
|
import { provideInstance, provideTmpdirInstance, testInstanceStoreLayer, tmpdir } from "../fixture/fixture"
|
|
import { testEffect } from "../lib/effect"
|
|
import path from "path"
|
|
import fs from "fs/promises"
|
|
|
|
const node = LayerNode.compile(CrossSpawnSpawner.node)
|
|
|
|
const it = testEffect(Layer.mergeAll(LayerNode.compile(Skill.node), node, testInstanceStoreLayer))
|
|
const itWithoutClaudeCodeSkills = testEffect(
|
|
Layer.mergeAll(
|
|
LayerNode.compile(Skill.node, [[RuntimeFlags.node, RuntimeFlags.layer({ disableClaudeCodeSkills: true })]]),
|
|
node,
|
|
testInstanceStoreLayer,
|
|
),
|
|
)
|
|
const itWithoutExternalSkills = testEffect(
|
|
Layer.mergeAll(
|
|
LayerNode.compile(Skill.node, [[RuntimeFlags.node, RuntimeFlags.layer({ disableExternalSkills: true })]]),
|
|
node,
|
|
testInstanceStoreLayer,
|
|
),
|
|
)
|
|
|
|
async function createGlobalSkill(homeDir: string) {
|
|
const skillDir = path.join(homeDir, ".claude", "skills", "global-test-skill")
|
|
await fs.mkdir(skillDir, { recursive: true })
|
|
await Bun.write(
|
|
path.join(skillDir, "SKILL.md"),
|
|
`---
|
|
name: global-test-skill
|
|
description: A global skill from ~/.claude/skills for testing.
|
|
---
|
|
|
|
# Global Test Skill
|
|
|
|
This skill is loaded from the global home directory.
|
|
`,
|
|
)
|
|
}
|
|
|
|
const withHome = <A, E, R>(home: string, self: Effect.Effect<A, E, R>) =>
|
|
Effect.acquireUseRelease(
|
|
Effect.sync(() => {
|
|
const prev = process.env.OPENCODE_TEST_HOME
|
|
process.env.OPENCODE_TEST_HOME = home
|
|
return prev
|
|
}),
|
|
() => self,
|
|
(prev) =>
|
|
Effect.sync(() => {
|
|
process.env.OPENCODE_TEST_HOME = prev
|
|
}),
|
|
)
|
|
|
|
describe("skill", () => {
|
|
it.effect("formats verbose locations as XML-safe filesystem paths", () =>
|
|
Effect.sync(() => {
|
|
const output = Skill.fmt(
|
|
[
|
|
{
|
|
name: "tagged-skill",
|
|
description: "A tagged skill.",
|
|
location: "/tmp/plugin.git#v1.3.0/SKILL.md",
|
|
content: "",
|
|
},
|
|
{
|
|
name: "built-in-skill",
|
|
description: "A built-in skill.",
|
|
location: "<built-in>",
|
|
content: "",
|
|
},
|
|
],
|
|
{ verbose: true },
|
|
)
|
|
|
|
expect(output).toContain("<location>/tmp/plugin.git#v1.3.0/SKILL.md</location>")
|
|
expect(output).toContain("<location><built-in></location>")
|
|
expect(output).not.toContain("file://")
|
|
expect(output).not.toContain("%23")
|
|
}),
|
|
)
|
|
|
|
it.live("discovers skills from .opencode/skill/ directory", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "test-skill", "SKILL.md"),
|
|
`---
|
|
name: test-skill
|
|
description: A test skill for verification.
|
|
---
|
|
|
|
# Test Skill
|
|
|
|
Instructions here.
|
|
`,
|
|
),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(1)
|
|
const item = list.find((x) => x.name === "test-skill")
|
|
expect(item).toBeDefined()
|
|
expect(item!.description).toBe("A test skill for verification.")
|
|
expect(item!.location).toContain(path.join("skill", "test-skill", "SKILL.md"))
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("returns skill directories from Skill.dirs", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
withHome(
|
|
dir,
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "dir-skill", "SKILL.md"),
|
|
`---
|
|
name: dir-skill
|
|
description: Skill for dirs test.
|
|
---
|
|
|
|
# Dir Skill
|
|
`,
|
|
),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const dirs = yield* skill.dirs()
|
|
expect(dirs).toContain(path.join(dir, ".opencode", "skill", "dir-skill"))
|
|
expect(dirs.length).toBe(1)
|
|
}),
|
|
),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("discovers multiple skills from .opencode/skill/ directory", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Promise.all([
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "skill-one", "SKILL.md"),
|
|
`---
|
|
name: skill-one
|
|
description: First test skill.
|
|
---
|
|
|
|
# Skill One
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "skill-two", "SKILL.md"),
|
|
`---
|
|
name: skill-two
|
|
description: Second test skill.
|
|
---
|
|
|
|
# Skill Two
|
|
`,
|
|
),
|
|
]),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(2)
|
|
expect(list.find((x) => x.name === "skill-one")).toBeDefined()
|
|
expect(list.find((x) => x.name === "skill-two")).toBeDefined()
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("skips skills with missing frontmatter", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "no-frontmatter", "SKILL.md"),
|
|
`# No Frontmatter
|
|
|
|
Just some content without YAML frontmatter.
|
|
`,
|
|
),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
expect((yield* skill.all()).filter((s) => s.location !== "<built-in>")).toEqual([])
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("discovers skills without descriptions", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "manual-skill", "SKILL.md"),
|
|
`---
|
|
name: manual-skill
|
|
---
|
|
|
|
# Manual Skill
|
|
|
|
Instructions here.
|
|
`,
|
|
),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(1)
|
|
const item = list.find((x) => x.name === "manual-skill")
|
|
expect(item).toBeDefined()
|
|
expect(item!.description).toBeUndefined()
|
|
expect(Skill.fmt(list, { verbose: false })).toBe("No skills are currently available.")
|
|
expect(Skill.fmt(list, { verbose: true })).toBe("No skills are currently available.")
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("discovers skills from .claude/skills/ directory", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, ".claude", "skills", "claude-skill", "SKILL.md"),
|
|
`---
|
|
name: claude-skill
|
|
description: A skill in the .claude/skills directory.
|
|
---
|
|
|
|
# Claude Skill
|
|
`,
|
|
),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(1)
|
|
const item = list.find((x) => x.name === "claude-skill")
|
|
expect(item).toBeDefined()
|
|
expect(item!.location).toContain(path.join(".claude", "skills", "claude-skill", "SKILL.md"))
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("discovers global skills from ~/.claude/skills/ directory", () =>
|
|
Effect.gen(function* () {
|
|
const tmp = yield* Effect.acquireRelease(
|
|
Effect.promise(() => tmpdir({ git: true })),
|
|
(tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
|
|
)
|
|
|
|
yield* withHome(
|
|
tmp.path,
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() => createGlobalSkill(tmp.path))
|
|
yield* Effect.gen(function* () {
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(1)
|
|
expect(list[0].name).toBe("global-test-skill")
|
|
expect(list[0].description).toBe("A global skill from ~/.claude/skills for testing.")
|
|
expect(list[0].location).toContain(path.join(".claude", "skills", "global-test-skill", "SKILL.md"))
|
|
}).pipe(provideInstance(tmp.path))
|
|
}),
|
|
)
|
|
}),
|
|
)
|
|
|
|
it.live("returns empty array when no skills exist", () =>
|
|
provideTmpdirInstance(
|
|
() =>
|
|
Effect.gen(function* () {
|
|
const skill = yield* Skill.Service
|
|
expect((yield* skill.all()).filter((s) => s.location !== "<built-in>")).toEqual([])
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("fails with typed error when requiring a missing skill", () =>
|
|
provideTmpdirInstance(
|
|
() =>
|
|
Effect.gen(function* () {
|
|
const skill = yield* Skill.Service
|
|
const error = yield* Effect.flip(skill.require("missing-skill"))
|
|
expect(error).toBeInstanceOf(Skill.NotFoundError)
|
|
expect(error._tag).toBe("Skill.NotFoundError")
|
|
expect(error.name).toBe("missing-skill")
|
|
expect(error.message).toContain('Skill "missing-skill" not found.')
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.effect("exposes tagged expected skill failure classes", () =>
|
|
Effect.sync(() => {
|
|
const invalid = new Skill.InvalidError({ path: "/tmp/SKILL.md", message: "Invalid skill frontmatter" })
|
|
const mismatch = new Skill.NameMismatchError({
|
|
path: "/tmp/SKILL.md",
|
|
expected: "expected-skill",
|
|
actual: "actual-skill",
|
|
})
|
|
|
|
expect(invalid).toBeInstanceOf(Skill.InvalidError)
|
|
expect(invalid._tag).toBe("SkillInvalidError")
|
|
expect(mismatch).toBeInstanceOf(Skill.NameMismatchError)
|
|
expect(mismatch._tag).toBe("SkillNameMismatchError")
|
|
}),
|
|
)
|
|
|
|
it.live("discovers skills from .agents/skills/ directory", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, ".agents", "skills", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: agent-skill
|
|
description: A skill in the .agents/skills directory.
|
|
---
|
|
|
|
# Agent Skill
|
|
`,
|
|
),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(1)
|
|
const item = list.find((x) => x.name === "agent-skill")
|
|
expect(item).toBeDefined()
|
|
expect(item!.location).toContain(path.join(".agents", "skills", "agent-skill", "SKILL.md"))
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("discovers global skills from ~/.agents/skills/ directory", () =>
|
|
Effect.gen(function* () {
|
|
const tmp = yield* Effect.acquireRelease(
|
|
Effect.promise(() => tmpdir({ git: true })),
|
|
(tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
|
|
)
|
|
|
|
yield* withHome(
|
|
tmp.path,
|
|
Effect.gen(function* () {
|
|
const skillDir = path.join(tmp.path, ".agents", "skills", "global-agent-skill")
|
|
yield* Effect.promise(() => fs.mkdir(skillDir, { recursive: true }))
|
|
yield* Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(skillDir, "SKILL.md"),
|
|
`---
|
|
name: global-agent-skill
|
|
description: A global skill from ~/.agents/skills for testing.
|
|
---
|
|
|
|
# Global Agent Skill
|
|
|
|
This skill is loaded from the global home directory.
|
|
`,
|
|
),
|
|
)
|
|
|
|
yield* Effect.gen(function* () {
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(1)
|
|
expect(list[0].name).toBe("global-agent-skill")
|
|
expect(list[0].description).toBe("A global skill from ~/.agents/skills for testing.")
|
|
expect(list[0].location).toContain(path.join(".agents", "skills", "global-agent-skill", "SKILL.md"))
|
|
}).pipe(provideInstance(tmp.path))
|
|
}),
|
|
)
|
|
}),
|
|
)
|
|
|
|
it.live("discovers skills from both .claude/skills/ and .agents/skills/", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Promise.all([
|
|
Bun.write(
|
|
path.join(dir, ".claude", "skills", "claude-skill", "SKILL.md"),
|
|
`---
|
|
name: claude-skill
|
|
description: A skill in the .claude/skills directory.
|
|
---
|
|
|
|
# Claude Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".agents", "skills", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: agent-skill
|
|
description: A skill in the .agents/skills directory.
|
|
---
|
|
|
|
# Agent Skill
|
|
`,
|
|
),
|
|
]),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.length).toBe(2)
|
|
expect(list.find((x) => x.name === "claude-skill")).toBeDefined()
|
|
expect(list.find((x) => x.name === "agent-skill")).toBeDefined()
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
itWithoutClaudeCodeSkills.live("skips Claude Code skills when disabled", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Promise.all([
|
|
Bun.write(
|
|
path.join(dir, ".claude", "skills", "claude-skill", "SKILL.md"),
|
|
`---
|
|
name: claude-skill
|
|
description: A skill in the .claude/skills directory.
|
|
---
|
|
|
|
# Claude Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".agents", "skills", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: agent-skill
|
|
description: A skill in the .agents/skills directory.
|
|
---
|
|
|
|
# Agent Skill
|
|
`,
|
|
),
|
|
]),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.map((s) => s.name)).toEqual(["agent-skill"])
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
itWithoutExternalSkills.live("skips external skill directories when disabled", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Promise.all([
|
|
Bun.write(
|
|
path.join(dir, ".claude", "skills", "claude-skill", "SKILL.md"),
|
|
`---
|
|
name: claude-skill
|
|
description: A skill in the .claude/skills directory.
|
|
---
|
|
|
|
# Claude Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".agents", "skills", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: agent-skill
|
|
description: A skill in the .agents/skills directory.
|
|
---
|
|
|
|
# Agent Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "opencode-skill", "SKILL.md"),
|
|
`---
|
|
name: opencode-skill
|
|
description: A skill in the .opencode/skill directory.
|
|
---
|
|
|
|
# OpenCode Skill
|
|
`,
|
|
),
|
|
]),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
const list = (yield* skill.all()).filter((s) => s.location !== "<built-in>")
|
|
expect(list.map((s) => s.name)).toEqual(["opencode-skill"])
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
|
|
it.live("properly resolves directories that skills live in", () =>
|
|
provideTmpdirInstance(
|
|
(dir) =>
|
|
Effect.gen(function* () {
|
|
yield* Effect.promise(() =>
|
|
Promise.all([
|
|
Bun.write(
|
|
path.join(dir, ".claude", "skills", "claude-skill", "SKILL.md"),
|
|
`---
|
|
name: claude-skill
|
|
description: A skill in the .claude/skills directory.
|
|
---
|
|
|
|
# Claude Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".agents", "skills", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: agent-skill
|
|
description: A skill in the .agents/skills directory.
|
|
---
|
|
|
|
# Agent Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skill", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: opencode-skill
|
|
description: A skill in the .opencode/skill directory.
|
|
---
|
|
|
|
# OpenCode Skill
|
|
`,
|
|
),
|
|
Bun.write(
|
|
path.join(dir, ".opencode", "skills", "agent-skill", "SKILL.md"),
|
|
`---
|
|
name: opencode-skill
|
|
description: A skill in the .opencode/skills directory.
|
|
---
|
|
|
|
# OpenCode Skill
|
|
`,
|
|
),
|
|
]),
|
|
)
|
|
|
|
const skill = yield* Skill.Service
|
|
expect((yield* skill.dirs()).length).toBe(4)
|
|
}),
|
|
{ git: true },
|
|
),
|
|
)
|
|
})
|