feat: add OpenProse plugin skills

This commit is contained in:
Peter Steinberger
2026-01-23 00:49:32 +00:00
parent db0235a26a
commit 51a9053387
102 changed files with 23315 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
# Skills and Imports Example
# This demonstrates importing external skills and assigning them to agents.
# Import skills from external sources
import "web-search" from "github:anthropic/skills"
import "summarizer" from "npm:@example/summarizer"
import "file-reader" from "./local-skills/file-reader"
# Define a research agent with web search capability
agent researcher:
model: sonnet
prompt: "You are a research assistant skilled at finding information"
skills: ["web-search", "summarizer"]
# Define a documentation agent with file access
agent documenter:
model: opus
prompt: "You create comprehensive documentation"
skills: ["file-reader", "summarizer"]
# Research phase
session: researcher
prompt: "Search for recent developments in renewable energy storage"
# Documentation phase
session: documenter
prompt: "Create a technical summary of the research findings"