forked from cleveragents/cleveragents-core
32 lines
692 B
YAML
32 lines
692 B
YAML
# Composed skill example — includes other skills and adds own tools
|
|
# Register: agents skill add --config composed.yaml
|
|
|
|
name: local/git-github
|
|
description: "Git operations and GitHub integration"
|
|
|
|
tools:
|
|
- name: builtin/git_status
|
|
- name: builtin/git_diff
|
|
- name: builtin/git_log
|
|
- name: builtin/git_blame
|
|
|
|
includes:
|
|
- name: local/file-reader
|
|
|
|
mcp_servers:
|
|
- name: github
|
|
transport: stdio
|
|
command: npx
|
|
args:
|
|
- "-y"
|
|
- "@modelcontextprotocol/server-github"
|
|
env:
|
|
GITHUB_PERSONAL_ACCESS_TOKEN: "${GITHUB_TOKEN}"
|
|
tool_filter:
|
|
include:
|
|
- create_issue
|
|
- create_pull_request
|
|
- list_repos
|
|
- get_file_contents
|
|
|