-
Notifications
You must be signed in to change notification settings - Fork 2
overview glossary
Nik Anand edited this page May 24, 2026
·
1 revision
Terms specific to this project (and one or two from neighboring ecosystems that show up constantly).
-
skills-registry — The project brand. Plural. Used in prose, the PyPI package name, the GitHub repository name (URL
anand-92/skills-registry), and the README. The Python module path is stillskills_mcp(a rename would be churn without payoff). -
skill-registry — Singular. The literal CLI binary name (
~/.local/bin/skill-registry), the FastMCP server name registered inregistry_server.py:build_server, the directory written into agent dot-folders (<dot>/skills/skill-registry/SKILL.md), the release artifact prefix. Keep singular when quoting commands or config snippets users type. -
skill-registry-mcp — The Python console script that desktop MCP clients launch. Installed via
uv tool install skills-registry/pipx install skills-registry/pip install --user skills-registry.
-
Skill — A folder containing a
SKILL.md(Markdown plus optional YAML frontmatter) and any supporting assets (scripts/,assets/,resources/). The unit of distribution. -
Slug — The filesystem-safe identifier derived from a skill's
name. Slugify islower → replace non-alphanumeric with _ → strip surrounding _. Both Python (src/skills_mcp/registry_api.py:slugify) and Go (cli/internal/scan/scan.go:Slugify) implement the same algorithm. -
Dot-folder — A per-agent directory under
$HOMEor the project's cwd that historically held skills:~/.claude/skills,~/.cursor/skills,~/.factory/skills,.agents/skills, etc. The 56-entry catalogue lives incli/internal/agents/agents.go. After bootstrap, dot-folders only hold the tiny pointerSKILL.mdwritten bybootstrap.InstallSkillMd. -
Registry — The GitHub repository that owns the canonical copies of every skill. One per user (today). Configured in
~/.config/skills-mcp/registry.toml.
-
MCP — Model Context Protocol. The stdio-based RPC layer between MCP clients (Claude Desktop, Cursor, VS Code, Codex, …) and MCP servers.
skill-registry-mcpis one such server. -
MCP tool — A function exposed by a server. The registry server registers three:
list_skills,get_skill,publish_skill. Annotations on each tool (readOnlyHint,destructiveHint,openWorldHint) help the client decide which calls need user confirmation. -
FastMCP — The Python library that implements the MCP server side.
skill-registry-mcpuses FastMCP 3.x —FastMCP(name, instructions=..., version=__version__)plus@server.tool(...)decorators.
-
gh— The GitHub CLI. The only thing that touches GitHub credentials in this project. The MCP server runs every read and write throughgh api. The CLI bootstrap also usesgh repo createandgh auth setup-git. -
gh api—gh api <endpoint>proxies to the GitHub REST API with the user's authenticated token baked in. The MCP server'sRegistryClientis essentially a typed wrapper around it. -
Git Data API — The low-level GitHub endpoints for blobs, trees, commits, and refs.
RegistryClient.publish_skillandClient.Publish/Client.Delete(Go) build atomic commits this way: list base tree → upload blobs → create new tree → create commit → fast-forward ref. -
PushTreeViaGit— The bulk-import path used only by the CLI bootstrap (registry.Client.PushTreeViaGit). Onegit pushover HTTPS, credentials wired viagh auth setup-git. Bypasses GitHub's secondary rate limit on the Git Data API blob endpoint. -
Tree SHA — The SHA of a Git tree object. Used as the cache invalidation key:
~/.cache/skills-mcp/skills/<slug>.meta.jsonrecords the tree SHA at fetch time, andget_skillre-fetches whenever the registry-reported SHA differs. -
Secondary rate limit — GitHub's per-endpoint quota (~80 POSTs/minute on
git/blobs) that the Git Data API blob path trips when uploading 100+ files at once. The whole reasonPushTreeViaGitexists.
-
bareRouteDecision— The pure routing function incli/cmd/skill-registry/main.go. Maps(isTTY, --json, configLoadErr)to one ofbareRouteHelp/bareRouteWizard/bareRouteHub/bareRouteError. -
Wizard — The 8-step alt-screen Bubble Tea program in
cli/cmd/skill-registry/wizard.go. The first-run onboarding UX. -
Hub — The dashboard for returning users in
cli/cmd/skill-registry/hub.go. A launch loop that runs the alt-screentui.HubModel, dispatches the picked card to a per-action helper, and seeds the next frame with a result toast. -
Toast — A one-line success/error caption surfaced above the hub footer between iterations.
hubToast{text, ok, fatal}incli/cmd/skill-registry/hub.go. -
jsonout.Enabled— Returnstruewhen--jsonwas supplied. Every subcommand branches on this to skip the TUI and emit a single JSON payload. -
Atomic publish — A
publish_skill/removeoperation that replaces (or removes) the entire<slug>/subtree in one commit. Implemented via the Git Data API tree payload — null SHAs delete entries; new blob SHAs add/overwrite them. -
Universal agent — An agent target marked
Universal: truein the agents catalogue. Always selected in the bootstrap multi-select; currently just.agents/(project-local, picked up by most agents).
-
--jsonmode — Persistent flag bound at the root cobra command viajsonout.BindFlag. Suppresses every Bubble Tea program and prompt; emits a single JSON payload to stdout. Errors land as{"error": "..."}with a non-zero exit code. -
Auto-yes — Destructive subcommands (
sync,remove) auto-promote--yeswhen--jsonis set AND stdin is not a TTY. Prevents a piped agent invocation from hanging on a confirmation prompt that can't render. SeeshouldAutoYes()incli/cmd/skill-registry/list.go. -
Bootstrap — The standalone subcommand (
skill-registry bootstrap) that runs the same flow the wizard does, but inline in the terminal instead of inside an alt-screen. Used for scripted invocations and as a fallback when the wizard can't render.
-
registry.toml—~/.config/skills-mcp/registry.toml. Stores the active registry'sowner/repoanddefault_branch. Hand-editable; written by the wizard. -
SKILLS_REGISTRY— Environment variable override for the active registry. Takes precedence overregistry.toml. Format:owner/repoorowner/repo@branch. -
Cache root —
~/.cache/skills-mcp/skills/. Each downloaded skill lives in<slug>/with a sibling<slug>.meta.jsonrecording the tree SHA at fetch time.cache.lookup,cache.reserve,cache.commitinsrc/skills_mcp/cache.py. The Go side mirrors the path incli/internal/cache/cache.gofor the Settings TUI.