mcpbeat

Profile Test Skill

microsoft/profile-test-skill

| **PROFILE TEST** - A skill for testing the profile command.

306 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1144
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/waza --skill profile-test-skill

The instruction itself

9 sections, as written by the author

Profile Test Skill

A test skill used for verifying the waza tokens profile command.

Activation Triggers

Use this skill when:

  • Running profile analysis tests
  • Verifying section counting
  • Checking code block detection

Workflow

  • Parse the file - Read SKILL.md and extract frontmatter
  • Analyze structure - Count sections, code blocks, steps
  • Generate summary - Produce one-line profile output
  • Check warnings - Flag potential issues

Code Examples

Example 1: Basic Usage

waza tokens profile my-skill

Example 2: JSON Output

{
  "name": "my-skill",
  "tokens": 500,
  "sections": 5
}

Example 3: Table Output

File          Tokens   Sections
-------------------------------
SKILL.md         500          5

Configuration

Set up your skill with proper frontmatter:

name: my-skill
description: A useful skill

Guidelines

  • Keep token count under 2500
  • Include workflow steps
  • Use clear section headings

How to use it

Copy the folder

Take microsoft/profile-test-skill from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.