bayeslearner-skills

Collection of BayesLearner agent skills for enhanced AI workflows.

bayeslearner-skills

Umbrella repository for BayesLearner agent skills.

This repo is organized as a multi-skill package for skills.sh / npx skills. Each installable skill lives under skills/<skill-name>/SKILL.md.

Install

List available skills:

npx skills add kundeng/bayeslearner-skills --list

Preferred: install one skill from the umbrella repo:

npx skills add kundeng/bayeslearner-skills --skill spec-driven-dev

Install one skill globally for all supported agents on this machine:

npx skills add kundeng/bayeslearner-skills --skill analytic-workbench -g --agent '*' -y

Fallback: install or upgrade one specific skill from a direct upstream subdirectory:

npx skills add https://github.com/kundeng/bayeslearner-skills/tree/main/skills/analytic-workbench -g --agent '*' -y

Install all skills:

npx skills add kundeng/bayeslearner-skills --all

Install all skills globally for all supported agents on this machine:

npx skills add kundeng/bayeslearner-skills --all -g --agent '*' -y

Install from a direct upstream subdirectory path:

npx skills add https://github.com/kundeng/bayeslearner-skills/tree/main/skills/spec-driven-dev

Install from a local checkout only when intentionally testing local, unpushed changes:

npx skills add ./skills/analytic-workbench -g --agent '*' -y

Which Command To Use

  • Prefer kundeng/bayeslearner-skills --skill <name> for published installs so the umbrella repo remains discoverable in skills.sh-backed search.
  • Use the upstream subdirectory URL under skills/<skill-name> as a fallback when you need to target one path explicitly.
  • To test local edits before pushing, use ./skills/<skill-name>.
  • To install several skills from this repo, use the umbrella repo with --skill or --all.
  • To update a legacy standalone mirror repo, use scripts/publish-legacy.sh. That is a publishing step, not a local install step.

Layout

skills/
  analytic-workbench/
  design2spec/
  resume-claude-here/
  spec-driven-dev/
  splunk-platform/
  vibe-frontend-design/
  wise-scraper/
  workflow-guardrails/

Important:

  • Do not add a root-level SKILL.md to this repository.
  • The umbrella repo is a multi-skill container, not itself a skill.
  • Skill folder names should stay aligned with the name: field in each skill's frontmatter.

Current Skills

  • analytic-workbench
  • design2spec
  • resume-claude-here
  • spec-driven-dev
  • splunk-platform
  • vibe-frontend-design
  • wise-scraper
  • workflow-guardrails

Source Model

This repository is intended to be the canonical maintenance location for the skills included here.

Older standalone repositories can remain published as downstream mirrors. Use git subtree split from skills/<name> to push updates back out to those legacy repositories.

See scripts/publish-legacy.sh.