Add a skill package system where each skill is a directory with a skill.yaml manifest and prompt markdown files. Skills support /command triggers, scoped config overrides (temperature, max_tokens, tool filtering), chain dependencies with cycle-safe resolution, and a finish_skill completion signal. Includes four built-in skills: explore, brainstorm, write-document, and plan. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
315 B
YAML
10 lines
315 B
YAML
name: explore
|
|
description: Deep codebase exploration — traces paths, maps architecture, summarizes findings
|
|
version: "1.0"
|
|
triggers: ["/explore", "/ex"]
|
|
config_overrides:
|
|
temperature: 0.3
|
|
tools_disable: [write_file, make_dir, delete_file, str_replace, patch_apply, run_command]
|
|
chain: []
|
|
prompts: [prompt.md]
|