<< All versions
Skill v1.0.0
currentTrusted Publisher100/100microsoft/waza/some-exceed
──Details
PublishedJuly 14, 2026 at 06:26 AM
Content Hashsha256:b549651f8e006d61...
Git SHA
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 87 lines · 1.6 KB
version: "1.0.0"
skill
---name: test-skilldescription: |**TEST SKILL** - A sample skill for testing waza token counting.USE FOR: testing token count command, verifying markdown scanning.DO NOT USE FOR: actual agent operations.---# Test SkillA demonstration skill used for testing the `waza tokens` command suite.## Skill Activation Triggers**Use this skill when:**- Running unit tests for token counting- Verifying file scanning behavior- Testing output formats (table, JSON)## Instructions1. **Scan files** - Find all markdown files in the skill directory2. **Count tokens** - Estimate token usage for each file3. **Report results** - Output in requested format## Output FormatStructure results as:| File | Tokens | Characters | Lines ||------|--------|------------|-------|| SKILL.md | 150 | 600 | 40 || README.md | 50 | 200 | 15 |## Examples### Example 1: Count All Files
waza tokens count
### Example 1b: Count a Specific Directory
waza tokens count ~/my-skill waza tokens count references
**Output:**
File Tokens Chars Lines
README.md 50 200 15 SKILL.md 150 600 40
### Example 2: JSON Format
waza tokens count --format json
**Output:**
{ "totalTokens": 200, "totalFiles": 2, "files": { "README.md": {"tokens": 50}, "SKILL.md": {"tokens": 150} } }
## Behavior Guidelines- Only count markdown files (.md, .mdx)- Skip binary and non-text files- Respect .gitignore patterns- Use streaming for large file sets