Add installable agent skill for skills.sh - #55
Merged
Merged
Conversation
Ship a canonical, public logbasset skill at skills/logbasset/SKILL.md so coding agents know when and how to use the CLI. The skill is intentionally generic: it delegates to `logbasset context` and `logbasset schema` at runtime rather than restating commands or flags, so a CLI change can never make it stale. - README: "Use with AI Coding Agents" section documenting `npx skills add`. - CHANGELOG: [Unreleased] entry. - AGENTS.md: note exempting the skill from the per-flag doc-sync checklist. - .gitignore: anchor the `logbasset` binary pattern to the repo root so it stops matching the skills/logbasset/ directory.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Ships a canonical, public logbasset agent skill at
skills/logbasset/SKILL.md, installable via skills.sh (npx skills add andreagrandi/logbasset). The goal is to encourage users to install the skill alongside the binary so their coding agent knows when and how to reach for the CLI.Design
The skill is intentionally a thin pointer, not a copy of the docs:
PATH, then runlogbasset context(authoritative reference) andlogbasset schema <command>(exact flags) before composing a query.logbasset context.Changes
skills/logbasset/SKILL.md— new skill (pure pointer, delegates tologbasset context/logbasset schema).README.md— "Use with AI Coding Agents" section with the install command.CHANGELOG.md—[Unreleased]entry.AGENTS.md— note exempting the skill from the per-flag doc-sync checklist so contributors don't reintroduce drift..gitignore— anchor thelogbassetbinary pattern to the repo root (/logbasset) so it no longer matches theskills/logbasset/directory. The root andbin/binaries remain ignored.Validation
npx skills add . --listdiscovers exactly one skill (logbasset) with the expected description, confirming the SKILL.md frontmatter is well-formed.