Authoring
Skills template anatomy
The markdown fields a Harbor-oriented Skill should include.
A Skill is markdown plus frontmatter. The CLI can validate source and tool assumptions through hrbr inspect, but it does not generate a template command.
---
name: triage-sentry-issue
description: Use when the user names a Sentry issue and wants a Linear ticket with context.
---
# Triage a Sentry issue
1. Inspect Harbor source readiness.
2. Search for the exact Sentry and Linear tools.
3. Execute the smallest calls needed.
4. Return the created Linear URL and trace id.Use these checks before publishing or sharing the Skill:
hrbr inspect 'return await hrbr.sources.list()'
hrbr inspect 'return await hrbr.tools.search({ query: "sentry get issue", limit: 3 })'
hrbr inspect 'return await hrbr.tools.search({ query: "linear create issue", limit: 3 })'