Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
consulting-skills logo

consulting-skills

baufest-skills

OtherClaude Codeby Baufest

Summary

Core skills: brand styling, API design, data table design, architecture decisions, and delivery status updates

Install to Claude Code

/plugin install consulting-skills@baufest-skills

Run in Claude Code. Add the marketplace first with /plugin marketplace add Baufest/skills if you haven't already.

README.md

Baufest Skills

A curated collection of agent skills for Baufest consulting teams, built on the agentskills.io open standard.

Skills are structured instruction sets that any compatible AI coding agent can discover and execute. Each skill is a folder containing a SKILL.md file with YAML frontmatter (for discovery) and a markdown body (for execution). Skills follow a progressive disclosure model: agents see only the name and description at discovery time, load the full instructions on trigger, and pull in references or scripts on demand. This keeps context lean while enabling deep, specialized behavior.

Skills are agent-agnostic. The same skill works across Claude Code, Cursor, VS Code / Copilot, Codex, Gemini CLI, and any agent that supports the agentskills.io specification.

Available Skills

| Skill | Description | Type | |-------|-------------|------| | brand-guidelines | Apply Baufest brand colors, typography, and voice to any deliverable | Simple | | api-design | Design ergonomic REST APIs that work well with OpenAPI and code generators | Reference-backed | | data-table-design | Design clear, scannable data tables with correct alignment, formatting, and layout | Reference-backed | | architecture-decision | Produce Architecture Decision Records with options analysis and recommendations | Reference-backed | | delivery-status | Write delivery status reports — weekly updates, steering committee summaries, executive roll-ups | Example-backed | | demo-duck-style | Apply DuckCorp brand voice — duck emoji statuses, "quack" placeholders, ALL CAPS duck-pun headers, and celebration suffixes. Designed for use with skills-demo to show how brand guide skills work. | Demo |

How to Use

Claude Code

Install from the marketplace:

plugin marketplace add baufest/skills

Select the consulting-skills plugin, then install. Skills are automatically available in all sessions.

Manual install: Clone this repo and symlink to your skills directory:

git clone https://github.com/baufest/skills.git
ln -s $(pwd)/skills ~/.claude/skills

Cursor

Clone the repo, then add the skills directory to your Cursor settings:

{
  "chat.agentSkillsLocations": [
    "/path/to/baufest-skills/skills"
  ]
}

VS Code / Copilot

Place skills in .github/skills/ in your project, or configure chat.agentSkillsLocations in VS Code settings:

{
  "chat.agentSkillsLocations": [
    "/path/to/baufest-skills/skills"
  ]
}

Any Spec-Compliant Agent

Clone this repo and point your agent's skill discovery at the skills/ directory. The agent must support the agentskills.io specification — it will read SKILL.md frontmatter for discovery and load skill bodies on demand.

Skill Anatomy

skill-name/
├── SKILL.md          # Required: YAML frontmatter + markdown instructions
├── scripts/          # Optional: executable helpers
├── references/       # Optional: loaded on-demand into context
└── assets/           # Optional: templates, images, static files
  • SKILL.md: The only required file. Contains YAML frontmatter (name, description, license, metadata) and a markdown body with instructions.
  • references/: Supporting documents loaded on demand when the skill's instructions reference them. Keeps the main SKILL.md focused.
  • examples/: Format exemplars that show the agent what good output looks like.
  • scripts/: Executable helpers for deterministic operations (file transforms, validation).

Contributing

See CONTRIBUTING.md for how to author, test, and register new skills.

License

Apache-2.0 — see LICENSE.

Related plugins

Browse all →