Populate template assets

This commit is contained in:
t
2026-05-22 17:07:12 -06:00
parent f2535bb71e
commit 2eaa2098e5
7 changed files with 227 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"mcpServers": {
"fetch": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-server-fetch"]
},
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/",
"headers": {
"Authorization": "Bearer {{GITHUB_PAT}}"
}
}
}
}
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
# @describe Greet a person by name. Example bash tool shipped with loki-config-template.
# @option --name! Name of the person to greet.
# @env LLM_OUTPUT=/dev/stdout The output path
# shellcheck disable=SC2154
main() {
printf 'Hello, %s!\n' "${argc_name}" >> "$LLM_OUTPUT"
}