AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Validator

skill-manastalukdar-ai-devstudio-skill-validator · by manastalukdar

Internal skill that validates a new or modified AI DevStudio skill against project standards. Checks YAML frontmatter, token optimization section, line limit, and naming conventions. Used by the code-reviewer agent during PR review.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-manastalukdar-ai-devstudio-skill-validator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-manastalukdar-ai-devstudio-skill-validator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill Validator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill Validator Skill

Internal skill used by the code-reviewer agent when reviewing skill contributions. Validates a skill file against AI DevStudio standards.

Usage

Called with the path to a skill file to validate. Context will contain the file path.

Validation Checks

1. File Location

Verify the skill is in the correct location:

skills//SKILL.md

Reject if in wrong directory or wrong filename.

2. YAML Frontmatter

Read the skill file and check:

  • name field present and matches directory name (kebab-case)
  • description field present and non-empty (>10 characters)
  • disable-model-invocation field present and is a boolean
  • No unknown frontmatter fields (warn on unrecognized keys)

3. Line Count

Bash: wc -l /SKILL.md

Warn if over 100 lines of instruction content (excluding frontmatter, code blocks, Token Optimization section).

Estimate instruction lines:

  • Total lines minus frontmatter (lines between ---)
  • Minus code block lines (between ``` markers)
  • Minus Token Optimization section

4. Token Optimization Section

Check that the file contains a ## Token Optimization section:

Bash: grep -n "## Token Optimization" skills//SKILL.md

Fail if missing. The section must include expected token range.

5. Naming Conventions

  • Directory name: kebab-case only
  • No underscores, no camelCase
  • Name matches name field in frontmatter

6. No Hardcoded Paths

Bash: grep -n "/Users/\|/home/[a-z]\|C:\\Users" skills//SKILL.md

Fail if any absolute user-specific paths found.

Output Format

Skill Validation: skills//SKILL.md

PASS / FAIL / WARNINGS

Checks:
  [PASS] File location
  [PASS] YAML frontmatter
  [WARN] Line count: 112 lines (limit: 100 instruction lines)
  [PASS] Token Optimization section present
  [PASS] Naming conventions
  [PASS] No hardcoded paths

Summary: Ready to merge / Needs fixes

Token Optimization

Expected range: 150-400 tokens

Patterns used: Bash grep for specific checks, early exit on critical failures

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.